2 * collectd - src/logfile.c
3 * Copyright (C) 2007 Sebastian Harl
4 * Copyright (C) 2007,2008 Florian Forster
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
25 * Sebastian Harl <sh at tokkee.org>
26 * Florian Forster <octo at collectd.org>
35 static int log_level = LOG_DEBUG;
37 static int log_level = LOG_INFO;
38 #endif /* COLLECT_DEBUG */
40 static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
42 static char *log_file = NULL;
43 static int print_timestamp = 1;
44 static int print_severity = 0;
46 static const char *config_keys[] = {"LogLevel", "File", "Timestamp",
48 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
50 static int logfile_config(const char *key, const char *value) {
51 if (0 == strcasecmp(key, "LogLevel")) {
52 log_level = parse_log_severity(value);
55 ERROR("logfile: invalid loglevel [%s] defaulting to 'info'", value);
58 } else if (0 == strcasecmp(key, "File")) {
60 log_file = strdup(value);
61 } else if (0 == strcasecmp(key, "Timestamp")) {
66 } else if (0 == strcasecmp(key, "PrintSeverity")) {
75 } /* int logfile_config (const char *, const char *) */
77 static void logfile_print(const char *msg, int severity,
78 cdtime_t timestamp_time) {
81 char timestamp_str[64];
82 char level_str[16] = "";
87 snprintf(level_str, sizeof(level_str), "[error] ");
90 snprintf(level_str, sizeof(level_str), "[warning] ");
93 snprintf(level_str, sizeof(level_str), "[notice] ");
96 snprintf(level_str, sizeof(level_str), "[info] ");
99 snprintf(level_str, sizeof(level_str), "[debug] ");
106 if (print_timestamp) {
107 struct tm timestamp_tm;
108 localtime_r(&CDTIME_T_TO_TIME_T(timestamp_time), ×tamp_tm);
110 strftime(timestamp_str, sizeof(timestamp_str), "%Y-%m-%d %H:%M:%S",
112 timestamp_str[sizeof(timestamp_str) - 1] = '\0';
115 pthread_mutex_lock(&file_lock);
117 if (log_file == NULL) {
119 } else if (strcasecmp(log_file, "stderr") == 0)
121 else if (strcasecmp(log_file, "stdout") == 0)
124 fh = fopen(log_file, "a");
130 fprintf(stderr, "logfile plugin: fopen (%s) failed: %s\n", log_file,
131 sstrerror(errno, errbuf, sizeof(errbuf)));
134 fprintf(fh, "[%s] %s%s\n", timestamp_str, level_str, msg);
136 fprintf(fh, "%s%s\n", level_str, msg);
145 pthread_mutex_unlock(&file_lock);
148 } /* void logfile_print */
150 static void logfile_log(int severity, const char *msg,
151 user_data_t __attribute__((unused)) * user_data) {
152 if (severity > log_level)
155 logfile_print(msg, severity, cdtime());
156 } /* void logfile_log (int, const char *) */
158 static int logfile_notification(const notification_t *n,
159 user_data_t __attribute__((unused)) *
163 int buf_len = sizeof(buf);
167 buf_ptr, buf_len, "Notification: severity = %s",
168 (n->severity == NOTIF_FAILURE)
170 : ((n->severity == NOTIF_WARNING)
172 : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")));
178 #define APPEND(bufptr, buflen, key, value) \
179 if ((buflen > 0) && (strlen(value) > 0)) { \
180 status = snprintf(bufptr, buflen, ", %s = %s", key, value); \
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);
193 buf[sizeof(buf) - 1] = '\0';
195 logfile_print(buf, LOG_INFO, (n->time != 0) ? n->time : cdtime());
198 } /* int logfile_notification */
200 void module_register(void) {
201 plugin_register_config("logfile", logfile_config, config_keys,
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) */