| Index: tracing/tracing/metrics/system_health/system_health_metrics.html
|
| diff --git a/tracing/tracing/metrics/system_health/system_health_metrics.html b/tracing/tracing/metrics/system_health/system_health_metrics.html
|
| index 9273f7d4f43cdf2dcedaa5a29d39cae9d7057498..46adc1e63333edae55730a83d23c1d09e7fd8445 100644
|
| --- a/tracing/tracing/metrics/system_health/system_health_metrics.html
|
| +++ b/tracing/tracing/metrics/system_health/system_health_metrics.html
|
| @@ -15,17 +15,17 @@ found in the LICENSE file.
|
| 'use strict';
|
|
|
| tr.exportTo('tr.metrics.sh', function() {
|
| - function SystemHealthMetrics(values, model) {
|
| + function systemHealthMetrics(values, model) {
|
| tr.metrics.sh.responsivenessMetric(values, model);
|
| - tr.metrics.sh.EfficiencyMetric(values, model);
|
| + tr.metrics.sh.efficiencyMetric(values, model);
|
| tr.metrics.sh.hazardMetric(values, model);
|
| - tr.metrics.sh.PowerMetric(values, model);
|
| + tr.metrics.sh.powerMetric(values, model);
|
| }
|
|
|
| - tr.metrics.MetricRegistry.register(SystemHealthMetrics);
|
| + tr.metrics.MetricRegistry.register(systemHealthMetrics);
|
|
|
| return {
|
| - SystemHealthMetrics: SystemHealthMetrics
|
| + systemHealthMetrics: systemHealthMetrics
|
| };
|
| });
|
| </script>
|
|
|