A few more tiny documentation updates commited to the wrong branch. :)

This commit is contained in:
Seth Hall 2012-01-10 10:49:10 -05:00
parent 727e626bb4
commit 86a1cbca82
3 changed files with 6 additions and 7 deletions

View file

@ -17,7 +17,7 @@ export {
redef enum Notice::Type += {
## Report if the detected capture loss exceeds the percentage
## threshold
## threshold.
Too_Much_Loss
};

View file

@ -1,4 +1,4 @@
##!
##! Log the loaded scripts.
module LoadedScripts;

View file

@ -2,14 +2,13 @@
module Profiling;
## Set the profiling output file.
redef profiling_file = open_log_file("prof");
export {
## Cheap profiling every 15 seconds.
redef profiling_interval = 15 secs &redef;
}
## Set the cheap profiling interval.
redef profiling_interval = 15 secs;
# Expensive profiling every 5 minutes.
## Set the expensive profiling interval.
redef expensive_profiling_multiple = 20;
event bro_init()