Skip to content

Commit

Permalink
Bump push gateway to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestas-poskus committed Oct 22, 2019
1 parent 59f5905 commit 564952e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ prometheus_node_exporter_version: '0.18.1'
prometheus_alert_manager_version: '0.18.0'

# Pushgateway
prometheus_push_gateway_version: '0.9.1'
prometheus_push_gateway_version: '1.0.0'

# SNMP exporter
prometheus_snmp_exporter_version: '0.15.0'
Expand Down
5 changes: 4 additions & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ prometheus_node_exporter_version: '0.18.1'
prometheus_alert_manager_version: '0.18.0'

# Pushgateway
prometheus_push_gateway_version: '0.9.1'
prometheus_push_gateway_version: '1.0.0'

# SNMP exporter
prometheus_snmp_exporter_version: '0.15.0'
Expand Down Expand Up @@ -457,6 +457,9 @@ prometheus_push_gateway_web__telemetry_path: '/metrics'
# Path under which to expose metrics. (default "/metrics")
prometheus_push_gateway_web__external_url:
# The URL under which Pushgateway is externally reachable.
prometheus_push_gateway____enabled_flags: []
# - 'web.enable-admin-api' # disabled by default
# - 'web.enable-lifecycle' # disabled by default

# Snmp exporter
# https://github.com/prometheus/snmp_exporter
Expand Down
3 changes: 3 additions & 0 deletions docs/push_gateway.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,7 @@ prometheus_push_gateway_web__telemetry_path: '/metrics'
# Path under which to expose metrics. (default "/metrics")
prometheus_push_gateway_web__external_url:
# The URL under which Pushgateway is externally reachable.
prometheus_push_gateway____enabled_flags: []
# - 'web.enable-admin-api' # disabled by default
# - 'web.enable-lifecycle' # disabled by default
```
2 changes: 1 addition & 1 deletion templates/push_gateway.service.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ After=network.target
Wants=network.target

[Service]
ExecStart={{ prometheus_install_dir }}/{{ prometheus_push_gateway_archive }}/pushgateway {% for config in prometheus_push_gateway_service_config if config[1] is not none %}--{{ config[0] }}={{ config[1] }} {% endfor %}
ExecStart={{ prometheus_install_dir }}/{{ prometheus_push_gateway_archive }}/pushgateway {% for config in prometheus_push_gateway_service_config if config[1] is not none %}--{{ config[0] }}={{ config[1] }} {% endfor %} {% for enabled_bool in prometheus_push_gateway____enabled_flags %}--{{ enabled_bool }} {% endfor %}

Restart=always
RestartSec=20
Expand Down

0 comments on commit 564952e

Please sign in to comment.