From 92cdd3764990e642069fda6785f43f3bd53f1863 Mon Sep 17 00:00:00 2001 From: thiagoftsm Date: Mon, 24 Feb 2020 20:56:05 +0000 Subject: Restrict GA message (#8161) * restrict_stream_message: Parse message before to send This commit changes the default tag that was sent to GA * Ignore thread problem We are believing that there is a thread problem that we need to dig, while we do not do there, we are only changing the comparison * restrict_stream_message: Remove tabs This commit removes the unecessary tab around the functions changed --- libnetdata/log/log.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'libnetdata') diff --git a/libnetdata/log/log.c b/libnetdata/log/log.c index 7849aedc4a..52ea932aa3 100644 --- a/libnetdata/log/log.c +++ b/libnetdata/log/log.c @@ -820,10 +820,11 @@ void fatal_int( const char *file, const char *function, const unsigned long line log_unlock(); char action_data[70+1]; - snprintfz(action_data, 70, "%04lu@%-10.10s:%-15.15s/%d", line, file, function, __errno); - char action_result[60+1]; - snprintfz(action_result, 60, "%s:%s",program_name, strcmp(program_name,"STREAM_RECEIVER")?netdata_thread_tag():"[x]"); - send_statistics("FATAL", action_result, action_data); + snprintfz(action_data, 70, "%04lu@%-10.10s:%-15.15s/%d", line, file, function, __errno); + char action_result[60+1]; + + snprintfz(action_result, 60, "%s:%s", program_name, strncmp(netdata_thread_tag(), "STREAM_RECEIVER", strlen("STREAM_RECEIVER"))?netdata_thread_tag():"[x]"); + send_statistics("FATAL", action_result, action_data); netdata_cleanup_and_exit(1); } -- cgit v1.2.3