grpcio-csm-observability 1.74.0__tar.gz → 1.75.0__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.
- {grpcio_csm_observability-1.74.0/grpcio_csm_observability.egg-info → grpcio_csm_observability-1.75.0}/PKG-INFO +2 -2
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpc_csm_observability/_csm_observability_plugin.py +3 -2
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpc_version.py +1 -1
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0/grpcio_csm_observability.egg-info}/PKG-INFO +2 -2
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpcio_csm_observability.egg-info/requires.txt +1 -1
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/LICENSE +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/MANIFEST.in +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/README.rst +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpc_csm_observability/BUILD.bazel +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpc_csm_observability/__init__.py +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpcio_csm_observability.egg-info/SOURCES.txt +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpcio_csm_observability.egg-info/dependency_links.txt +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/grpcio_csm_observability.egg-info/top_level.txt +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/python_version.py +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/setup.cfg +0 -0
- {grpcio_csm_observability-1.74.0 → grpcio_csm_observability-1.75.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: grpcio-csm-observability
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.75.0
|
|
4
4
|
Summary: gRPC Python CSM observability package
|
|
5
5
|
Home-page: https://grpc.io
|
|
6
6
|
Author: The gRPC Authors
|
|
@@ -16,7 +16,7 @@ Requires-Python: >=3.9
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: opentelemetry-sdk>=1.25.0
|
|
18
18
|
Requires-Dist: opentelemetry-resourcedetector-gcp>=1.6.0a0
|
|
19
|
-
Requires-Dist: grpcio==1.
|
|
19
|
+
Requires-Dist: grpcio==1.75.0
|
|
20
20
|
Requires-Dist: protobuf<7.0.0,>=6.31.1
|
|
21
21
|
|
|
22
22
|
gRPC Python CSM Observability
|
|
@@ -223,7 +223,7 @@ class CsmOpenTelemetryPluginOption(OpenTelemetryPluginOption):
|
|
|
223
223
|
|
|
224
224
|
@staticmethod
|
|
225
225
|
def is_active_on_server(
|
|
226
|
-
xds: bool, # pylint: disable=unused-argument
|
|
226
|
+
xds: bool, # pylint: disable=unused-argument #noqa: ARG004
|
|
227
227
|
) -> bool:
|
|
228
228
|
"""Determines whether this plugin option is active on a given server.
|
|
229
229
|
|
|
@@ -259,10 +259,11 @@ class CsmOpenTelemetryPlugin(OpenTelemetryPlugin):
|
|
|
259
259
|
def __init__(
|
|
260
260
|
self,
|
|
261
261
|
*,
|
|
262
|
-
plugin_options: Iterable[OpenTelemetryPluginOption] =
|
|
262
|
+
plugin_options: Optional[Iterable[OpenTelemetryPluginOption]] = None,
|
|
263
263
|
meter_provider: Optional[MeterProvider] = None,
|
|
264
264
|
generic_method_attribute_filter: Optional[Callable[[str], bool]] = None,
|
|
265
265
|
):
|
|
266
|
+
plugin_options = plugin_options or []
|
|
266
267
|
new_options = list(plugin_options) + [CsmOpenTelemetryPluginOption()]
|
|
267
268
|
super().__init__(
|
|
268
269
|
plugin_options=new_options,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: grpcio-csm-observability
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.75.0
|
|
4
4
|
Summary: gRPC Python CSM observability package
|
|
5
5
|
Home-page: https://grpc.io
|
|
6
6
|
Author: The gRPC Authors
|
|
@@ -16,7 +16,7 @@ Requires-Python: >=3.9
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: opentelemetry-sdk>=1.25.0
|
|
18
18
|
Requires-Dist: opentelemetry-resourcedetector-gcp>=1.6.0a0
|
|
19
|
-
Requires-Dist: grpcio==1.
|
|
19
|
+
Requires-Dist: grpcio==1.75.0
|
|
20
20
|
Requires-Dist: protobuf<7.0.0,>=6.31.1
|
|
21
21
|
|
|
22
22
|
gRPC Python CSM Observability
|
|
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
|