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

Side by Side Diff: tracing/tracing/metrics/system_health/system_health_metrics.html

Issue 1730313007: Metric-ify SystemHealth metrics (Closed) Base URL: https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git@master
Patch Set: rebase Created 4 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7
8 <link rel="import" href="/tracing/metrics/system_health/efficiency_metric.html">
9 <link rel="import"
10 href="/tracing/metrics/system_health/responsiveness_metric.html">
11
12 <script>
13 'use strict';
14
15 tr.exportTo('tr.metrics.sh', function() {
16 function SystemHealthMetrics(valueList, model) {
17 tr.metrics.sh.ResponsivenessMetric(valueList, model);
18 tr.metrics.sh.EfficiencyMetric(valueList, model);
19 }
20
21 tr.metrics.MetricRegistry.register(SystemHealthMetrics);
22
23 return {
24 SystemHealthMetrics: SystemHealthMetrics
25 };
26 });
27 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698