From e6f91264fb78257978cc6754fed686dce23d5f53 Mon Sep 17 00:00:00 2001 From: m0duspwnens Date: Wed, 25 Mar 2020 12:48:47 -0400 Subject: [PATCH] send proper format data to telegraf module from healtheck module - https://github.com/Security-Onion-Solutions/securityonion-saltstack/issues/90 --- salt/_modules/healthcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/_modules/healthcheck.py b/salt/_modules/healthcheck.py index 7c47cd4d4..465c5f724 100644 --- a/salt/_modules/healthcheck.py +++ b/salt/_modules/healthcheck.py @@ -18,5 +18,5 @@ def zeek(): else: zeek_restarted = False - __salt__['telegraf.send']('healthcheck zeek_restarted: %s' % str(zeek_restarted)) + __salt__['telegraf.send']('healthcheck zeek_restarted=%s' % str(zeek_restarted)) return 'zeek_restarted: %s' % str(zeek_restarted)