mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-02 03:10:40 +08:00

* chore(install-script): 🔧 include missed sudo_cmd variable Signed-off-by: Prashant Shahi <prashant@signoz.io> * chore: 🔧 add .gitkeep in folders to mount Signed-off-by: Prashant Shahi <prashant@signoz.io> * chore(docker-swarm): 🔧 Update deploy configurations Signed-off-by: Prashant Shahi <prashant@signoz.io> * chore(compose-yaml): 🔧 expose otlp ports and restart on failure policy Signed-off-by: Prashant Shahi <prashant@signoz.io> Co-authored-by: Ankit Nayan <ankit@signoz.io>
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
global:
|
|
resolve_timeout: 1m
|
|
slack_api_url: 'https://hooks.slack.com/services/xxx'
|
|
|
|
route:
|
|
receiver: 'slack-notifications'
|
|
|
|
receivers:
|
|
- name: 'slack-notifications'
|
|
slack_configs:
|
|
- channel: '#alerts'
|
|
send_resolved: true
|
|
icon_url: https://avatars3.githubusercontent.com/u/3380462
|
|
title: |-
|
|
[{{ .Status | toUpper }}{{ if eq .Status "firing" }}:{{ .Alerts.Firing | len }}{{ end }}] {{ .CommonLabels.alertname }} for {{ .CommonLabels.job }}
|
|
{{- if gt (len .CommonLabels) (len .GroupLabels) -}}
|
|
{{" "}}(
|
|
{{- with .CommonLabels.Remove .GroupLabels.Names }}
|
|
{{- range $index, $label := .SortedPairs -}}
|
|
{{ if $index }}, {{ end }}
|
|
{{- $label.Name }}="{{ $label.Value -}}"
|
|
{{- end }}
|
|
{{- end -}}
|
|
)
|
|
{{- end }}
|
|
text: >-
|
|
{{ range .Alerts -}}
|
|
*Alert:* {{ .Annotations.title }}{{ if .Labels.severity }} - `{{ .Labels.severity }}`{{ end }}
|
|
|
|
*Description:* {{ .Annotations.description }}
|
|
|
|
*Details:*
|
|
{{ range .Labels.SortedPairs }} • *{{ .Name }}:* `{{ .Value }}`
|
|
{{ end }}
|
|
{{ end }} |