-
Notifications
You must be signed in to change notification settings - Fork 472
Open
Description
Piyush Singh (piyush-singh) commented:
While attempting to reproduce a customer issue that was reported to support, I followed our Prometheus and Alertmanager configuration guidance. There are a few issues in the doc as written:
- (nit) The default config file for Alertmanager has be renamed from
simple.yml
toalertmanager.yml
- By default, our prometheus.yml file includes a "path prefix". Our instructions for starting Alertmanager do not configure Alertmanager to serve from this path prefix. In order to do so, we would need to run Alertmanager using a command that adds a flag:
alertmanager --config.file=alertmanager.yml --web.external-url=http://localhost:9093/alertmanager
. Note that if we add this path prefix, the remaining URLs in the doc will also need to be updated. Alternatively, we could simply remove this path prefix from the prometheus.yml file and instead set it as- path_prefix: ""
.
Jira Issue: DOC-788