forked from open-telemetry/opentelemetry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
247 lines (206 loc) · 6.98 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
# Copyright 2019, OpenTelemetry Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from typing import Sequence, Tuple, Type
from opentelemetry import metrics as metrics_api
logger = logging.getLogger(__name__)
class BaseHandle:
def __init__(
self,
value_type: Type[metrics_api.ValueT],
enabled: bool,
monotonic: bool,
):
self.data = value_type()
self.value_type = value_type
self.enabled = enabled
self.monotonic = monotonic
def _validate_update(self, value: metrics_api.ValueT) -> bool:
if not self.enabled:
return False
if not isinstance(value, self.value_type):
logger.warning(
"Invalid value passed for %s.", self.value_type.__name__
)
return False
return True
class CounterHandle(metrics_api.CounterHandle, BaseHandle):
def update(self, value: metrics_api.ValueT) -> None:
if self._validate_update(value):
if self.monotonic and value < 0:
logger.warning("Monotonic counter cannot descend.")
return
self.data += value
def add(self, value: metrics_api.ValueT) -> None:
"""See `opentelemetry.metrics.CounterHandle._add`."""
self.update(value)
class GaugeHandle(metrics_api.GaugeHandle, BaseHandle):
def update(self, value: metrics_api.ValueT) -> None:
if self._validate_update(value):
if self.monotonic and value < self.data:
logger.warning("Monotonic gauge cannot descend.")
return
self.data = value
def set(self, value: metrics_api.ValueT) -> None:
"""See `opentelemetry.metrics.GaugeHandle._set`."""
self.update(value)
class MeasureHandle(metrics_api.MeasureHandle, BaseHandle):
def update(self, value: metrics_api.ValueT) -> None:
if self._validate_update(value):
if self.monotonic and value < 0:
logger.warning("Monotonic measure cannot accept negatives.")
return
# TODO: record
def record(self, value: metrics_api.ValueT) -> None:
"""See `opentelemetry.metrics.MeasureHandle._record`."""
self.update(value)
class Metric(metrics_api.Metric):
"""See `opentelemetry.metrics.Metric`."""
HANDLE_TYPE = BaseHandle
def __init__(
self,
name: str,
description: str,
unit: str,
value_type: Type[metrics_api.ValueT],
label_keys: Sequence[str] = None,
enabled: bool = True,
monotonic: bool = False,
):
self.name = name
self.description = description
self.unit = unit
self.value_type = value_type
self.label_keys = label_keys
self.enabled = enabled
self.monotonic = monotonic
self.handles = {}
def get_handle(self, label_values: Sequence[str]) -> BaseHandle:
"""See `opentelemetry.metrics.Metric.get_handle`."""
handle = self.handles.get(label_values)
if not handle:
handle = self.HANDLE_TYPE(
self.value_type, self.enabled, self.monotonic
)
self.handles[label_values] = handle
return handle
class Counter(Metric):
"""See `opentelemetry.metrics.Counter`.
By default, counter values can only go up (monotonic). Negative inputs
will be discarded for monotonic counter metrics. Counter metrics that
have a monotonic option set to False allows negative inputs.
"""
HANDLE_TYPE = CounterHandle
def __init__(
self,
name: str,
description: str,
unit: str,
value_type: Type[metrics_api.ValueT],
label_keys: Sequence[str] = None,
enabled: bool = True,
monotonic: bool = True,
):
super().__init__(
name,
description,
unit,
value_type,
label_keys=label_keys,
enabled=enabled,
monotonic=monotonic,
)
class Gauge(Metric):
"""See `opentelemetry.metrics.Gauge`.
By default, gauge values can go both up and down (non-monotonic).
Negative inputs will be discarded for monotonic gauge metrics.
"""
HANDLE_TYPE = GaugeHandle
def __init__(
self,
name: str,
description: str,
unit: str,
value_type: Type[metrics_api.ValueT],
label_keys: Sequence[str] = None,
enabled: bool = True,
monotonic: bool = False,
):
super().__init__(
name,
description,
unit,
value_type,
label_keys=label_keys,
enabled=enabled,
monotonic=monotonic,
)
class Measure(Metric):
"""See `opentelemetry.metrics.Measure`.
By default, measure metrics can accept both positive and negatives.
Negative inputs will be discarded when monotonic is True.
"""
HANDLE_TYPE = MeasureHandle
def __init__(
self,
name: str,
description: str,
unit: str,
value_type: Type[metrics_api.ValueT],
label_keys: Sequence[str] = None,
enabled: bool = False,
monotonic: bool = False,
):
super().__init__(
name,
description,
unit,
value_type,
label_keys=label_keys,
enabled=enabled,
monotonic=monotonic,
)
class Meter(metrics_api.Meter):
"""See `opentelemetry.metrics.Meter`."""
def record_batch(
self,
label_values: Sequence[str],
record_tuples: Sequence[Tuple[metrics_api.Metric, metrics_api.ValueT]],
) -> None:
"""See `opentelemetry.metrics.Meter.record_batch`."""
for metric, value in record_tuples:
metric.get_handle(label_values).update(value)
def create_metric(
self,
name: str,
description: str,
unit: str,
value_type: Type[metrics_api.ValueT],
metric_type: Type[metrics_api.MetricT],
label_keys: Sequence[str] = None,
enabled: bool = True,
monotonic: bool = False,
) -> metrics_api.MetricT:
"""See `opentelemetry.metrics.Meter.create_metric`."""
# Ignore type b/c of mypy bug in addition to missing annotations
return metric_type( # type: ignore
name,
description,
unit,
value_type,
label_keys=label_keys,
enabled=enabled,
monotonic=monotonic,
)
meter = Meter()