| 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 = {}
|
|
|