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:
juliusv 2013-06-14 05:19:05 -07:00
commit 55cb835867
1 changed files with 3 additions and 2 deletions

View File

@ -115,7 +115,8 @@ func (rule *AlertingRule) Eval(timestamp time.Time, storage *metric.TieredStorag
rule.mutex.Lock()
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{}
for _, sample := range exprResult {
fp := *model.NewFingerprintFromMetric(sample.Metric)
@ -129,7 +130,7 @@ func (rule *AlertingRule) Eval(timestamp time.Time, storage *metric.TieredStorag
}
rule.activeAlerts[fp] = &Alert{
Name: rule.name,
Labels: sample.Metric.ToLabelSet(),
Labels: labels,
State: PENDING,
ActiveSince: timestamp,
Value: sample.Value,