serivce-prometheus: bind to localhost by default

This commit is contained in:
Julian Labus 2018-09-25 10:28:24 +02:00
parent 1deb042ba4
commit e8d9e6af90
No known key found for this signature in database
GPG Key ID: 8AF209F2C6B3572A
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ prometheus_groups:
- ffmwu-gateways
- ffmwu-monitoring
node_exporter_opts: "--web.listen-address=localhost:9100 --collector.systemd"
node_exporter_opts: "--collector.systemd"
http_domain_internal: ffmwu.org
http_domain_external: freifunk-mwu.de

View File

@ -13,7 +13,6 @@ http_grafana_prefix: stats
http_lookingglass_prefix: lg
prometheus_conf_main: prometheus/prometheus.yml.j2
prometheus_opts: "--web.listen-address=localhost:9090"
prometheus_components:
- prometheus

View File

@ -27,5 +27,6 @@ prometheus_workdir: "{{ prometheus_download_path }}/prometheus_workdir"
prometheus_goroot: "{{ prometheus_workdir }}/go"
prometheus_gopath: "{{ prometheus_workdir }}/gopath"
prometheus_default_opts: "--config.file={{ prometheus_config_path }}/prometheus.yml --storage.tsdb.path={{ prometheus_db_path }}"
prometheus_default_opts: "--web.listen-address=localhost:9090 --config.file={{ prometheus_config_path }}/prometheus.yml --storage.tsdb.path={{ prometheus_db_path }}"
alertmanager_default_opts: "--config.file={{ prometheus_config_path }}/alertmanager.yml --storage.path={{ alertmanager_db_path }}"
node_exporter_default_opts: "--web.listen-address=localhost:9100"