X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Flogfile.c;h=382386b75552fa0915d9ade6ded18bc5b9954f3d;hb=148e8732e45435a051df1c3673cad0d5dc77492f;hp=911d14d2fb21d21f7c27b397c6e9d59844b05f3e;hpb=b62e76ba5220c5279c29d970a65fa5a74dc1f145;p=collectd.git diff --git a/src/logfile.c b/src/logfile.c index 911d14d2..382386b7 100644 --- a/src/logfile.c +++ b/src/logfile.c @@ -1,7 +1,7 @@ /** * collectd - src/logfile.c * Copyright (C) 2007 Sebastian Harl - * Copyright (C) 2007 Florian Forster + * 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 @@ -151,20 +151,41 @@ static void logfile_log (int severity, const char *msg) logfile_print (msg, time (NULL)); } /* void logfile_log (int, const char *) */ -int logfile_notification (const notification_t *n) +static int logfile_notification (const notification_t *n) { - char msg[1024] = ""; + char buf[1024] = ""; + char *buf_ptr = buf; + int buf_len = sizeof (buf); int status; - status = snprintf (msg, sizeof (msg), "Notification: %s: message = %s, " - "host = %s", + 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")), - n->message, n->host); - msg[sizeof (msg) - 1] = '\0'; + : ((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 (msg, n->time); + logfile_print (buf, n->time); return (0); } /* int logfile_notification */