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

Unified Diff: infra_libs/ts_mon/gae/__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: clean up code 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 side-by-side diff with in-line comments
Download patch
Index: infra_libs/ts_mon/gae/__init__.py
diff --git a/infra_libs/ts_mon/gae/__init__.py b/infra_libs/ts_mon/gae/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..db8354deda2d643293f7ad3c05957feb4d0de157
--- /dev/null
+++ b/infra_libs/ts_mon/gae/__init__.py
@@ -0,0 +1,24 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
agable 2015/08/10 22:23:58 Name this internal directory "common", rather than
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+#pylint: skip-file
+
agable 2015/08/10 23:04:39 Actually, though, the contents of this file should
+from distribution import Distribution
+from distribution import FixedWidthBucketer
+from distribution import GeometricBucketer
+
+from errors import MonitoringError
+from errors import MonitoringDecreasingValueError
+from errors import MonitoringDuplicateRegistrationError
+from errors import MonitoringIncrementUnsetValueError
+from errors import MonitoringInvalidFieldTypeError
+from errors import MonitoringInvalidValueTypeError
+from errors import MonitoringTooManyFieldsError
+from errors import MonitoringNoConfiguredMonitorError
+from errors import MonitoringNoConfiguredTargetError
+
+from helpers import ScopedIncrementCounter
+
+from targets import DeviceTarget
+from targets import TaskTarget

Powered by Google App Engine
This is Rietveld 408576698