From 3a3430976fb05caf1ce543b97b2caad0e719ce9b Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Tue, 10 Jul 2018 00:12:10 -0500 Subject: [PATCH] Improve NFS detection Detect if NFS is present by looking into the available mounts from ansible facts. Change-Id: I0e2d90d9e706ad4f6527484d96757b8578cb61bb Signed-off-by: Kevin Carter --- elk_metrics_6x/templates/packetbeat.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elk_metrics_6x/templates/packetbeat.yml.j2 b/elk_metrics_6x/templates/packetbeat.yml.j2 index b7b8015c..a6dfdd80 100644 --- a/elk_metrics_6x/templates/packetbeat.yml.j2 +++ b/elk_metrics_6x/templates/packetbeat.yml.j2 @@ -439,7 +439,7 @@ packetbeat.protocols: - type: nfs # Enable NFS monitoring. Default: true -{% set ns = namespace(enabled=((inventory_hostname in groups['glance_all'] | default([])) or (inventory_hostname in groups['nova_compute'] | default([])))) %} +{% set ns = namespace(enabled=((inventory_hostname in groups['glance_all'] | default([])) or (inventory_hostname in groups['nova_compute'] | default([])) or 'nfs4' in (ansible_mounts | map(attribute='fstype') | list))) %} {% if not ns.enabled | bool %} {% for _item in groups['glance_all'] | default([]) + groups['nova_compute'] | default([]) %} {% if not ns.enabled | bool or _item in groups[inventory_hostname + '-host_containers'] | default([]) %}