Unverified Commit bd0bf734 authored by Keshav Prasad's avatar Keshav Prasad Committed by GitHub
Browse files

fix: process exporter updates and fixes (#1355)

* fix: removed pid

* fix: updating scrape interval to 30s

* fix: removing wal

* fix: restart process exporter

* fix: scrape every 10s

* fix: remove redundant code

* fix: test how exe full path will look

* fix: adding label for process exporter prometheus

* fix: moving labelling to playbook level

* fix: removed handlers as the call is only once

* fix: redundant name

* fix: changed from systemd to service

* Revert "fix: changed from systemd to service"

This reverts commit 5a9388a89ec396283ea5fb39af03f62fcac3ebfa.

* fix: typo in name

* fix: create dist directory

* fix: removing unnecessary codes

* fix: updating node exporter scrape job name
Showing with 29 additions and 25 deletions
+29 -25
- name: Creating prometheus-stateful configuration folder
- name: labelling process exporter prometheus
hosts: swarm-dashboard
become: yes
vars_files:
- ['{{inventory_dir}}/secrets.yml']
tasks:
- name: Adding label for stateful prometheus
shell: "docker node update --label-add prometheus_stateful=1 {{ hostvars[groups['swarm-agent-for-prometheus-stateful'][0]]['ansible_hostname'] }}"
tags:
- process-exporter-prometheus
- name: deploy process exporter prometheus
hosts: swarm-agent-for-prometheus-stateful
gather_facts: no
become: yes
vars_files:
- ['{{inventory_dir}}/secrets.yml']
......@@ -8,7 +20,9 @@
tags:
- process-exporter-prometheus
- hosts: process-exporter
- name: deployer process exporter to vms
hosts: process-exporter
gather_facts: no
become: yes
vars_files:
- ['{{inventory_dir}}/secrets.yml']
......
process_names:
- name: "{{.PID}} | {{.ExeFull}} | {{.Username}}"
- name: "{{.ExeFull}} | {{.Username}}"
cmdline:
- '.+'
---
- name: enable process exporter all service
systemd:
enabled: yes
name: process-exporter-all.service
- name: restart process exporter all
systemd:
name: process-exporter-all.service
state: restarted
......@@ -15,7 +15,7 @@
- name: create prometheus directory
file:
path: "{{ process_exporter_prometheus_common_root_dir }}"
path: "{{ process_exporter_prometheus_common_dist_dir }}"
state: directory
owner: "{{ process_exporter_prometheus_common_user }}"
group: "{{ process_exporter_prometheus_common_group }}"
......@@ -27,9 +27,6 @@
dest: "{{ process_exporter_prometheus_common_dist_dir }}"
creates: "{{ process_exporter_prometheus_common_dist_dir }}/{{ process_exporter_prometheus_release_name }}/process_exporter"
remote_src: yes
register: process_exporter_prometheus_updated
notify:
- restart process exporter all
- name: copy the custom configuration file
copy:
......@@ -43,7 +40,6 @@
recurse: yes
owner: "{{ process_exporter_prometheus_common_user }}"
group: "{{ process_exporter_prometheus_common_group }}"
when: process_exporter_prometheus_updated | changed
- name: create symlink to the current release
file:
......@@ -58,8 +54,13 @@
owner: root
group: root
mode: 0644
notify:
- enable process exporter all service
- restart process exporter all
- meta: flush_handlers
- name: enable process exporter all service
systemd:
enabled: yes
name: process-exporter-all.service
- name: restart process exporter all
systemd:
name: process-exporter-all.service
state: restarted
......@@ -9,7 +9,7 @@ services:
- application_default
volumes:
- "{{ process_exporter_prometheus_mount_point }}:/prometheus"
command: "--config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/prometheus --web.console.libraries=/etc/prometheus/console_libraries --storage.tsdb.retention.time={{prometheus_storage_retention_time}} --web.console.templates=/etc/prometheus/consoles --web.route-prefix={{process_exporter_prometheus_route_prefix}} --web.external-url={{process_exporter_prometheus_web_external_url}} --web.enable-admin-api --storage.tsdb.wal-compression"
command: "--config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/prometheus --web.console.libraries=/etc/prometheus/console_libraries --storage.tsdb.retention.time={{prometheus_storage_retention_time}} --web.console.templates=/etc/prometheus/consoles --web.route-prefix={{process_exporter_prometheus_route_prefix}} --web.external-url={{process_exporter_prometheus_web_external_url}} --web.enable-admin-api"
configs:
- source: process_exporter_prometheus.yml
target: /etc/prometheus/prometheus.yml
......
......@@ -37,7 +37,7 @@ scrape_configs:
- source_labels: [name]
regex: '^\s*$'
action: drop
- job_name: 'vm-node-exporter'
- job_name: 'node-exporter'
static_configs:
- targets: ["{{ groups['node-exporter'] | difference(["localhost"]) | map('regex_replace', '^(.*)$', '\\1:9100') | list | join("\", \"") }}"]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment