2 * collectd - src/syslog.c
3 * Copyright (C) 2007 Florian Forster
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Florian Forster <octo at collectd.org>
37 static int log_level = LOG_DEBUG;
39 static int log_level = LOG_INFO;
40 #endif /* COLLECT_DEBUG */
41 static int notif_severity = 0;
43 static const char *config_keys[] = {
44 "LogLevel", "NotifyLevel",
46 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
48 static int sl_config(const char *key, const char *value) {
49 if (strcasecmp(key, "LogLevel") == 0) {
50 log_level = parse_log_severity(value);
53 ERROR("syslog: invalid loglevel [%s] defaulting to 'info'", value);
56 } else if (strcasecmp(key, "NotifyLevel") == 0) {
57 notif_severity = parse_notif_severity(value);
58 if (notif_severity < 0)
65 static void sl_log(int severity, const char *msg,
66 user_data_t __attribute__((unused)) * user_data) {
67 if (severity > log_level)
70 syslog(severity, "%s", msg);
73 static int sl_shutdown(void) {
79 static int sl_notification(const notification_t *n,
80 user_data_t __attribute__((unused)) * user_data) {
84 const char *severity_string;
87 if (n->severity > notif_severity)
90 switch (n->severity) {
92 severity_string = "FAILURE";
93 log_severity = LOG_ERR;
96 severity_string = "WARNING";
97 log_severity = LOG_WARNING;
100 severity_string = "OKAY";
101 log_severity = LOG_NOTICE;
104 severity_string = "UNKNOWN";
105 log_severity = LOG_ERR;
108 #define BUFFER_ADD(...) \
110 status = ssnprintf(&buf[offset], sizeof(buf) - offset, __VA_ARGS__); \
113 else if (((size_t)status) >= (sizeof(buf) - offset)) \
116 offset += ((size_t)status); \
119 #define BUFFER_ADD_FIELD(field) \
122 BUFFER_ADD(", " #field " = %s", n->field); \
125 BUFFER_ADD("Notification: severity = %s", severity_string);
126 BUFFER_ADD_FIELD(host);
127 BUFFER_ADD_FIELD(plugin);
128 BUFFER_ADD_FIELD(plugin_instance);
129 BUFFER_ADD_FIELD(type);
130 BUFFER_ADD_FIELD(type_instance);
131 BUFFER_ADD_FIELD(message);
133 #undef BUFFER_ADD_FIELD
136 buf[sizeof(buf) - 1] = '\0';
138 sl_log(log_severity, buf, NULL);
141 } /* int sl_notification */
143 void module_register(void) {
144 openlog("collectd", LOG_CONS | LOG_PID, LOG_DAEMON);
146 plugin_register_config("syslog", sl_config, config_keys, config_keys_num);
147 plugin_register_log("syslog", sl_log, /* user_data = */ NULL);
148 plugin_register_notification("syslog", sl_notification, NULL);
149 plugin_register_shutdown("syslog", sl_shutdown);
150 } /* void module_register(void) */