You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to promethe...@googlegroups.com
Hi all, I have configured Alertmanager to send alerts to Amazon SNS, everything is working correctly but I see a lot of information in the alert that arrives. I have read the documentation but I have not understood how to resolve it.
I would like to put together something simpler without so much information, for example.
- alertname = HpaMaxedOut
VALUE = 2
CLUSTER = test-dev
- description = The maximum number of desired Pods has been hit
- summary = Kubernetes HPA scale capability (instance 10.x.x.x:8080)
Here my config:
groups: - name: HpaMaxedOut rules: - alert: DeploymentReplicasLimitReached expr: kube_horizontalpodautoscaler_status_desired_replicas >= kube_horizontalpodautoscaler_spec_max_replicas for: 1m labels: severity: critical annotations: summary: Kubernetes HPA scale capability (instance {{ $labels.instance }}) description: "The maximum number of desired Pods has been hit\n VALUE = {{ $value }}\n LABELS = {{ $labels }}"
Any helps?