mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-28 06:59:40 -08:00
Merge pull request #303 from prometheus/fix/drop-metricname
Ensure metric name is dropped correctly from alert labels in UI.
This commit is contained in:
commit
55cb835867
|
@ -115,7 +115,8 @@ func (rule *AlertingRule) Eval(timestamp time.Time, storage *metric.TieredStorag
|
||||||
rule.mutex.Lock()
|
rule.mutex.Lock()
|
||||||
defer rule.mutex.Unlock()
|
defer rule.mutex.Unlock()
|
||||||
|
|
||||||
// Create pending alerts for any new vector elements in the alert expression.
|
// Create pending alerts for any new vector elements in the alert expression
|
||||||
|
// or update the expression value for existing elements.
|
||||||
resultFingerprints := utility.Set{}
|
resultFingerprints := utility.Set{}
|
||||||
for _, sample := range exprResult {
|
for _, sample := range exprResult {
|
||||||
fp := *model.NewFingerprintFromMetric(sample.Metric)
|
fp := *model.NewFingerprintFromMetric(sample.Metric)
|
||||||
|
@ -129,7 +130,7 @@ func (rule *AlertingRule) Eval(timestamp time.Time, storage *metric.TieredStorag
|
||||||
}
|
}
|
||||||
rule.activeAlerts[fp] = &Alert{
|
rule.activeAlerts[fp] = &Alert{
|
||||||
Name: rule.name,
|
Name: rule.name,
|
||||||
Labels: sample.Metric.ToLabelSet(),
|
Labels: labels,
|
||||||
State: PENDING,
|
State: PENDING,
|
||||||
ActiveSince: timestamp,
|
ActiveSince: timestamp,
|
||||||
Value: sample.Value,
|
Value: sample.Value,
|
||||||
|
|
Loading…
Reference in a new issue