rebrandly-otel 0.1.8__tar.gz → 0.1.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rebrandly-otel might be problematic. Click here for more details.
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/PKG-INFO +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/rebrandly_otel.egg-info/PKG-INFO +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/setup.py +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/logs.py +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/metrics.py +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/rebrandly_otel.py +3 -3
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/traces.py +1 -1
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/LICENSE +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/README.md +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/rebrandly_otel.egg-info/top_level.txt +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/setup.cfg +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/__init__.py +0 -0
- {rebrandly_otel-0.1.8 → rebrandly_otel-0.1.9}/src/otel_utils.py +0 -0
|
@@ -11,7 +11,7 @@ from opentelemetry.sdk._logs.export import (
|
|
|
11
11
|
from opentelemetry.exporter.otlp.proto.grpc._log_exporter import OTLPLogExporter
|
|
12
12
|
from opentelemetry._logs import set_logger_provider
|
|
13
13
|
|
|
14
|
-
from otel_utils import *
|
|
14
|
+
from .otel_utils import *
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class RebrandlyLogger:
|
|
@@ -12,7 +12,7 @@ from opentelemetry.sdk.metrics.export import (PeriodicExportingMetricReader, Con
|
|
|
12
12
|
from opentelemetry.sdk.metrics._internal.aggregation import (ExplicitBucketHistogramAggregation)
|
|
13
13
|
from opentelemetry.sdk.metrics.view import View
|
|
14
14
|
|
|
15
|
-
from otel_utils import *
|
|
15
|
+
from .otel_utils import *
|
|
16
16
|
|
|
17
17
|
class MetricType(Enum):
|
|
18
18
|
"""Supported metric types."""
|
|
@@ -11,9 +11,9 @@ from opentelemetry.trace import Status, StatusCode, SpanKind
|
|
|
11
11
|
from typing import Optional, Dict, Any, Callable, TypeVar
|
|
12
12
|
from opentelemetry import baggage, propagate, context
|
|
13
13
|
|
|
14
|
-
from traces import RebrandlyTracer
|
|
15
|
-
from metrics import RebrandlyMeter
|
|
16
|
-
from logs import RebrandlyLogger
|
|
14
|
+
from .traces import RebrandlyTracer
|
|
15
|
+
from .metrics import RebrandlyMeter
|
|
16
|
+
from .logs import RebrandlyLogger
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
T = TypeVar('T')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|