mostly start using prometheus
[distro-setup] / filesystem / etc / default / prometheus-alertmanager
1 # Set the command-line arguments to pass to the server.
2 # default:
3 #ARGS=""
4
5 # iank:
6 ARGS="--web.listen-address=127.0.0.1:9093"
7
8 # this file is from version 0.21
9
10 # The alert manager supports the following options:
11
12 # --config.file="/etc/prometheus/alertmanager.yml"
13 # Alertmanager configuration file name.
14 # --storage.path="/var/lib/prometheus/alertmanager/"
15 # Base path for data storage.
16 # --data.retention=120h
17 # How long to keep data for.
18 # --alerts.gc-interval=30m
19 # Interval between alert GC.
20 # --log.level=info
21 # Only log messages with the given severity or above.
22 # --web.external-url=WEB.EXTERNAL-URL
23 # The URL under which Alertmanager is externally reachable (for example,
24 # if Alertmanager is served via a reverse proxy). Used for generating
25 # relative and absolute links back to Alertmanager itself. If the URL has
26 # a path portion, it will be used to prefix all HTTP endpoints served by
27 # Alertmanager. If omitted, relevant URL components will be derived
28 # automatically.
29 # --web.route-prefix=WEB.ROUTE-PREFIX
30 # Prefix for the internal routes of web endpoints. Defaults to path of
31 # --web.external-url.
32 # --web.listen-address=":9093"
33 # Address to listen on for the web interface and API.
34 # --web.ui-path="/usr/share/prometheus/alertmanager/ui/"
35 # Path to static UI directory.
36 # --template.default="/usr/share/prometheus/alertmanager/default.tmpl"
37 # Path to default notification template.
38 # --cluster.listen-address="0.0.0.0:9094"
39 # Listen address for cluster.
40 # --cluster.advertise-address=CLUSTER.ADVERTISE-ADDRESS
41 # Explicit address to advertise in cluster.
42 # --cluster.peer=CLUSTER.PEER ...
43 # Initial peers (may be repeated).
44 # --cluster.peer-timeout=15s
45 # Time to wait between peers to send notifications.
46 # --cluster.gossip-interval=200ms
47 # Interval between sending gossip messages. By lowering this value (more
48 # frequent) gossip messages are propagated across the cluster more
49 # quickly at the expense of increased bandwidth.
50 # --cluster.pushpull-interval=1m0s
51 # Interval for gossip state syncs. Setting this interval lower (more
52 # frequent) will increase convergence speeds across larger clusters at
53 # the expense of increased bandwidth usage.
54 # --cluster.tcp-timeout=10s Timeout for establishing a stream connection
55 # with a remote node for a full state sync, and for stream read and write
56 # operations.
57 # --cluster.probe-timeout=500ms
58 # Timeout to wait for an ack from a probed node before assuming it is
59 # unhealthy. This should be set to 99-percentile of RTT (round-trip time)
60 # on your network.
61 # --cluster.probe-interval=1s
62 # Interval between random node probes. Setting this lower (more frequent)
63 # will cause the cluster to detect failed nodes more quickly at the
64 # expense of increased bandwidth usage.
65 # --cluster.settle-timeout=1m0s
66 # Maximum time to wait for cluster connections to settle before
67 # evaluating notifications.
68 # --cluster.reconnect-interval=10s
69 # Interval between attempting to reconnect to lost peers.
70 # --cluster.reconnect-timeout=6h0m0s
71 # Length of time to attempt to reconnect to a lost peer.