Add Comment About Initialising Counters
This commit is contained in:
parent
0d0c9d5440
commit
7ba0a9e81a
|
@ -183,10 +183,6 @@ func (n *Notifier) ApplyConfig(conf *config.Config) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, am := range ams.ams {
|
|
||||||
n.metrics.errors.WithLabelValues(am.url())
|
|
||||||
n.metrics.sent.WithLabelValues(am.url())
|
|
||||||
}
|
|
||||||
ams.metrics = n.metrics
|
ams.metrics = n.metrics
|
||||||
|
|
||||||
amSets = append(amSets, ams)
|
amSets = append(amSets, ams)
|
||||||
|
@ -495,6 +491,7 @@ func (s *alertmanagerSet) Sync(tgs []*config.TargetGroup) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This will initialise the Counters for the AM to 0.
|
||||||
s.metrics.sent.WithLabelValues(us)
|
s.metrics.sent.WithLabelValues(us)
|
||||||
s.metrics.errors.WithLabelValues(us)
|
s.metrics.errors.WithLabelValues(us)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue