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>
34 #define DEFAULT_LOGFILE LOCALSTATEDIR "/log/collectd.log"
37 static int log_level = LOG_DEBUG;
39 static int log_level = LOG_INFO;
40 #endif /* COLLECT_DEBUG */
42 static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
44 static char *log_file = NULL;
45 static int print_timestamp = 1;
46 static int print_severity = 0;
48 static const char *config_keys[] = {"LogLevel", "File", "Timestamp",
50 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
52 static int logfile_config(const char *key, const char *value) {
53 if (0 == strcasecmp(key, "LogLevel")) {
54 log_level = parse_log_severity(value);
57 ERROR("logfile: invalid loglevel [%s] defaulting to 'info'", value);
60 } else if (0 == strcasecmp(key, "File")) {
62 log_file = strdup(value);
63 } else if (0 == strcasecmp(key, "Timestamp")) {
68 } else if (0 == strcasecmp(key, "PrintSeverity")) {
77 } /* int logfile_config (const char *, const char *) */
79 static void logfile_print(const char *msg, int severity,
80 cdtime_t timestamp_time) {
83 char timestamp_str[64];
84 char level_str[16] = "";
89 snprintf(level_str, sizeof(level_str), "[error] ");
92 snprintf(level_str, sizeof(level_str), "[warning] ");
95 snprintf(level_str, sizeof(level_str), "[notice] ");
98 snprintf(level_str, sizeof(level_str), "[info] ");
101 snprintf(level_str, sizeof(level_str), "[debug] ");
108 if (print_timestamp) {
109 struct tm timestamp_tm;
110 localtime_r(&CDTIME_T_TO_TIME_T(timestamp_time), ×tamp_tm);
112 strftime(timestamp_str, sizeof(timestamp_str), "%Y-%m-%d %H:%M:%S",
114 timestamp_str[sizeof(timestamp_str) - 1] = '\0';
117 pthread_mutex_lock(&file_lock);
119 if (log_file == NULL) {
120 fh = fopen(DEFAULT_LOGFILE, "a");
122 } else if (strcasecmp(log_file, "stderr") == 0)
124 else if (strcasecmp(log_file, "stdout") == 0)
127 fh = fopen(log_file, "a");
133 fprintf(stderr, "logfile plugin: fopen (%s) failed: %s\n",
134 (log_file == NULL) ? DEFAULT_LOGFILE : log_file,
135 sstrerror(errno, errbuf, sizeof(errbuf)));
138 fprintf(fh, "[%s] %s%s\n", timestamp_str, level_str, msg);
140 fprintf(fh, "%s%s\n", level_str, msg);
149 pthread_mutex_unlock(&file_lock);
152 } /* void logfile_print */
154 static void logfile_log(int severity, const char *msg,
155 user_data_t __attribute__((unused)) * user_data) {
156 if (severity > log_level)
159 logfile_print(msg, severity, cdtime());
160 } /* void logfile_log (int, const char *) */
162 static int logfile_notification(const notification_t *n,
163 user_data_t __attribute__((unused)) *
167 int buf_len = sizeof(buf);
171 buf_ptr, buf_len, "Notification: severity = %s",
172 (n->severity == NOTIF_FAILURE)
174 : ((n->severity == NOTIF_WARNING)
176 : ((n->severity == NOTIF_OKAY) ? "OKAY" : "UNKNOWN")));
182 #define APPEND(bufptr, buflen, key, value) \
183 if ((buflen > 0) && (strlen(value) > 0)) { \
184 status = ssnprintf(bufptr, buflen, ", %s = %s", key, value); \
190 APPEND(buf_ptr, buf_len, "host", n->host);
191 APPEND(buf_ptr, buf_len, "plugin", n->plugin);
192 APPEND(buf_ptr, buf_len, "plugin_instance", n->plugin_instance);
193 APPEND(buf_ptr, buf_len, "type", n->type);
194 APPEND(buf_ptr, buf_len, "type_instance", n->type_instance);
195 APPEND(buf_ptr, buf_len, "message", n->message);
197 buf[sizeof(buf) - 1] = '\0';
199 logfile_print(buf, LOG_INFO, (n->time != 0) ? n->time : cdtime());
202 } /* int logfile_notification */
204 void module_register(void) {
205 plugin_register_config("logfile", logfile_config, config_keys,
207 plugin_register_log("logfile", logfile_log, /* user_data = */ NULL);
208 plugin_register_notification("logfile", logfile_notification,
209 /* user_data = */ NULL);
210 } /* void module_register (void) */