summaryrefslogtreecommitdiffstats
path: root/src/cephadm/samples/alertmanager.json
blob: bacbad3001ccc333770eac63f86da4b7bfd51b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "files": {
        "alertmanager.yml": [
            "global:",
            "  resolve_timeout: 5m",
            "",
            "route:",
            "  group_by: ['alertname']",
            "  group_wait: 10s",
            "  group_interval: 10s",
            "  repeat_interval: 1h",
            "  receiver: 'web.hook'",
            "receivers:",
            "- name: 'web.hook'",
            "  webhook_configs:",
            "  - url: 'http://127.0.0.1:5001/'",
            "inhibit_rules:",
            "  - source_match:",
            "      severity: 'critical'",
            "    target_match:",
            "      severity: 'warning'",
            "    equal: ['alertname', 'dev', 'instance']"
        ]
    },
    "peers": []
}