Skip to content

Commit 8e36fd6

Browse files
authored
Merge pull request prometheus#16320 from prometheus/revert-15093-dimitar/ruler/unsupported-logger
Revert "ruler: correct logging of alert name & template data"
2 parents 503f3cb + d085f7d commit 8e36fd6

File tree

2 files changed

+7
-23
lines changed

2 files changed

+7
-23
lines changed

rules/manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ func (m *Manager) LoadGroups(
342342
externalLabels,
343343
externalURL,
344344
!shouldRestore,
345-
m.logger.With("alert", r.Alert.Value),
345+
m.logger.With("alert", r.Alert),
346346
))
347347
continue
348348
}

template/template.go

+6-22
Original file line numberDiff line numberDiff line change
@@ -281,30 +281,14 @@ func NewTemplateExpander(
281281
}
282282
}
283283

284-
type templateData struct {
285-
Labels map[string]string
286-
ExternalLabels map[string]string
287-
ExternalURL string
288-
Value interface{}
289-
}
290-
291-
// String implements fmt.Stringer interface.
292-
func (t templateData) String() string {
293-
labelsString := func(labels map[string]string) string {
294-
// model.LabelSet has a ready String() method, that we can use.
295-
labelSet := make(model.LabelSet, len(t.Labels))
296-
for k, v := range t.Labels {
297-
labelSet[model.LabelName(k)] = model.LabelValue(v)
298-
}
299-
return labelSet.String()
300-
}
301-
302-
return fmt.Sprintf("<Labels: %s, ExternalLabels: %s, ExternalURL: %s, Value: %v>", labelsString(t.Labels), labelsString(t.ExternalLabels), t.ExternalURL, t.Value)
303-
}
304-
305284
// AlertTemplateData returns the interface to be used in expanding the template.
306285
func AlertTemplateData(labels, externalLabels map[string]string, externalURL string, smpl promql.Sample) interface{} {
307-
res := templateData{
286+
res := struct {
287+
Labels map[string]string
288+
ExternalLabels map[string]string
289+
ExternalURL string
290+
Value interface{}
291+
}{
308292
Labels: labels,
309293
ExternalLabels: externalLabels,
310294
ExternalURL: externalURL,

0 commit comments

Comments
 (0)