Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: tracing/tracing/metrics/system_health/long_tasks_metric.html

Issue 2134753002: [metrics] Change rangeOfInterest logic of all metrics to include extrema (Closed) Base URL: git@github.com:catapult-project/catapult.git@metric_range
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tracing/tracing/metrics/system_health/responsiveness_metric.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/metrics/system_health/long_tasks_metric.html
diff --git a/tracing/tracing/metrics/system_health/long_tasks_metric.html b/tracing/tracing/metrics/system_health/long_tasks_metric.html
index 8bbf186030fea1e837b37f45300b32fe4172141d..77a8c77a0d8de509e5a679329cd5096881ba5f7f 100644
--- a/tracing/tracing/metrics/system_health/long_tasks_metric.html
+++ b/tracing/tracing/metrics/system_health/long_tasks_metric.html
@@ -36,7 +36,7 @@ tr.exportTo('tr.metrics.sh', function() {
thread, opt_range, cb, opt_this) {
thread.sliceGroup.topLevelSlices.forEach(function(slice) {
if (opt_range &&
- !opt_range.intersectsExplicitRangeExclusive(slice.start, slice.end))
+ !opt_range.intersectsExplicitRangeInclusive(slice.start, slice.end))
return;
if (slice.duration < LONG_TASK_MS)
« no previous file with comments | « no previous file | tracing/tracing/metrics/system_health/responsiveness_metric.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698