diff options
Diffstat (limited to 'config/config.py')
-rw-r--r-- | config/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/config.py b/config/config.py index b631aa2..5e6f9e3 100644 --- a/config/config.py +++ b/config/config.py | |||
@@ -56,3 +56,7 @@ OVH_ALL_EVENTS = ["%s_%s" % (e, t) for (e,t) in | |||
56 | OVH_ALL_EVENTS += ['RELEASE_LATENCY'] | 56 | OVH_ALL_EVENTS += ['RELEASE_LATENCY'] |
57 | # This event doesn't have a START and END | 57 | # This event doesn't have a START and END |
58 | OVH_BASE_EVENTS += ['RELEASE_LATENCY'] | 58 | OVH_BASE_EVENTS += ['RELEASE_LATENCY'] |
59 | |||
60 | # If a task is missing more than this many records, its measurements | ||
61 | # are not included in sched_trace summaries | ||
62 | MAX_RECORD_LOSS = .2 | ||