Chromium Code Reviews| Index: infra_libs/ts_mon/common/interface.py |
| diff --git a/infra_libs/ts_mon/common/interface.py b/infra_libs/ts_mon/common/interface.py |
| index 61232e2e93dcd435aaef03ed293a0117feeeb465..62c28f0e1c54be290a2d2e2251e8825f473a34cf 100644 |
| --- a/infra_libs/ts_mon/common/interface.py |
| +++ b/infra_libs/ts_mon/common/interface.py |
| @@ -77,6 +77,8 @@ class State(object): |
| self.store = store_ctor(self) |
| # Cached time of the last flush. Useful mostly in AppEngine apps. |
| self.last_flushed = datetime.datetime.utcfromtimestamp(0) |
| + # Metric name prefix |
| + self.metric_name_prefix = '/chrome/infra' |
|
Sergey Berezin
2016/07/06 17:49:12
'/chrome/infra/' (trailing slash). This may or may
|
| def reset_for_unittest(self): |
| self.metrics = {} |