Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Complete metric exporter format and update OTLP exporter #2364

Merged
merged 3 commits into from
Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#2312](https://github.com/open-telemetry/opentelemetry-python/pull/2312))
- [exporter/opentelemetry-exporter-otlp-proto-grpc] Add OTLPMetricExporter
([#2323](https://github.com/open-telemetry/opentelemetry-python/pull/2323))
- Complete metric exporter format and update OTLP exporter
([#2364](https://github.com/open-telemetry/opentelemetry-python/pull/2364))

## [1.8.0-0.27b0](https://github.com/open-telemetry/opentelemetry-python/releases/tag/v1.8.0-0.27b0) - 2021-12-17

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
from opentelemetry.sdk.environment_variables import (
OTEL_EXPORTER_OTLP_METRICS_INSECURE,
)
from opentelemetry.sdk._metrics.data import (
MetricData,
from opentelemetry.sdk._metrics.point import (
Metric,
)

from opentelemetry.sdk._metrics.export import (
Expand All @@ -45,9 +45,7 @@

class OTLPMetricExporter(
MetricExporter,
OTLPExporterMixin[
MetricData, ExportMetricsServiceRequest, MetricExportResult
],
OTLPExporterMixin[Metric, ExportMetricsServiceRequest, MetricExportResult],
):
_result = MetricExportResult
_stub = MetricsServiceStub
Expand Down Expand Up @@ -79,13 +77,13 @@ def __init__(
)

def _translate_data(
self, data: Sequence[MetricData]
self, data: Sequence[Metric]
) -> ExportMetricsServiceRequest:
sdk_resource_instrumentation_library_metrics = {}
self._collector_metric_kwargs = {}

for metric_data in data:
resource = metric_data.metric.resource
for metric in data:
resource = metric.resource
instrumentation_library_map = (
sdk_resource_instrumentation_library_metrics.get(resource, {})
)
Expand All @@ -95,26 +93,26 @@ def _translate_data(
] = instrumentation_library_map

instrumentation_library_metrics = instrumentation_library_map.get(
metric_data.instrumentation_info
metric.instrumentation_info
)

if not instrumentation_library_metrics:
if metric_data.instrumentation_info is not None:
if metric.instrumentation_info is not None:
instrumentation_library_map[
metric_data.instrumentation_info
metric.instrumentation_info
] = InstrumentationLibraryMetrics(
instrumentation_library=InstrumentationLibrary(
name=metric_data.instrumentation_info.name,
version=metric_data.instrumentation_info.version,
name=metric.instrumentation_info.name,
version=metric.instrumentation_info.version,
)
)
else:
instrumentation_library_map[
metric_data.instrumentation_info
metric.instrumentation_info
] = InstrumentationLibraryMetrics()

instrumentation_library_metrics = instrumentation_library_map.get(
metric_data.instrumentation_info
metric.instrumentation_info
)

instrumentation_library_metrics.metrics.append(
Expand All @@ -128,7 +126,8 @@ def _translate_data(
)
)

def export(self, metrics: Sequence[MetricData]) -> MetricExportResult:
def export(self, metrics: Sequence[Metric]) -> MetricExportResult:
print("Got metrics!!!\n", metrics)
aabmass marked this conversation as resolved.
Show resolved Hide resolved
return self._export(metrics)

def shutdown(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@
MetricsServiceServicer,
add_MetricsServiceServicer_to_server,
)
from opentelemetry.sdk._metrics.data import Metric, MetricData
from opentelemetry.sdk._metrics.export import MetricExportResult
from opentelemetry.sdk._metrics.point import (
AggregationTemporality,
Metric,
Sum,
)
from opentelemetry.sdk.environment_variables import (
OTEL_EXPORTER_OTLP_METRICS_INSECURE,
)
Expand Down Expand Up @@ -96,13 +100,22 @@ def setUp(self):

self.server.start()

self.metric_data_1 = MetricData(
metric=Metric(
resource=SDKResource({"key": "value"}),
),
self.metric_data_1 = Metric(
resource=SDKResource({"key": "value"}),
instrumentation_info=InstrumentationInfo(
"first_name", "first_version"
),
attributes={},
description="foo",
name="foometric",
unit="s",
point=Sum(
aggregation_temporality=AggregationTemporality.CUMULATIVE,
is_monotonic=True,
start_time_unix_nano=1641946015139533244,
time_unix_nano=1641946016139533244,
value=33,
),
)

def tearDown(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,21 @@

from abc import ABC, abstractmethod
from collections import OrderedDict
from enum import IntEnum
from logging import getLogger
from math import inf
from threading import Lock
from typing import Generic, Optional, Sequence, TypeVar

from opentelemetry.sdk._metrics.measurement import Measurement
from opentelemetry.sdk._metrics.point import Gauge, Histogram, PointT, Sum
from opentelemetry.sdk._metrics.point import (
AggregationTemporality,
Gauge,
Histogram,
PointT,
Sum,
)
from opentelemetry.util._time import _time_ns


class AggregationTemporality(IntEnum):
UNSPECIFIED = 0
DELTA = 1
CUMULATIVE = 2


_PointVarT = TypeVar("_PointVarT", bound=PointT)

_logger = getLogger(__name__)
Expand Down
35 changes: 0 additions & 35 deletions opentelemetry-sdk/src/opentelemetry/sdk/_metrics/data.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from sys import stdout
from typing import IO, Callable, Sequence

from opentelemetry.sdk._metrics.data import Metric, MetricData
from opentelemetry.sdk._metrics.point import Metric


class MetricExportResult(Enum):
Expand All @@ -33,7 +33,8 @@ class MetricExporter(ABC):
in their own format.
"""

def export(self, metrics: Sequence[MetricData]) -> "MetricExportResult":
@abstractmethod
def export(self, metrics: Sequence[Metric]) -> "MetricExportResult":
"""Exports a batch of telemetry data.

Args:
Expand Down Expand Up @@ -68,9 +69,9 @@ def __init__(
self.out = out
self.formatter = formatter

def export(self, metrics: Sequence[MetricData]) -> MetricExportResult:
for data in metrics:
self.out.write(self.formatter(data.metric))
def export(self, metrics: Sequence[Metric]) -> MetricExportResult:
for metric in metrics:
self.out.write(self.formatter(metric))
self.out.flush()
return MetricExportResult.SUCCESS

Expand Down
40 changes: 37 additions & 3 deletions opentelemetry-sdk/src/opentelemetry/sdk/_metrics/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,27 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from dataclasses import dataclass
import json
from dataclasses import asdict, dataclass
from enum import IntEnum
from typing import Sequence, Union

from opentelemetry.sdk.resources import Attributes, Resource
aabmass marked this conversation as resolved.
Show resolved Hide resolved
from opentelemetry.sdk.util.instrumentation import InstrumentationInfo


class AggregationTemporality(IntEnum):
UNSPECIFIED = 0
DELTA = 1
CUMULATIVE = 2


@dataclass(frozen=True)
class Sum:
start_time_unix_nano: int
time_unix_nano: int
value: Union[int, float]
aggregation_temporality: int
aggregation_temporality: AggregationTemporality
is_monotonic: bool


Expand All @@ -37,7 +48,30 @@ class Histogram:
time_unix_nano: int
bucket_counts: Sequence[int]
explicit_bounds: Sequence[float]
aggregation_temporality: int
aggregation_temporality: AggregationTemporality


PointT = Union[Sum, Gauge, Histogram]


@dataclass(frozen=True)
class Metric:
"""Represents a metric point in the OpenTelemetry data model to be exported

Concrete metric types contain all the information as in the OTLP proto definitions
(https://tinyurl.com/7h6yx24v) but are flattened as much as possible.
"""

# common fields to all metric kinds
attributes: Attributes
description: str
instrumentation_info: InstrumentationInfo
name: str
resource: Resource
unit: str

point: PointT
"""Contains non-common fields for the given metric"""

def to_json(self) -> str:
raise NotImplementedError()