summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8e50128)
raw | patch | inline | side by side (parent: 8e50128)
author | Florian Forster <octo@huhu.verplant.org> | |
Fri, 26 Oct 2007 08:07:58 +0000 (10:07 +0200) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Fri, 26 Oct 2007 08:07:58 +0000 (10:07 +0200) |
src/collectd.conf.pod | patch | blob | history | |
src/logfile.c | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index dc9d8bc084d6636cd6be5953821e8503bf196f38..ab31e01afc673c7211713ef0dc54fa999e4912c8 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
channels, respectively. This, of course, only makes much sense when collectd is
running in foreground- or non-daemon-mode.
+=item B<Timestamp> B<true>|B<false>
+
+Prefix all lines printed by the current time. Defaults to B<true>.
+
=back
=head2 Plugin C<mbmon>
diff --git a/src/logfile.c b/src/logfile.c
index 102f12b3a9b7589a5d340fadc6f1ef43e89ae888..03c2f9233c0d4ac9b5e23a4f157bf2214e464555 100644 (file)
--- a/src/logfile.c
+++ b/src/logfile.c
static pthread_mutex_t file_lock = PTHREAD_MUTEX_INITIALIZER;
static char *log_file = NULL;
+static int print_timestamp = 1;
static const char *config_keys[] =
{
"LogLevel",
- "File"
+ "File",
+ "Timestamp"
};
static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
sfree (log_file);
log_file = strdup (value);
}
+ else if (0 == strcasecmp (key, "File")) {
+ if ((strcasecmp (value, "false") == 0)
+ || (strcasecmp (value, "no") == 0)
+ || (strcasecmp (value, "off") == 0))
+ print_timestamp = 0;
+ else
+ print_timestamp = 1;
+ }
else {
return -1;
}
{
FILE *fh;
int do_close = 0;
+ time_t timestamp_time;
+ struct tm timestamp_tm;
+ char timestamp_str[64];
if (severity > log_level)
return;
+ if (print_timestamp)
+ {
+ timestamp_time = time (NULL);
+ localtime_r (×tamp_time, ×tamp_tm);
+
+ strftime (timestamp_str, sizeof (timestamp_str), "%Y-%m-%d %H:%M:%S",
+ ×tamp_tm);
+ timestamp_str[sizeof (timestamp_str) - 1] = '\0';
+ }
+
pthread_mutex_lock (&file_lock);
if ((log_file == NULL) || (strcasecmp (log_file, "stderr") == 0))
}
else
{
- fprintf (fh, "%s\n", msg);
+ if (print_timestamp)
+ fprintf (fh, "[%s] %s\n", timestamp_str, msg);
+ else
+ fprintf (fh, "%s\n", msg);
+
if (do_close != 0)
fclose (fh);
}