diff options
| author | Colin Wilk <colin@wilk.cx> | 2026-07-03 20:15:09 +0200 |
|---|---|---|
| committer | Colin Wilk <colin@wilk.cx> | 2026-07-03 20:15:09 +0200 |
| commit | 9368443af5c0cdfbadbd54f92814dadce1c4e663 (patch) | |
| tree | 8bfd750d7c4623c52adc775f51468bced1a01d5e /defaults | |
| parent | 7074302088d7283181f03c8ad3108322b9033bc3 (diff) | |
| download | ansible-role-prometheus-target-9368443af5c0cdfbadbd54f92814dadce1c4e663.tar.gz ansible-role-prometheus-target-9368443af5c0cdfbadbd54f92814dadce1c4e663.zip | |
refactor: bump and fix pre-commit errors
Diffstat (limited to 'defaults')
| -rw-r--r-- | defaults/main.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index 795e3cb..2b62d46 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -95,8 +95,8 @@ prometheus_target_handler_shell_run_once: false # This configuration is mostly used for globally indenting all of your targets # in their target configuration and thus keeping this configuration away from # the exporter host variable. -prometheus_target_strategy_lineinfile_prefix: ' - ' -prometheus_target_strategy_lineinfile_suffix: '' +prometheus_target_strategy_lineinfile_prefix: " - " +prometheus_target_strategy_lineinfile_suffix: "" ################################################################################ @@ -109,9 +109,9 @@ prometheus_target_strategy_lineinfile_suffix: '' # you can define your remaining target files as just target.yml instead of # /opt/prometheus/target.yml # In case you have a few exporters that reside in different directories you may -# ignore the prefix by specifying `path_prefix: ''` in the exporter default +# ignore the prefix by specifying `path_prefix: ""` in the exporter default # or the enabled exporter config. -prometheus_target_exporter_target_prefix: '' +prometheus_target_exporter_target_prefix: "" # This will configure the default settings for specified exporters. # The key in this dict should map to the possible id in the specified exporter @@ -125,14 +125,14 @@ prometheus_target_exporter_target_prefix: '' prometheus_target_exporter_defaults: {} # node_exporter: # path: /opt/prometheus/targets.yml - # host: '{{ inventory_hostname }}:9100' + # host: "{{ inventory_hostname }}:9100" # labels: # Labels to match when using yaml strategy # severity: warning # job: external # blackbox_exporter: # path: /opt/targets/blackbox.yml - # host: 'https://{{ hostvars[inventory_hostname].ansible_host }}' - # path_prefix: '' + # host: "https://{{ hostvars[inventory_hostname].ansible_host }}" + # path_prefix: "" # labels: # severity: critical @@ -145,7 +145,7 @@ prometheus_target_exporter: [] # # overwrites prometheus_target_exporter_defaults.node_exporter.path # path: /path/to/targets/file/on/prometheus/host # # overwrites: prometheus_target_exporter_defaults.node_exporter.host - # host: '{{ inventory_hostname }}:9100' + # host: "{{ inventory_hostname }}:9100" # # labels to match the target group in the YAML file (yaml strategy only) # labels: # severity: warning @@ -157,7 +157,7 @@ prometheus_target_exporter: [] # ignored. prometheus_target_default_exporters: [] # - { id: node_exporter } - # - { id: blackbox_exporter, path: /path/to/target, path_prefix: '' } + # - { id: blackbox_exporter, path: /path/to/target, path_prefix: "' } # You can enable this variable to not add exporters defined in # prometheus_target_default_exporters |