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