aboutsummaryrefslogtreecommitdiff
path: root/lib/coverage.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2009-09-11 07:15:24 -0700
committerJustin Pettit <jpettit@nicira.com>2009-09-11 10:49:27 -0700
commit6bc995e46d64b90ef0b3186abec92f63eab2c2ad (patch)
tree95eda5378e4cdb72da2cbb5db1e92f4b334c4e60 /lib/coverage.c
parentb16fdafe572f4d91b480c2c84758c643a41376af (diff)
logging: Lower logging level for coverage messages due to slow poll loops
By default, many OVS processes keep track of their time through a poll loop. If it takes an unusually long time (measured as some distance from the mean), the processes will log stats it has been keeping about coverage. It was doing this at level WARN. On Xen systems, syslog messages written at level INFO and higher are written to /var/log/messages synchronously. This would mean that there would be dire messages that it took a few dozen milliseconds to go through the loop, meanwhile, it would take up to 6(!) seconds writing those. Meanwhile, the process would do no other processing, which could be quite serious in the case of a process such as ovs-vswitchd. This problem was somewhat masked because the time used by this logging was not used in the calculations for determining how long it was taking to get through the loop. This commit lowers the default log level for those coverage messages to INFO. On Xen systems, it raises the default level at which messages are written to syslog to WARN. Diagnosed and fixed with the help of Ian Campbell.
Diffstat (limited to 'lib/coverage.c')
-rw-r--r--lib/coverage.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/coverage.c b/lib/coverage.c
index ba5d68d8..cdc796ec 100644
--- a/lib/coverage.c
+++ b/lib/coverage.c
@@ -122,7 +122,10 @@ coverage_log_counter(enum vlog_level level, const struct coverage_counter *c)
}
/* Logs the coverage counters at the given vlog 'level'. If
- * 'suppress_dups' is true, then duplicate events are not displayed. */
+ * 'suppress_dups' is true, then duplicate events are not displayed.
+ * Care should be taken in the value used for 'level'. Depending on the
+ * configuration, syslog can write changes synchronously, which can
+ * cause the coverage messages to take several seconds to write. */
void
coverage_log(enum vlog_level level, bool suppress_dups)
{