rebrandly-otel 0.2.16__tar.gz → 0.2.17__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.2.16 → rebrandly_otel-0.2.17}/PKG-INFO +10 -9
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/README.md +9 -8
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/PKG-INFO +10 -9
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/setup.py +1 -1
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/LICENSE +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/requires.txt +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/top_level.txt +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/setup.cfg +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/__init__.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/fastapi_support.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/flask_support.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/http_utils.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/logs.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/metrics.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/otel_utils.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/pymysql_instrumentation.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/rebrandly_otel.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/traces.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_decorators.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_fastapi_support.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_flask_support.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_metrics_and_logs.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_pymysql_instrumentation.py +0 -0
- {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_usage.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.17
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
5
|
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
@@ -51,14 +51,15 @@ pip install rebrandly-otel
|
|
|
51
51
|
|
|
52
52
|
The SDK is configured through environment variables:
|
|
53
53
|
|
|
54
|
-
| Variable | Description | Default
|
|
55
|
-
|
|
56
|
-
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python`
|
|
57
|
-
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0`
|
|
58
|
-
| `
|
|
59
|
-
| `
|
|
60
|
-
| `
|
|
61
|
-
| `
|
|
54
|
+
| Variable | Description | Default |
|
|
55
|
+
|------------------------------------|-------------|---------------------------------|
|
|
56
|
+
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python` |
|
|
57
|
+
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0` |
|
|
58
|
+
| `OTEL_SERVICE_APPLICATION` | Application namespace (groups multiple services under one application) | Fallback to `OTEL_SERVICE_NAME` |
|
|
59
|
+
| `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
|
|
60
|
+
| `OTEL_DEBUG` | Enable console debugging | `false` |
|
|
61
|
+
| `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
|
|
62
|
+
| `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
|
|
62
63
|
|
|
63
64
|
## Core Components
|
|
64
65
|
|
|
@@ -24,14 +24,15 @@ pip install rebrandly-otel
|
|
|
24
24
|
|
|
25
25
|
The SDK is configured through environment variables:
|
|
26
26
|
|
|
27
|
-
| Variable | Description | Default
|
|
28
|
-
|
|
29
|
-
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python`
|
|
30
|
-
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0`
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
-
| `
|
|
34
|
-
| `
|
|
27
|
+
| Variable | Description | Default |
|
|
28
|
+
|------------------------------------|-------------|---------------------------------|
|
|
29
|
+
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python` |
|
|
30
|
+
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0` |
|
|
31
|
+
| `OTEL_SERVICE_APPLICATION` | Application namespace (groups multiple services under one application) | Fallback to `OTEL_SERVICE_NAME` |
|
|
32
|
+
| `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
|
|
33
|
+
| `OTEL_DEBUG` | Enable console debugging | `false` |
|
|
34
|
+
| `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
|
|
35
|
+
| `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
|
|
35
36
|
|
|
36
37
|
## Core Components
|
|
37
38
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rebrandly_otel
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.17
|
|
4
4
|
Summary: Python OTEL wrapper by Rebrandly
|
|
5
5
|
Home-page: https://github.com/rebrandly/rebrandly-otel-python
|
|
6
6
|
Author: Antonio Romano
|
|
@@ -51,14 +51,15 @@ pip install rebrandly-otel
|
|
|
51
51
|
|
|
52
52
|
The SDK is configured through environment variables:
|
|
53
53
|
|
|
54
|
-
| Variable | Description | Default
|
|
55
|
-
|
|
56
|
-
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python`
|
|
57
|
-
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0`
|
|
58
|
-
| `
|
|
59
|
-
| `
|
|
60
|
-
| `
|
|
61
|
-
| `
|
|
54
|
+
| Variable | Description | Default |
|
|
55
|
+
|------------------------------------|-------------|---------------------------------|
|
|
56
|
+
| `OTEL_SERVICE_NAME` | Service identifier | `default-service-python` |
|
|
57
|
+
| `OTEL_SERVICE_VERSION` | Service version | `1.0.0` |
|
|
58
|
+
| `OTEL_SERVICE_APPLICATION` | Application namespace (groups multiple services under one application) | Fallback to `OTEL_SERVICE_NAME` |
|
|
59
|
+
| `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
|
|
60
|
+
| `OTEL_DEBUG` | Enable console debugging | `false` |
|
|
61
|
+
| `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
|
|
62
|
+
| `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
|
|
62
63
|
|
|
63
64
|
## Core Components
|
|
64
65
|
|
|
File without changes
|
|
File without changes
|
{rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/dependency_links.txt
RENAMED
|
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
|
|
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
|