Skip to content

Commit

Permalink
Fix alertmanager metrics Collect() ordering (cortexproject#3421)
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Pracucci <[email protected]>
  • Loading branch information
pracucci authored Oct 29, 2020
1 parent 8d498a4 commit 98945ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/alertmanager/alertmanager_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,22 +169,22 @@ func (m *alertmanagerMetrics) Describe(out chan<- *prometheus.Desc) {
out <- m.numNotifications
out <- m.numFailedNotifications
out <- m.notificationLatencySeconds
out <- m.markerAlerts
out <- m.nflogGCDuration
out <- m.nflogSnapshotDuration
out <- m.nflogSnapshotSize
out <- m.nflogQueriesTotal
out <- m.nflogQueryErrorsTotal
out <- m.nflogQueryDuration
out <- m.nflogPropagatedMessagesTotal
out <- m.markerAlerts
out <- m.silencesGCDuration
out <- m.silencesSnapshotDuration
out <- m.silencesSnapshotSize
out <- m.silencesQueriesTotal
out <- m.silencesQueryErrorsTotal
out <- m.silencesQueryDuration
out <- m.silences
out <- m.silencesPropagatedMessagesTotal
out <- m.silences
out <- m.configHashValue
}

Expand Down

0 comments on commit 98945ad

Please sign in to comment.