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

Side by Side Diff: client/third_party/infra_libs/ts_mon/common/metrics.py

Issue 2013943002: Changing license header, again! (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Created 4 years, 7 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # that can be found in the LICENSE file.
4 4
5 """Classes representing individual metrics that can be sent.""" 5 """Classes representing individual metrics that can be sent."""
6 6
7 import copy 7 import copy
8 import operator 8 import operator
9 import threading 9 import threading
10 import time 10 import time
11 11
12 from infra_libs.ts_mon.protos import metrics_pb2 12 from infra_libs.ts_mon.protos import metrics_pb2
13 13
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 description=None): 453 description=None):
454 super(NonCumulativeDistributionMetric, self).__init__( 454 super(NonCumulativeDistributionMetric, self).__init__(
455 name, 455 name,
456 is_cumulative=False, 456 is_cumulative=False,
457 bucketer=bucketer, 457 bucketer=bucketer,
458 fields=fields, 458 fields=fields,
459 description=description) 459 description=description)
460 460
461 def is_cumulative(self): 461 def is_cumulative(self):
462 return False 462 return False
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698