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

Unified Diff: appengine/third_party/gae_ts_mon/shared.py

Issue 2705273003: Roll infra_libs and gae_ts_mon in luci-py, and add field_specs to all metrics (Closed)
Patch Set: Rebase Created 3 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 side-by-side diff with in-line comments
Download patch
Index: appengine/third_party/gae_ts_mon/shared.py
diff --git a/appengine/third_party/gae_ts_mon/shared.py b/appengine/third_party/gae_ts_mon/shared.py
index c3daafbaaf468949b766f93604394d37829756c8..14bd9990eef633dfbe6a4f76da1f06e038e9aa6e 100644
--- a/appengine/third_party/gae_ts_mon/shared.py
+++ b/appengine/third_party/gae_ts_mon/shared.py
@@ -22,17 +22,20 @@ INTERNAL_CALLBACK_NAME = '__gae_ts_mon_callback'
appengine_default_version = metrics.StringMetric(
'appengine/default_version',
- description='Name of the version currently marked as default.')
+ 'Name of the version currently marked as default.',
+ None)
started_counter = metrics.CounterMetric(
'appengine/instances/started',
- description='Count the number of GAE instance initializations.')
+ 'Count the number of GAE instance initializations.',
+ None)
shutdown_counter = metrics.CounterMetric(
'appengine/instances/shutdown',
- description='Count the number of GAE instance shutdowns.')
+ 'Count the number of GAE instance shutdowns.',
+ None)
expired_counter = metrics.CounterMetric(
'appengine/instances/expired',
- description=('Count the number of GAE instance expirations '
- 'due to inactivity.'))
+ 'Count the number of GAE instance expirations due to inactivity.',
+ None)
global_metrics = {}
« no previous file with comments | « appengine/third_party/gae_ts_mon/config.py ('k') | client/third_party/infra_libs/event_mon/protos/goma_stats_pb2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698