prometheus-formula/prometheus/service/running.sls

32 lines
1.0 KiB
Plaintext

# -*- coding: utf-8 -*-
# vim: ft=sls
{#- Get the `tplroot` from `tpldir` #}
{%- set tplroot = tpldir.split('/')[0] %}
{%- set sls_config_args = tplroot ~ '.config.args' %}
{%- set sls_config_file = tplroot ~ '.config.file' %}
{%- from tplroot ~ "/map.jinja" import prometheus with context %}
include:
- {{ sls_config_args }}
- {{ sls_config_file }}
prometheus-service-running-service-unmasked:
service.unmasked:
- name: {{ prometheus.service.name }}
- onlyif: systemctl list-unit-files | grep {{ prometheus.service.name }} >/dev/null 2>&1
prometheus-service-running-service-running:
service.running:
- name: {{ prometheus.service.name }}
- enable: True
{%- if 'config' in prometheus and prometheus.config %}
- watch:
- file: prometheus-config-file-file-managed-config_file
- require:
- service: prometheus-service-running-service-unmasked
- sls: {{ sls_config_args }}
- sls: {{ sls_config_file }}
{%- endif %}
- onlyif: systemctl list-unit-files | grep {{ prometheus.service.name }} >/dev/null 2>&1