X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flogfile.c;h=382386b75552fa0915d9ade6ded18bc5b9954f3d;hb=e628f39838a67b40d52dfb8425b4d8474fbd0550;hp=f4661245efbaa011a9ff4f4f227f2b69b34c45d5;hpb=945fa72dc088cbedc956f44b1f1ec69f35e90064;p=collectd.git diff --git a/src/logfile.c b/src/logfile.c index f4661245..382386b7 100644 --- a/src/logfile.c +++ b/src/logfile.c @@ -1,6 +1,7 @@ /** * collectd - src/logfile.c * Copyright (C) 2007 Sebastian Harl + * Copyright (C) 2007,2008 Florian Forster * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -72,7 +73,7 @@ static int logfile_config (const char *key, const char *value) sfree (log_file); log_file = strdup (value); } - else if (0 == strcasecmp (key, "File")) { + else if (0 == strcasecmp (key, "Timestamp")) { if ((strcasecmp (value, "false") == 0) || (strcasecmp (value, "no") == 0) || (strcasecmp (value, "off") == 0)) @@ -86,20 +87,15 @@ static int logfile_config (const char *key, const char *value) return 0; } /* int logfile_config (const char *, const char *) */ -static void logfile_log (int severity, const char *msg) +static void logfile_print (const char *msg, time_t timestamp_time) { FILE *fh; int do_close = 0; - time_t timestamp_time; struct tm timestamp_tm; char timestamp_str[64]; - if (severity > log_level) - return; - if (print_timestamp) { - timestamp_time = time (NULL); localtime_r (×tamp_time, ×tamp_tm); strftime (timestamp_str, sizeof (timestamp_str), "%Y-%m-%d %H:%M:%S", @@ -145,13 +141,61 @@ static void logfile_log (int severity, const char *msg) pthread_mutex_unlock (&file_lock); return; +} /* void logfile_print */ + +static void logfile_log (int severity, const char *msg) +{ + if (severity > log_level) + return; + + logfile_print (msg, time (NULL)); } /* void logfile_log (int, const char *) */ +static int logfile_notification (const notification_t *n) +{ + char buf[1024] = ""; + char *buf_ptr = buf; + int buf_len = sizeof (buf); + int status; + + status = ssnprintf (buf_ptr, buf_len, "Notification: severity = %s", + (n->severity == NOTIF_FAILURE) ? "FAILURE" + : ((n->severity == NOTIF_WARNING) ? "WARNING" + : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN"))); + if (status > 0) + { + buf_ptr += status; + buf_len -= status; + } + +#define APPEND(bufptr, buflen, key, value) \ + if ((buflen > 0) && (strlen (value) > 0)) { \ + int status = ssnprintf (bufptr, buflen, ", %s = %s", key, value); \ + if (status > 0) { \ + bufptr += status; \ + buflen -= status; \ + } \ + } + APPEND (buf_ptr, buf_len, "host", n->host); + APPEND (buf_ptr, buf_len, "plugin", n->plugin); + APPEND (buf_ptr, buf_len, "plugin_instance", n->plugin_instance); + APPEND (buf_ptr, buf_len, "type", n->type); + APPEND (buf_ptr, buf_len, "type_instance", n->type_instance); + APPEND (buf_ptr, buf_len, "message", n->message); + + buf[sizeof (buf) - 1] = '\0'; + + logfile_print (buf, n->time); + + return (0); +} /* int logfile_notification */ + void module_register (void) { plugin_register_config ("logfile", logfile_config, config_keys, config_keys_num); plugin_register_log ("logfile", logfile_log); + plugin_register_notification ("logfile", logfile_notification); } /* void module_register (void) */ /* vim: set sw=4 ts=4 tw=78 noexpandtab : */