rebrandly-otel 0.1.5__tar.gz → 0.1.7__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.5 → rebrandly_otel-0.1.7}/PKG-INFO +1 -1
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/rebrandly_otel.egg-info/PKG-INFO +1 -1
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/setup.py +1 -1
- rebrandly_otel-0.1.7/src/__init__.py +17 -0
- rebrandly_otel-0.1.5/src/__init__.py +0 -14
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/LICENSE +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/README.md +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/rebrandly_otel.egg-info/top_level.txt +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/setup.cfg +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/src/logs.py +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/src/metrics.py +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/src/otel_utils.py +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/src/rebrandly_otel.py +0 -0
- {rebrandly_otel-0.1.5 → rebrandly_otel-0.1.7}/src/traces.py +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# src/__init__.py
|
|
2
|
+
from .rebrandly_otel import *
|
|
3
|
+
|
|
4
|
+
# Explicitly define what's available
|
|
5
|
+
__all__ = [
|
|
6
|
+
'otel',
|
|
7
|
+
'lambda_handler',
|
|
8
|
+
'span',
|
|
9
|
+
'aws_message_span',
|
|
10
|
+
'traces',
|
|
11
|
+
'tracer',
|
|
12
|
+
'metrics',
|
|
13
|
+
'logger',
|
|
14
|
+
'force_flush',
|
|
15
|
+
'aws_message_handler',
|
|
16
|
+
'shutdown'
|
|
17
|
+
]
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
# src/__init__.py
|
|
2
|
-
from .rebrandly_otel import *
|
|
3
|
-
from .logs import * # if you want to expose logs functions
|
|
4
|
-
from .metrics import * # if you want to expose metrics functions
|
|
5
|
-
from .traces import * # if you want to expose traces functions
|
|
6
|
-
|
|
7
|
-
# Explicitly define what's available
|
|
8
|
-
__all__ = [
|
|
9
|
-
'otel',
|
|
10
|
-
'lambda_handler',
|
|
11
|
-
'logger',
|
|
12
|
-
'force_flush',
|
|
13
|
-
# add any other functions/classes you want to expose
|
|
14
|
-
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|