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

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: fix remaining test problems 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
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 protobuf_dir = os.path.join(os.path.dirname(__file__), 'protobuf')
9 google.__path__.append(os.path.join(protobuf_dir, 'google'))
10 sys.path.insert(0, protobuf_dir)
11
12 from interface import send
13 from interface import flush
14
15 from monitoring import access_count
16 from monitoring import request_bytes
17 from monitoring import response_bytes
18 from monitoring import durations
19 from monitoring import response_status
20
21 from common.errors import MonitoringError
22 from common.errors import MonitoringDuplicateRegistrationError
23
24 from common.metrics import BooleanMetric
25 from common.metrics import CounterMetric
26 from common.metrics import CumulativeMetric
27 from common.metrics import DistributionMetric
28 from common.metrics import FloatMetric
29 from common.metrics import GaugeMetric
30 from common.metrics import StringMetric
31
32 from common.targets import TaskTarget
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698