Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import gae_ts_mon | |
| 6 | |
| 7 found_suspects = gae_ts_mon.CounterMetric( | |
|
stgao
2016/11/22 00:16:30
Could we make the names match the metrics?
Sharu Jiang
2016/11/22 01:24:16
Done.
| |
| 8 'predator/suspected_cls', | |
| 9 description='Predator detection of suspected cls of a crash.') | |
| 10 | |
| 11 has_regression_range = gae_ts_mon.CounterMetric( | |
| 12 'predator/regression_range', | |
| 13 description='Predator detection of regression range of a crash.') | |
| 14 | |
| 15 found_components = gae_ts_mon.CounterMetric( | |
| 16 'predator/suspected_components', | |
| 17 description='Predator detection of suspected components of a crash') | |
| OLD | NEW |