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.

Files changed (26) hide show
  1. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/PKG-INFO +10 -9
  2. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/README.md +9 -8
  3. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/PKG-INFO +10 -9
  4. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/setup.py +1 -1
  5. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/LICENSE +0 -0
  6. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/SOURCES.txt +0 -0
  7. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/dependency_links.txt +0 -0
  8. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/requires.txt +0 -0
  9. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/rebrandly_otel.egg-info/top_level.txt +0 -0
  10. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/setup.cfg +0 -0
  11. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/__init__.py +0 -0
  12. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/fastapi_support.py +0 -0
  13. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/flask_support.py +0 -0
  14. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/http_utils.py +0 -0
  15. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/logs.py +0 -0
  16. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/metrics.py +0 -0
  17. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/otel_utils.py +0 -0
  18. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/pymysql_instrumentation.py +0 -0
  19. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/rebrandly_otel.py +0 -0
  20. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/src/traces.py +0 -0
  21. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_decorators.py +0 -0
  22. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_fastapi_support.py +0 -0
  23. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_flask_support.py +0 -0
  24. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_metrics_and_logs.py +0 -0
  25. {rebrandly_otel-0.2.16 → rebrandly_otel-0.2.17}/tests/test_pymysql_instrumentation.py +0 -0
  26. {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.16
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
- | `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
59
- | `OTEL_DEBUG` | Enable console debugging | `false` |
60
- | `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
61
- | `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
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
- | `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
32
- | `OTEL_DEBUG` | Enable console debugging | `false` |
33
- | `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
34
- | `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
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.16
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
- | `OTEL_EXPORTER_OTLP_ENDPOINT` | OTLP collector endpoint | `None` |
59
- | `OTEL_DEBUG` | Enable console debugging | `false` |
60
- | `BATCH_EXPORT_TIME_MILLIS` | Batch export interval | `100` |
61
- | `ENV` or `ENVIRONMENT` or `NODE_ENV` | Deployment environment | `local` |
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
 
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="rebrandly_otel",
8
- version="0.2.16",
8
+ version="0.2.17",
9
9
  author="Antonio Romano",
10
10
  author_email="antonio@rebrandly.com",
11
11
  description="Python OTEL wrapper by Rebrandly",
File without changes