otlp-test-data 0.10.0__tar.gz → 0.11.1__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.
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/PKG-INFO +3 -1
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/otlp_test_data/__init__.py +4 -4
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/pyproject.toml +6 -1
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/.github/workflows/ci.yaml +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/.github/workflows/psr.yaml +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/.gitignore +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/.pre-commit-config.yaml +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/changelog.md +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/py.typed +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/readme.md +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/test/test_repeatable.py +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/test/test_smoke.py +0 -0
- {otlp_test_data-0.10.0 → otlp_test_data-0.11.1}/uv.lock +0 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: otlp-test-data
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Summary: Produces OTLP data using OTEL instrumentation
|
|
5
|
+
Project-URL: Repository, https://github.com/dimaqq/otlp-test-data
|
|
6
|
+
Project-URL: Issues, https://github.com/dimaqq/otlp-test-data/issues
|
|
5
7
|
Classifier: Development Status :: 3 - Alpha
|
|
6
8
|
Classifier: Framework :: OpenTelemetry
|
|
7
9
|
Classifier: Framework :: OpenTelemetry :: Exporters
|
|
@@ -110,10 +110,10 @@ def _proto_to_json(data: Message) -> bytes:
|
|
|
110
110
|
|
|
111
111
|
def workload():
|
|
112
112
|
series_of_spans()
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
113
|
+
nested_spans()
|
|
114
|
+
attribute_types()
|
|
115
|
+
repeated_attributes()
|
|
116
|
+
events()
|
|
117
117
|
|
|
118
118
|
|
|
119
119
|
def series_of_spans():
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "otlp-test-data"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.11.1"
|
|
4
4
|
description = "Produces OTLP data using OTEL instrumentation"
|
|
5
5
|
requires-python = ">=3.8"
|
|
6
6
|
# https://github.com/astral-sh/uv/issues/4204
|
|
@@ -39,6 +39,10 @@ dependencies = [
|
|
|
39
39
|
"grpcio >= 1.66.2, < 2.0.0; python_version >= '3.13'",
|
|
40
40
|
]
|
|
41
41
|
|
|
42
|
+
[project.urls]
|
|
43
|
+
"Repository" = "https://github.com/dimaqq/otlp-test-data"
|
|
44
|
+
"Issues" = "https://github.com/dimaqq/otlp-test-data/issues"
|
|
45
|
+
|
|
42
46
|
[dependency-groups]
|
|
43
47
|
dev = [
|
|
44
48
|
"pyright ~= 1.1",
|
|
@@ -47,6 +51,7 @@ dev = [
|
|
|
47
51
|
testing = [
|
|
48
52
|
"pytest ~= 8.3.4",
|
|
49
53
|
]
|
|
54
|
+
|
|
50
55
|
[build-system]
|
|
51
56
|
requires = ["hatchling"]
|
|
52
57
|
build-backend = "hatchling.build"
|
|
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
|