from __future__ import (absolute_import, division, print_function) __metaclass__ = type from functools import partial from ansible import errors def prometheus_job_targets(hostvars, jobs, targets): try: result = [] for job in jobs: for target in targets: special_config_varname = 'prometheus_job_' + job.replace('-', '_').replace('/', '__') if special_config_varname in hostvars[target]: for config in hostvars[target][special_config_varname]: result.append({'job': job, 'instance': config['instance'], 'config': config, 'enabled': True}) else: 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_job_targets(): %s" % str(e)) class FilterModule(object): ''' prometheus filters ''' filter_map = { 'prometheus_job_targets': prometheus_job_targets, } def filters(self): return self.filter_map