prometheus: enforce osd nodes in templates

When osd nodes are collocated in the clients group (HCI context for
instance), the current logic will exclude osd nodes since they are
present in the client group.

The best fix would be to exclude clients node only when they are not
member of another group but for now, as a workaround, we can enforce
the addition of osd nodes to fix this specific case.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1947695

Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
pull/6558/head
Guillaume Abrioux 2021-05-25 09:26:28 +02:00
parent 43b1c7bea9
commit 664dae0564
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ scrape_configs:
{% endfor %} {% endfor %}
- job_name: 'node' - job_name: 'node'
static_configs: static_configs:
{% for host in (groups['all'] | difference(groups[monitoring_group_name] | union(groups.get(client_group_name, [])))) %} {% for host in (groups['all'] | difference(groups[monitoring_group_name] | union(groups.get(client_group_name, []))) | union(groups.get(osd_group_name, []))) %}
- targets: ['{{ host }}:{{ node_exporter_port }}'] - targets: ['{{ host }}:{{ node_exporter_port }}']
labels: labels:
instance: "{{ hostvars[host]['ansible_facts']['nodename'] }}" instance: "{{ hostvars[host]['ansible_facts']['nodename'] }}"