Skip to content

Commit

Permalink
Merge pull request #241 from Gentleelephant/title
Browse files Browse the repository at this point in the history
Modify email subject rendering method
  • Loading branch information
benjaminhuo authored Feb 21, 2024
2 parents 94196da + 633a0c6 commit 41b906d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/templates/template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data:
{{ "{{ define \"nm.default.message.cn\" }}{{ if ne (len .Status) 0 }}[{{ .Status | translate }}] {{ end }}{{ .MessageCN }}{{ end }}" }}
{{ "{{ define \"nm.default.subject\" }}{{ if eq (len .Alerts) 1 }}{{ range .Alerts }}{{ template \"nm.default.message\" . }}{{ end }}{{ else }}{{ .Alerts | len }} {{ if ne (len .Status) 0 }}{{ .Status }} {{ end }}alerts{{ if gt (len .GroupLabels.SortedPairs) 0 }} for {{ range .GroupLabels.SortedPairs }}{{ .Name | translate }}={{ .Value }} {{ end }}{{ end }}{{ end }}{{ end }}" }}
{{ "{{ define \"nm.subject\" }}{{ .Alerts | len }} {{ if ne (len .Status) 0 }}{{ .Status }} {{ end }}alerts{{ if gt (len .CommonLabels.SortedPairs) 0 }} for {{ range .CommonLabels.SortedPairs }}{{ .Name | translate }}={{ .Value }} {{ end }}{{ end }}{{ end }}" }}
{{ "{{ define \"nm.subject\" }}{{ $numAlerts := len .Alerts }}{{ if eq $numAlerts 0 }}Show nothing{{ else if eq $numAlerts 1 }}{{ range .Alerts }}{{ $alertTitle := \"\" }}{{ $alertType := .Labels.alerttype }}{{ $alertName := .Labels.alertname }}{{ $cluster := .Labels.cluster }}{{ $node := .Labels.node }}{{ $pod := .Labels.pod }}{{ $namespace := .Labels.namespace }}{{ if eq $alertType \"metric\" }}{{ $alertTitle = \"[Metrics Alert]\" }}{{ else if eq $alertType \"auditing\" }}{{ $alertTitle = \"[Audit Alert]\" }}{{ else if eq $alertType \"event\" }}{{ $alertTitle = \"[Event Alert]\" }}{{ else }}{{ $alertTitle = \"[Unknown Alert]\" }}{{ end }}{{ $output := printf \"%s\" $alertTitle }}{{ if $alertName }}{{ $output = printf \"%s alertname=%s\" $output $alertName }}{{ end }}{{ if $cluster }}{{ $output = printf \"%s | cluster=%s\" $output $cluster }}{{ end }}{{ if $namespace }}{{ $output = printf \"%s | namespace=%s\" $output $namespace }}{{ end }}{{ if $pod }}{{ $output = printf \"%s | pod=%s\" $output $pod }}{{ if $node }}{{ $output = printf \"%s/node=%s\" $output $node }}{{ end }}{{ else }}{{ if $node }}{{ $output = printf \"%s | node=%s\" $output $node }}{{ end }}{{ end }}{{ $output }}{{ end }}{{ else }}{{ $alertTitle := \"[Aggregation\" }}{{ $alertType := index .GroupLabels \"alerttype\" }}{{ $alertName := index .GroupLabels \"alertname\" }}{{ $cluster := index .GroupLabels \"cluster\" }}{{ $namespace := index .GroupLabels \"namespace\" }}{{ if eq $alertType \"metric\" }}{{ $alertTitle = printf \"%s Metrics Alert]\" $alertTitle }}{{ else if eq $alertType \"auditing\" }}{{ $alertTitle = printf \"%s Audit Alert]\" $alertTitle }}{{ else if eq $alertType \"event\" }}{{ $alertTitle = printf \"%s Event Alert]\" $alertTitle }}{{ else }}{{ $alertTitle = printf \"%s Alert]\" $alertTitle }}{{ end }}{{ $output := printf \"%s\" $alertTitle }}{{ if $alertName }}{{ $output = printf \"%s alertname=%s\" $output $alertName }}{{ end }}{{ if $cluster }}{{ $output = printf \"%s | cluster=%s\" $output $cluster }}{{ end }}{{ if $namespace }}{{ $output = printf \"%s | namespace=%s\" $output $namespace }}{{ end }}{{ $output }}{{ end }}{{ end }}" }}
{{ "{{ define \"nm.default.text\" }}{{ range .Alerts }}{{ template \"nm.default.message\" . }}" }}
{{ "{{ range .Labels.SortedPairs }} {{ .Name | translate }}: {{ .Value }}" }}
Expand Down
2 changes: 2 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ notificationmanager:
groupLabels:
- alertname
- namespace
- cluster
- alerttype
template:
language: English
languagePack:
Expand Down

0 comments on commit 41b906d

Please sign in to comment.