You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
284 B

  1. ---
  2. - name: enable exporter on listen address
  3. lineinfile:
  4. path: /etc/sysconfig/node_exporter
  5. regexp: '^LISTEN_ADDRESS='
  6. backrefs: yes
  7. line: 'LISTEN_ADDRESS="{{ prometheus_exporter_listen_address }}:{{ prometheus_exporter_listen_port }}"'
  8. notify: restart exporter