summaryrefslogtreecommitdiff
path: root/roles/monitoring/prometheus/server/filter_plugins/prometheus.py
blob: 5a8722c2e85576e95ef6223294a39fc83e3dfd93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

from functools import partial

from ansible import errors


def prometheus_generic_job_targets(hostvars, jobs, targets):
    try:
        result = []
        for job in jobs:
            for target in targets:
                enabled = job in hostvars[target]['prometheus_exporters_default'] or job in hostvars[target]['prometheus_exporters_extra']
                result.append({'job': job, 'instance': target, 'enabled': enabled})
        return result
    except Exception as e:
        raise errors.AnsibleFilterError("prometheus_generic_job_targets(): %s" % str(e))


def prometheus_special_job_targets(hostvars, jobs, targets):
    try:
        result = []
        for job in jobs:
            for target in targets:
                config_varname = 'prometheus_special_job_' + job.replace('-', '_')
                if config_varname in hostvars[target]:
                    for config in hostvars[target][config_varname]:
                        result.append({'job': job, 'instance': config['instance'], 'config': config})
        return result
    except Exception as e:
        raise errors.AnsibleFilterError("prometheus_special_job_targets(): %s" % str(e))


class FilterModule(object):

    ''' prometheus filters '''
    filter_map = {
        'prometheus_generic_job_targets': prometheus_generic_job_targets,
        'prometheus_special_job_targets': prometheus_special_job_targets,
    }

    def filters(self):
        return self.filter_map