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

Side by Side Diff: appengine_module/gae_ts_mon/__init__.py

Issue 1260293009: make version of ts_mon compatible with appengine (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: add noncululativedistribution metric to ts_mon imports Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « appengine_module/gae_ts_mon/README ('k') | appengine_module/gae_ts_mon/common » ('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 2015 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 google # provided by GAE
6 import os
7 import sys
8
9 protobuf_dir = os.path.join(os.path.dirname(__file__), 'protobuf')
10 google.__path__.append(os.path.join(protobuf_dir, 'google'))
11 sys.path.insert(0, protobuf_dir)
12
13 from interface import send
14 from interface import flush
15
16 from monitoring import access_count
17 from monitoring import request_bytes
18 from monitoring import response_bytes
19 from monitoring import durations
20 from monitoring import response_status
21
22 from common.errors import MonitoringError
23 from common.errors import MonitoringDuplicateRegistrationError
24
25 from common.metrics import BooleanMetric
26 from common.metrics import CounterMetric
27 from common.metrics import CumulativeMetric
28 from common.metrics import DistributionMetric
29 from common.metrics import FloatMetric
30 from common.metrics import GaugeMetric
31 from common.metrics import StringMetric
32
33 from common.targets import TaskTarget
OLDNEW
« no previous file with comments | « appengine_module/gae_ts_mon/README ('k') | appengine_module/gae_ts_mon/common » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698