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

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

Issue 2708113002: Revert of Add field_specs to all metrics in luci-py (Closed)
Patch Set: Created 3 years, 10 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 14bd9990eef633dfbe6a4f76da1f06e038e9aa6e..c3daafbaaf468949b766f93604394d37829756c8 100644
--- a/appengine/third_party/gae_ts_mon/shared.py
+++ b/appengine/third_party/gae_ts_mon/shared.py
@@ -22,20 +22,17 @@
appengine_default_version = metrics.StringMetric(
'appengine/default_version',
- 'Name of the version currently marked as default.',
- None)
+ description='Name of the version currently marked as default.')
started_counter = metrics.CounterMetric(
'appengine/instances/started',
- 'Count the number of GAE instance initializations.',
- None)
+ description='Count the number of GAE instance initializations.')
shutdown_counter = metrics.CounterMetric(
'appengine/instances/shutdown',
- 'Count the number of GAE instance shutdowns.',
- None)
+ description='Count the number of GAE instance shutdowns.')
expired_counter = metrics.CounterMetric(
'appengine/instances/expired',
- 'Count the number of GAE instance expirations due to inactivity.',
- None)
+ description=('Count the number of GAE instance expirations '
+ 'due to inactivity.'))
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