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( | |
| 8 'predator/found_suspects', | |
| 9 description=('Metric monitoring ``found_suspects`` value of a ' | |
| 10 'crash analysis of Predator. This metric has fields like:' | |
|
wrengr
2016/11/23 22:04:55
Much better :)
The "crash analysis of Predator" p
Sharu Jiang
2016/11/23 23:59:47
My bad documenting... thanks for the advises!
| |
| 11 '{found_suspects: True/False,' | |
| 12 ' client_id: Cracas/Fracas/Clusterfuzz}')) | |
| 13 | |
| 14 has_regression_range = gae_ts_mon.CounterMetric( | |
| 15 'predator/has_regression_range', | |
| 16 description=('Metric monitoring ``has_regression_range`` value of a ' | |
| 17 'crash analysis of Predator. This metric has fields like:' | |
| 18 '{has_regression_range: True/False,' | |
| 19 ' client_id: Cracas/Fracas/Clusterfuzz}')) | |
| 20 | |
| 21 found_components = gae_ts_mon.CounterMetric( | |
| 22 'predator/found_components', | |
| 23 description=('Metric monitoring ``found_components`` value of a ' | |
| 24 'crash analysis of Predator. This metric has fields like:' | |
| 25 '{found_components: True/False,' | |
| 26 ' client_id: Cracas/Fracas/Clusterfuzz}')) | |
| OLD | NEW |