aboutsummaryrefslogblamecommitdiffstats
path: root/roles/prometheus/tasks/main.yml
blob: 5d5c1f3354fa94302b98fd50e90b856264484d2c (plain) (tree)






















                                               
- name: install prometheus
  package:
    name:
      - prometheus
      - node_exporter
    state: present

- name: generate prometheus configuration
  template:
    src: prometheus.conf.j2
    dest: "{{ prometheus_configuration_file }}"
    owner: 0
    group: 0
    mode: 0644

- name: enable and restart prometheus services
  service:
    name: "{{ item }}"
    state: restarted
    enabled: true
  loop:
    - prometheus
    - node_exporter
remember that computers suck.