Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / logfile.c
1 /**
2  * collectd - src/logfile.c
3  * Copyright (C) 2007       Sebastian Harl
4  * Copyright (C) 2007,2008  Florian Forster
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *   Sebastian Harl <sh at tokkee.org>
26  *   Florian Forster <octo at collectd.org>
27  **/
28
29 #include "collectd.h"
30
31 #include "common.h"
32 #include "plugin.h"
33
34 #if COLLECT_DEBUG
35 static int log_level = LOG_DEBUG;
36 #else
37 static int log_level = LOG_INFO;
38 #endif /* COLLECT_DEBUG */
39
40 static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
41
42 static char *log_file = NULL;
43 static int print_timestamp = 1;
44 static int print_severity = 0;
45
46 static const char *config_keys[] = {"LogLevel", "File", "Timestamp",
47                                     "PrintSeverity"};
48 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
49
50 static int logfile_config(const char *key, const char *value) {
51   if (0 == strcasecmp(key, "LogLevel")) {
52     log_level = parse_log_severity(value);
53     if (log_level < 0) {
54       log_level = LOG_INFO;
55       ERROR("logfile: invalid loglevel [%s] defaulting to 'info'", value);
56       return 1;
57     }
58   } else if (0 == strcasecmp(key, "File")) {
59     sfree(log_file);
60     log_file = strdup(value);
61   } else if (0 == strcasecmp(key, "Timestamp")) {
62     if (IS_FALSE(value))
63       print_timestamp = 0;
64     else
65       print_timestamp = 1;
66   } else if (0 == strcasecmp(key, "PrintSeverity")) {
67     if (IS_FALSE(value))
68       print_severity = 0;
69     else
70       print_severity = 1;
71   } else {
72     return -1;
73   }
74   return 0;
75 } /* int logfile_config (const char *, const char *) */
76
77 static void logfile_print(const char *msg, int severity,
78                           cdtime_t timestamp_time) {
79   FILE *fh;
80   _Bool do_close = 0;
81   char timestamp_str[64];
82   char level_str[16] = "";
83
84   if (print_severity) {
85     switch (severity) {
86     case LOG_ERR:
87       snprintf(level_str, sizeof(level_str), "[error] ");
88       break;
89     case LOG_WARNING:
90       snprintf(level_str, sizeof(level_str), "[warning] ");
91       break;
92     case LOG_NOTICE:
93       snprintf(level_str, sizeof(level_str), "[notice] ");
94       break;
95     case LOG_INFO:
96       snprintf(level_str, sizeof(level_str), "[info] ");
97       break;
98     case LOG_DEBUG:
99       snprintf(level_str, sizeof(level_str), "[debug] ");
100       break;
101     default:
102       break;
103     }
104   }
105
106   if (print_timestamp) {
107     struct tm timestamp_tm;
108     localtime_r(&CDTIME_T_TO_TIME_T(timestamp_time), &timestamp_tm);
109
110     strftime(timestamp_str, sizeof(timestamp_str), "%Y-%m-%d %H:%M:%S",
111              &timestamp_tm);
112     timestamp_str[sizeof(timestamp_str) - 1] = '\0';
113   }
114
115   pthread_mutex_lock(&file_lock);
116
117   if (log_file == NULL) {
118     fh = stderr;
119   } else if (strcasecmp(log_file, "stderr") == 0)
120     fh = stderr;
121   else if (strcasecmp(log_file, "stdout") == 0)
122     fh = stdout;
123   else {
124     fh = fopen(log_file, "a");
125     do_close = 1;
126   }
127
128   if (fh == NULL) {
129     char errbuf[1024];
130     fprintf(stderr, "logfile plugin: fopen (%s) failed: %s\n", log_file,
131             sstrerror(errno, errbuf, sizeof(errbuf)));
132   } else {
133     if (print_timestamp)
134       fprintf(fh, "[%s] %s%s\n", timestamp_str, level_str, msg);
135     else
136       fprintf(fh, "%s%s\n", level_str, msg);
137
138     if (do_close) {
139       fclose(fh);
140     } else {
141       fflush(fh);
142     }
143   }
144
145   pthread_mutex_unlock(&file_lock);
146
147   return;
148 } /* void logfile_print */
149
150 static void logfile_log(int severity, const char *msg,
151                         user_data_t __attribute__((unused)) * user_data) {
152   if (severity > log_level)
153     return;
154
155   logfile_print(msg, severity, cdtime());
156 } /* void logfile_log (int, const char *) */
157
158 static int logfile_notification(const notification_t *n,
159                                 user_data_t __attribute__((unused)) *
160                                     user_data) {
161   char buf[1024] = "";
162   char *buf_ptr = buf;
163   int buf_len = sizeof(buf);
164   int status;
165
166   status = snprintf(
167       buf_ptr, buf_len, "Notification: severity = %s",
168       (n->severity == NOTIF_FAILURE)
169           ? "FAILURE"
170           : ((n->severity == NOTIF_WARNING)
171                  ? "WARNING"
172                  : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")));
173   if (status > 0) {
174     buf_ptr += status;
175     buf_len -= status;
176   }
177
178 #define APPEND(bufptr, buflen, key, value)                                     \
179   if ((buflen > 0) && (strlen(value) > 0)) {                                   \
180     status = snprintf(bufptr, buflen, ", %s = %s", key, value);                \
181     if (status > 0) {                                                          \
182       bufptr += status;                                                        \
183       buflen -= status;                                                        \
184     }                                                                          \
185   }
186   APPEND(buf_ptr, buf_len, "host", n->host);
187   APPEND(buf_ptr, buf_len, "plugin", n->plugin);
188   APPEND(buf_ptr, buf_len, "plugin_instance", n->plugin_instance);
189   APPEND(buf_ptr, buf_len, "type", n->type);
190   APPEND(buf_ptr, buf_len, "type_instance", n->type_instance);
191   APPEND(buf_ptr, buf_len, "message", n->message);
192
193   buf[sizeof(buf) - 1] = '\0';
194
195   logfile_print(buf, LOG_INFO, (n->time != 0) ? n->time : cdtime());
196
197   return 0;
198 } /* int logfile_notification */
199
200 void module_register(void) {
201   plugin_register_config("logfile", logfile_config, config_keys,
202                          config_keys_num);
203   plugin_register_log("logfile", logfile_log, /* user_data = */ NULL);
204   plugin_register_notification("logfile", logfile_notification,
205                                /* user_data = */ NULL);
206 } /* void module_register (void) */