Skip to content

Commit 9d3d0f8

Browse files
authored
Upgrade opentelemetry-proto to 0.20 and regen (#3355)
1 parent 6b9f389 commit 9d3d0f8

File tree

20 files changed

+388
-615
lines changed

20 files changed

+388
-615
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Add max_scale option to Exponential Bucket Histogram Aggregation [#3323](https://github.com/open-telemetry/opentelemetry-python/pull/3323))
1111
- Use BoundedAttributes instead of raw dict to extract attributes from LogRecord and Support dropped_attributes_count in LogRecord ([#3310](https://github.com/open-telemetry/opentelemetry-python/pull/3310))
12+
- Upgrade opentelemetry-proto to 0.20 and regen
13+
[#3355](https://github.com/open-telemetry/opentelemetry-python/pull/3355))
1214

1315
## Version 1.18.0/0.39b0 (2023-05-04)
1416

exporter/opentelemetry-exporter-otlp-proto-common/tests/test_metrics_encoder.py

-5
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,6 @@ def test_encode_histogram(self):
451451
bucket_counts=[1, 4],
452452
explicit_bounds=[10.0, 20.0],
453453
exemplars=[],
454-
flags=pb2.DataPointFlags.FLAG_NONE,
455454
max=18.0,
456455
min=8.0,
457456
)
@@ -554,7 +553,6 @@ def test_encode_multiple_scope_histogram(self):
554553
bucket_counts=[1, 4],
555554
explicit_bounds=[10.0, 20.0],
556555
exemplars=[],
557-
flags=pb2.DataPointFlags.FLAG_NONE,
558556
max=18.0,
559557
min=8.0,
560558
)
@@ -590,7 +588,6 @@ def test_encode_multiple_scope_histogram(self):
590588
bucket_counts=[1, 4],
591589
explicit_bounds=[10.0, 20.0],
592590
exemplars=[],
593-
flags=pb2.DataPointFlags.FLAG_NONE,
594591
max=18.0,
595592
min=8.0,
596593
)
@@ -633,7 +630,6 @@ def test_encode_multiple_scope_histogram(self):
633630
bucket_counts=[1, 4],
634631
explicit_bounds=[10.0, 20.0],
635632
exemplars=[],
636-
flags=pb2.DataPointFlags.FLAG_NONE,
637633
max=18.0,
638634
min=8.0,
639635
)
@@ -676,7 +672,6 @@ def test_encode_multiple_scope_histogram(self):
676672
bucket_counts=[1, 4],
677673
explicit_bounds=[10.0, 20.0],
678674
exemplars=[],
679-
flags=pb2.DataPointFlags.FLAG_NONE,
680675
max=18.0,
681676
min=8.0,
682677
)

opentelemetry-proto/src/opentelemetry/proto/collector/logs/v1/logs_service_pb2.py

+15-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

opentelemetry-proto/src/opentelemetry/proto/collector/logs/v1/logs_service_pb2.pyi

+53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

opentelemetry-proto/src/opentelemetry/proto/collector/metrics/v1/metrics_service_pb2.py

+15-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

opentelemetry-proto/src/opentelemetry/proto/collector/metrics/v1/metrics_service_pb2.pyi

+53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)