Add Comment About Initialising Counters

This commit is contained in:
Goutham Veeramachaneni 2017-03-31 22:59:20 +05:30
parent 0d0c9d5440
commit 7ba0a9e81a
1 changed files with 1 additions and 4 deletions

View File

@ -183,10 +183,6 @@ func (n *Notifier) ApplyConfig(conf *config.Config) error {
return err
}
for _, am := range ams.ams {
n.metrics.errors.WithLabelValues(am.url())
n.metrics.sent.WithLabelValues(am.url())
}
ams.metrics = n.metrics
amSets = append(amSets, ams)
@ -495,6 +491,7 @@ func (s *alertmanagerSet) Sync(tgs []*config.TargetGroup) {
continue
}
// This will initialise the Counters for the AM to 0.
s.metrics.sent.WithLabelValues(us)
s.metrics.errors.WithLabelValues(us)