prometheus related updates
[distro-setup] / filesystem / etc / default / prometheus-alertmanager
1 # Set the command-line arguments to pass to the server.
2
3 # from its README: If running Alertmanager in high availability mode is not
4 # desired, setting --cluster.listen-address= prevents Alertmanager from
5 # listening to incoming peer requests.
6 # If you don't add that, it will fail to start on boot because
7 # it doesn't wait for network.target, and gives this error message:
8 # component=cluster err="couldn't deduce an advertise address: no private IP found, explicit advertise addr not provided"
9
10 # config.file and storage.path are set to match the debian package
11
12 ARGS="--cluster.listen-address=
13 --config.file=/etc/prometheus/alertmanager.yml
14 --storage.path=/var/lib/prometheus/alertmanager/
15 --web.listen-address=127.0.0.1:9093"
16
17 # run with --help or see README for more options