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

Commit 629d288

Browse files
committed
Review comments.
1 parent 7104443 commit 629d288

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
@@ -150,16 +150,16 @@ local utils = import 'mixin-utils/utils.libsonnet';
150150
)
151151
)
152152
.addRow(
153-
$.row('Sharding Runtime State Sync')
153+
$.row('Sharding Initial State Sync')
154154
.addPanel(
155-
$.panel('Syncs/sec') +
155+
$.panel('Initial syncs/sec') +
156156
$.queryPanel(
157157
'sum by(outcome) (rate(cortex_alertmanager_state_initial_sync_completed_total{%s}[$__rate_interval]))' % $.jobMatcher('alertmanager'),
158158
'{{outcome}}'
159159
)
160160
)
161161
.addPanel(
162-
$.panel('Sync duration') +
162+
$.panel('Initial sync duration') +
163163
$.latencyPanel('cortex_alertmanager_state_initial_sync_duration_seconds', '{%s}' % $.jobMatcher('alertmanager'))
164164
)
165165
.addPanel(
@@ -178,7 +178,7 @@ local utils = import 'mixin-utils/utils.libsonnet';
178178
)
179179
)
180180
.addRow(
181-
$.row('Sharding State Operations')
181+
$.row('Sharding Runtime State Sync')
182182
.addPanel(
183183
$.panel('Replicate state to other alertmanagers /sec') +
184184
$.queryPanel(

0 commit comments

Comments
 (0)