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

Side by Side Diff: appengine/findit/crash/monitoring.py

Issue 2514413003: [Predator] Monitor found_suspects, has_regression_range and found_components using ts_mon (Closed)
Patch Set: Update names of metrics. Created 4 years, 1 month 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
« no previous file with comments | « appengine/findit/crash/crash_pipeline.py ('k') | appengine/findit/crash/test/crash_testcase.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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='Predator detection of suspected cls of a crash.')
wrengr 2016/11/22 19:34:18 I'm not sure what exactly ts_mon stores, but these
Sharu Jiang 2016/11/22 22:15:51 You are right, I changed the description to be mor
10
11 has_regression_range = gae_ts_mon.CounterMetric(
12 'predator/has_regression_range',
13 description='Predator detection of regression range of a crash.')
14
15 found_components = gae_ts_mon.CounterMetric(
16 'predator/found_components',
17 description='Predator detection of suspected components of a crash')
OLDNEW
« no previous file with comments | « appengine/findit/crash/crash_pipeline.py ('k') | appengine/findit/crash/test/crash_testcase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698