Skip to content

Commit ee74778

Browse files
GoodforGoddsudomoinСудомоин Даниил Сергеевич
committed
1.2.12 (#58)
* 1.2.12 * Add metrics info (#56) * Add metrics info --------- Co-authored-by: Судомоин Даниил Сергеевич <d.sudomoin@tbank.ru> * 1.2.12 * 1.2.12 --------- Co-authored-by: dsudomoin <155488585+dsudomoin@users.noreply.github.com> Co-authored-by: Судомоин Даниил Сергеевич <d.sudomoin@tbank.ru>
1 parent b21b084 commit ee74778

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

mkdocs/docs/en/changelog/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Fixed:
4242
### 1.2.9
4343

4444
Added:
45+
4546
- Add MAX_ENTITY_SIZE undertow option in http server config with default `256MiB`
4647

4748
Fixed:

mkdocs/docs/en/documentation/database-migration.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Example of the complete configuration described in the `FlywayConfig` class (def
4747
executeInTransaction = true //(3)!
4848
validateOnMigrate = true //(4)!
4949
mixed = false //(5)!
50-
configurationProperties = {} //(6)!
50+
configurationProperties {} //(6)!
5151
}
5252
```
5353

@@ -56,7 +56,6 @@ Example of the complete configuration described in the `FlywayConfig` class (def
5656
3. Whether to execute migrations within a transaction.
5757
4. Whether to verify checksums of existing migrations before execution. An error will occur if they do not match.
5858
5. Whether to allow mixing transactional and non-transactional SQL operations in a single migration. If enabled, the entire migration will be executed **without a transaction** to avoid errors in databases where certain operations cannot be run inside a transaction.
59-
6059
This setting is only relevant for databases that do not support executing certain operations within a transaction: PostgreSQL, Aurora PostgreSQL, SQL Server, and SQLite.
6160
6. Additional key-value configuration properties for `Flyway#configurationProperties`.
6261

@@ -77,7 +76,6 @@ Example of the complete configuration described in the `FlywayConfig` class (def
7776
3. Whether to execute migrations within a transaction.
7877
4. Whether to verify checksums of existing migrations before execution. An error will occur if they do not match.
7978
5. Whether to allow mixing transactional and non-transactional SQL operations in a single migration. If enabled, the entire migration will be executed **without a transaction** to avoid errors in databases where certain operations cannot be run inside a transaction.
80-
8179
This setting is only relevant for databases that do not support executing certain operations within a transaction: PostgreSQL, Aurora PostgreSQL, SQL Server, and SQLite.
8280
6. Additional key-value configuration properties for `Flyway#configurationProperties`.
8381

mkdocs/docs/en/documentation/metrics.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@ All Kora metrics use [OpenTelemetry semantic conventions](https://opentelemetry.
133133

134134
[Micrometer](https://docs.micrometer.io/micrometer/reference/concepts.html) metric types used:
135135

136-
- [DistributionSummary](https://docs.micrometer.io/micrometer/reference/concepts/distribution-summaries.html) — value distribution, including durations
136+
- [DistributionSummary](https://docs.micrometer.io/micrometer/reference/concepts/distribution-summaries.html) — used for collecting distributions of arbitrary values.
137+
This metric type enables efficient data visualization across buckets and percentile calculation.
137138
- [Counter](https://docs.micrometer.io/micrometer/reference/concepts/counters.html) — monotonically increasing counter
138139
- [Gauge](https://docs.micrometer.io/micrometer/reference/concepts/gauges.html) — current metric value
139140

mkdocs/docs/ru/changelog/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ hide:
4242
### 1.2.9
4343

4444
Добавлено:
45+
4546
- Добавлена опция `MAX_ENTITY_SIZE` в конфигурации HTTP-сервера Undertow со значением по умолчанию `256MiB`
4647

4748
Исправлено:

mkdocs/docs/ru/documentation/database-migration.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
executeInTransaction = true //(3)!
4848
validateOnMigrate = true //(4)!
4949
mixed = false //(5)!
50-
configurationProperties = {} //(6)!
50+
configurationProperties {} //(6)!
5151
}
5252
```
5353

@@ -58,7 +58,6 @@
5858
5. Разрешать ли смешивание транзакционных и нетранзакционных SQL-операций в одной миграции. Если включено,
5959
вся миграция будет выполняться **без транзакции**, чтобы избежать ошибок в БД, где некоторые операции не могут
6060
выполняться внутри транзакции.
61-
6261
Эта настройка актуальна только для СУБД, которые не поддерживают выполнение отдельных операций внутри транзакции:
6362
PostgreSQL, Aurora PostgreSQL, SQL Server и SQLite.
6463
6. Дополнительные свойства конфигурации в формате ключ-значение для `Flyway#configurationProperties`
@@ -82,7 +81,6 @@
8281
5. Разрешать ли смешивание транзакционных и нетранзакционных SQL-операций в одной миграции. Если включено,
8382
вся миграция будет выполняться **без транзакции**, чтобы избежать ошибок в БД, где некоторые операции не могут
8483
выполняться внутри транзакции.
85-
8684
Эта настройка актуальна только для СУБД, которые не поддерживают выполнение отдельных операций внутри транзакции:
8785
PostgreSQL, Aurora PostgreSQL, SQL Server и SQLite.
8886
6. Дополнительные свойства конфигурации в формате ключ-значение для `Flyway#configurationProperties`

mkdocs/docs/ru/documentation/metrics.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,8 @@
133133

134134
Используемые типы метрик [Micrometer](https://docs.micrometer.io/micrometer/reference/concepts.html):
135135

136-
- [DistributionSummary](https://docs.micrometer.io/micrometer/reference/concepts/distribution-summaries.html) — распределение значений, в частности длительностей
136+
- [DistributionSummary](https://docs.micrometer.io/micrometer/reference/concepts/distribution-summaries.html) — применяется как инструмент для сбора распределения произвольных величин.
137+
Тип метрики позволяет эффективно визуализировать данные по бакетам и рассчитывать персентиль.
137138
- [Counter](https://docs.micrometer.io/micrometer/reference/concepts/counters.html) — монотонно возрастающий счётчик
138139
- [Gauge](https://docs.micrometer.io/micrometer/reference/concepts/gauges.html) — текущее значение метрики
139140

mkdocs/overrides/main.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
{% if page and page.title and not page.is_homepage %}
3838
{% set title = page.title ~ " - " ~ title | striptags %}
3939
{% endif %}
40-
{% set title = title ~ " | " ~ config.copyright ~ " | Тинькофф" %}
40+
{% set title = title ~ " | Kora" %}
4141
<title>{{ title }}</title>
4242
<p style="display: none">Kora облачно ориентированный серверный фреймворк написанный на Java для написания Java / Kotlin приложений с упором на производительность, эффективность, прозрачность сделанный выходцами из Т-Банк / Тинькофф</p>
4343
<p style="display: none">Kora is a cloud-oriented server-side Java framework for writing Java / Kotlin applications with a focus on performance, efficiency and transparency</p>

0 commit comments

Comments
 (0)