From 52e465a79190cb3e91020bd6290698a00e8010a6 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Tue, 27 Jun 2023 18:18:06 -0600 Subject: [PATCH] check_graylog: update perfdata name --- check_graylog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_graylog.py b/check_graylog.py index b9d859b..95406d8 100755 --- a/check_graylog.py +++ b/check_graylog.py @@ -129,7 +129,7 @@ def main(): # Some metric names are changed for better readability perfdata.update({ - f'{input_name_clean}_incoming_messages_rate_per_sec_last_minute': { + f'{input_name_clean}_incoming_messages_rate_per_sec_1min': { 'value': metrics_data['incomingMessages_one_minute'], 'min': 0, }, @@ -261,7 +261,7 @@ def main(): text_result = text_result + f' JVM memory usage: {int((perfdata["jvm_memory_used"]["value"] / metrics_data["jvm_memory_heap_max"]) * 100)}%' if args.input: - text_result = text_result + f' {input_name_clean} events/second for last minute: {perfdata[f"{input_name_clean}_incoming_messages_rate_per_sec_last_minute"]["value"]}, {input_name_clean}_connections: {perfdata[f"{input_name_clean}_connections"]["value"]}, {input_name_clean}_network_in_total: {human_readable_size(perfdata[f"{input_name_clean}_network_in_total"]["value"], decimal_places=0)}' + text_result = text_result + f' {input_name_clean} events/second for last minute: {perfdata[f"{input_name_clean}_incoming_messages_rate_per_sec_1min"]["value"]}, {input_name_clean}_connections: {perfdata[f"{input_name_clean}_connections"]["value"]}, {input_name_clean}_network_in_total: {human_readable_size(perfdata[f"{input_name_clean}_network_in_total"]["value"], decimal_places=0)}' exit_code = nagios.STATE_OK else: text_result = text_result + '\n' + notif_str