From 50485bedfd9818165aa1d039d0abe95a559134b7 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 8 Feb 2019 08:31:03 +0100 Subject: Merging upstream version 1.12.0. Signed-off-by: Daniel Baumann --- libnetdata/log/log.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libnetdata/log/log.c') diff --git a/libnetdata/log/log.c b/libnetdata/log/log.c index 198e98bd9..66a923f85 100644 --- a/libnetdata/log/log.c +++ b/libnetdata/log/log.c @@ -1,5 +1,6 @@ // SPDX-License-Identifier: GPL-3.0-or-later +#include #include "../libnetdata.h" int web_server_is_multithreaded = 1; @@ -376,6 +377,8 @@ void error_int( const char *prefix, const char *file, const char *function, cons } void fatal_int( const char *file, const char *function, const unsigned long line, const char *fmt, ... ) { + // save a copy of errno - just in case this function generates a new error + int __errno = errno; va_list args; if(error_log_syslog) { @@ -400,6 +403,12 @@ 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, netdata_thread_tag()); + send_statistics("FATAL", action_result, action_data); + netdata_cleanup_and_exit(1); } -- cgit v1.2.3