X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvlib%2Flog.c;h=76490fcd3bcb41dbc3a251f23d1f08cdef0cd119;hb=e21463d87979a49720bf1eb1744f01261ffea620;hp=1160c04a16d67676198b132e8e933e91b471fffe;hpb=526ea3e1286d11c9319b53812756fe9a9eb44edf;p=vpp.git diff --git a/src/vlib/log.c b/src/vlib/log.c index 1160c04a16d..76490fcd3bc 100644 --- a/src/vlib/log.c +++ b/src/vlib/log.c @@ -62,6 +62,11 @@ typedef struct int default_syslog_log_level; int unthrottle_time; u32 indent; + + /* time zero */ + struct timeval time_zero_timeval; + f64 time_zero; + } vlib_log_main_t; vlib_log_main_t log_main = { @@ -142,6 +147,7 @@ vlib_log (vlib_log_level_t level, vlib_log_class_t class, char *fmt, ...) u8 *s = 0; bool use_formatted_log_entry = true; + vec_validate (lm->entries, lm->size); /* make sure we are running on the main thread to avoid use in dataplane code, for dataplane logging consider use of event-logger */ ASSERT (vlib_get_thread_index () == 0); @@ -198,8 +204,9 @@ syslog: if (use_formatted_log_entry) { syslog (vlib_log_level_to_syslog_priority (level), "%.*s: %.*s", - vec_len (tmp), tmp, - vec_len (s) - (vec_c_string_is_terminated (s) ? 1 : 0), s); + (int) vec_len (tmp), tmp, + (int) (vec_len (s) - + (vec_c_string_is_terminated (s) ? 1 : 0)), s); } else { @@ -208,8 +215,8 @@ syslog: tmp = va_format (tmp, fmt, &va); va_end (va); syslog (vlib_log_level_to_syslog_priority (level), "%.*s", - vec_len (tmp) - (vec_c_string_is_terminated (tmp) ? 1 : 0), - tmp); + (int) (vec_len (tmp) - + (vec_c_string_is_terminated (tmp) ? 1 : 0)), tmp); } vec_free (tmp); } @@ -274,6 +281,10 @@ static clib_error_t * vlib_log_init (vlib_main_t * vm) { vlib_log_main_t *lm = &log_main; + + gettimeofday (&lm->time_zero_timeval, 0); + lm->time_zero = vlib_time_now (vm); + vec_validate (lm->entries, lm->size); lm->log_class = vlib_log_register_class ("log", 0); u8 *tmp = format (NULL, "%U %-10U %-10U ", format_time_float, 0, (f64) 0, @@ -295,12 +306,16 @@ show_log (vlib_main_t * vm, vlib_log_entry_t *e; int i = last_log_entry (); int count = lm->count; + f64 time_offset; + + time_offset = (f64) lm->time_zero_timeval.tv_sec + + (((f64) lm->time_zero_timeval.tv_usec) * 1e-6) - lm->time_zero; while (count--) { e = vec_elt_at_index (lm->entries, i); vlib_cli_output (vm, "%U %-10U %-10U %v", - format_time_float, 0, e->timestamp, + format_time_float, 0, e->timestamp + time_offset, format_vlib_log_level, e->level, format_vlib_log_class, e->class, e->string); i = (i + 1) % lm->size; @@ -338,18 +353,21 @@ show_log_config (vlib_main_t * vm, vlib_cli_output (vm, "%-22s %-14s %-14s %s", "Class/Subclass", "Level", "Syslog Level", "Rate Limit"); + + u8 *defstr = format (0, "default"); vec_foreach (c, lm->classes) { - vlib_cli_output (vm, "%s", c->name); + vlib_cli_output (vm, "%v", c->name); vec_foreach (sc, c->subclasses) { - vlib_cli_output (vm, " %-20s %-14U %-14U %d", - sc->name ? (char *) sc->name : "default", + vlib_cli_output (vm, " %-20v %-14U %-14U %d", + sc->name ? sc->name : defstr, format_vlib_log_level, sc->level, format_vlib_log_level, sc->syslog_level, sc->rate_limit); } } + vec_free (defstr); return error; }