Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 144e088

Browse files
committed
Review comments.
1 parent d998b25 commit 144e088

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@
3434
* [ENHANCEMENT] Added a new tier (`medium_small_user`) so we have another tier between 100K and 1Mil active series. #364
3535
* [ENHANCEMENT] Extend Alertmanager dashboard: #313
3636
* "Tenants" stat panel - shows number of discovered tenant configurations.
37+
* "Replication" row - information about the replication of tenants/alerts/silences over instances.
3738
* "Tenant Configuration Sync" row - information about the configuration sync procedure.
3839
* "Sharding Initial State Sync" row - information about the initial state sync procedure when sharding is enabled.
39-
* "Sharding State Operations" row - information about various state operations which occur when sharding is enabled (replication, fetch, marge, persist).
40+
* "Sharding Runtime State Sync" row - information about various state operations which occur when sharding is enabled (replication, fetch, marge, persist).
4041
* [BUGFIX] Fixed `CortexIngesterHasNotShippedBlocks` alert false positive in case an ingester instance had ingested samples in the past, then no traffic was received for a long period and then it started receiving samples again. #308
4142
* [BUGFIX] Alertmanager: fixed `--alertmanager.cluster.peers` CLI flag passed to alertmanager when HA is enabled. #329
4243
* [BUGFIX] Fixed `CortexInconsistentRuntimeConfig` metric. #335

cortex-mixin/dashboards/alertmanager.libsonnet

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,16 @@ local utils = import 'mixin-utils/utils.libsonnet';
149149
)
150150
)
151151
.addRow(
152-
$.row('Sharding Runtime State Sync')
152+
$.row('Sharding Initial State Sync')
153153
.addPanel(
154-
$.panel('Syncs/sec') +
154+
$.panel('Initial syncs/sec') +
155155
$.queryPanel(
156156
'sum by(outcome) (rate(cortex_alertmanager_state_initial_sync_completed_total{%s}[$__rate_interval]))' % $.jobMatcher('alertmanager'),
157157
'{{outcome}}'
158158
)
159159
)
160160
.addPanel(
161-
$.panel('Sync duration') +
161+
$.panel('Initial sync duration') +
162162
$.latencyPanel('cortex_alertmanager_state_initial_sync_duration_seconds', '{%s}' % $.jobMatcher('alertmanager'))
163163
)
164164
.addPanel(
@@ -177,7 +177,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
177177
)
178178
)
179179
.addRow(
180-
$.row('Sharding State Operations')
180+
$.row('Sharding Runtime State Sync')
181181
.addPanel(
182182
$.panel('Replicate state to other alertmanagers /sec') +
183183
$.queryPanel(

0 commit comments

Comments
 (0)