forked from saltstack-formulas/prometheus-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(exporters): added node_exporter
- Loading branch information
Showing
10 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ provisioner: | |
base: | ||
'*': | ||
- prometheus | ||
- prometheus.exporters | ||
pillars: | ||
top.sls: | ||
base: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,3 +62,8 @@ prometheus: | |
|
||
static_configs: | ||
- targets: ['localhost:9090'] | ||
|
||
exporters: | ||
node: | ||
args: | ||
web.listen-address: ":9110" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
{#- Get the `tplroot` from `tpldir` #} | ||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- set sls_config_file = tplroot ~ '.config.file' %} | ||
{%- from tplroot ~ "/map.jinja" import prometheus with context %} | ||
{%- if prometheus.exporters.keys()|length > 0 %} | ||
include: | ||
{%- for name in prometheus.exporters.keys()|list %} | ||
- .{{ name }} | ||
{%- endfor %} | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
{#- Get the `tplroot` from `tpldir` #} | ||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- from tplroot ~ "/map.jinja" import prometheus with context %} | ||
prometheus-exporters-node-service-dead: | ||
service.dead: | ||
- name: {{ prometheus.exporters.node.service }} | ||
- enable: False | ||
prometheus-exporters-node-pkg-removed: | ||
pkg.removed: | ||
- name: {{ prometheus.exporters.node.pkg }} | ||
- require: | ||
- service: prometheus-exporters-node-service-dead | ||
{# FreeBSD #} | ||
{%- if salt['grains.get']('os_family') == 'FreeBSD' %} | ||
{%- for parameter in ['args', 'listen_address', 'textfile_dir'] %} | ||
prometheus-exporters-node-args-{{ parameter }}: | ||
sysrc.absent: | ||
- name: node_exporter_{{ parameter }} | ||
- require: | ||
- service: prometheus-exporters-node-service-dead | ||
{%- endfor %} | ||
{%- endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# -*- coding: utf-8 -*- | ||
# vim: ft=sls | ||
|
||
{#- Get the `tplroot` from `tpldir` #} | ||
{%- set tplroot = tpldir.split('/')[0] %} | ||
{%- from tplroot ~ "/map.jinja" import prometheus with context %} | ||
{%- macro concat_args(args) %} | ||
{%- if args|length > 0 %} | ||
{%- for k,v in args -%} | ||
{%- if not k or not v %}{% continue %}{% endif -%} | ||
--{{ k }}={{ v }} | ||
{%- if not loop.last %} {% endif -%} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endmacro %} | ||
prometheus-exporters-node-pkg-installed: | ||
pkg.installed: | ||
- name: {{ prometheus.exporters.node.pkg }} | ||
{%- if 'args' in prometheus.exporters.node %} | ||
{%- set args = prometheus.exporters.node.get('args', {}) -%} | ||
{# FreeBSD #} | ||
{%- if salt['grains.get']('os_family') == 'FreeBSD' %} | ||
{%- if 'web.listen-address' in args.keys() %} | ||
{%- set value = args.pop('web.listen-address') %} | ||
prometheus-exporters-node-args-web-listen-address: | ||
sysrc.managed: | ||
- name: node_exporter_listen_address | ||
- value: {{ value }} | ||
- watch_in: | ||
- service: prometheus-exporters-node-service-running | ||
{%- endif %} | ||
{%- if 'collector.textfile.directory' in args.keys() %} | ||
{%- set value = args.pop('collector.textfile.directory') %} | ||
prometheus-exporters-node-args-collector-textfile-directory: | ||
sysrc.managed: | ||
- name: node_exporter_textfile_dir | ||
- value: {{ value }} | ||
- watch_in: | ||
- service: prometheus-exporters-node-service-running | ||
{%- endif %} | ||
prometheus-exporters-node-args: | ||
sysrc.managed: | ||
- name: node_exporter_args | ||
# service node_exporter restart tended to hang on FreeBSD | ||
# https://github.com/saltstack/salt/issues/44848#issuecomment-487016414 | ||
- value: "{{ concat_args(args|dictsort) }} >/dev/null 2>&1" | ||
- watch_in: | ||
- service: prometheus-exporters-node-service-running | ||
{# Debian #} | ||
{%- elif salt['grains.get']('os_family') == 'Debian'%} | ||
prometheus-exporters-node-args: | ||
file.managed: | ||
- name: {{ prometheus.exporters.node.config_file }} | ||
- contents: | | ||
ARGS="{{ concat_args(args) }}" | ||
- watch_in: | ||
- service: prometheus-exporters-node-service-running | ||
{%- endif %} | ||
{%- endif %} | ||
prometheus-exporters-node-service-running: | ||
service.running: | ||
- name: {{ prometheus.exporters.node.service }} | ||
- enable: True | ||
- watch: | ||
- pkg: prometheus-exporters-node-pkg-installed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters