You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `opentelemetry-exporter-credential-provider-gcp`: create this package which provides support for supplying your machine's Application Default Credentials (https://cloud.google.com/docs/authentication/application-default-credentials) to the OTLP Exporters created automatically by OpenTelemetry Python's auto instrumentation. These credentials authorize OTLP traces to be sent to `telemetry.googleapis.com`.
- `opentelemetry-instrumentation-redis`: Add support for semantic convention opt-in and stable Redis span attributes ([#3826](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3826))
29
+
- `opentelemetry-instrumentation-redis`: Add support for semantic convention opt-in and stable Redis span attributes
- `opentelemetry-exporter-credential-provider-gcp`: create this package which provides support for supplying your machine's Application Default
32
+
Credentials (https://cloud.google.com/docs/authentication/application-default-credentials) to the OTLP Exporters created automatically by OpenTelemetry Python's auto instrumentation. These credentials authorize OTLP traces to be sent to `telemetry.googleapis.com`. [#3766](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3766).
33
+
- `opentelemetry-instrumentation-psycopg`: Add missing parameter `capture_parameters` to instrumentor.
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-google-genai/src/opentelemetry/instrumentation/google_genai/instrumentor.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
15
15
from typing import Any, Collection, Optional
16
16
17
-
from opentelemetry._events import get_event_logger_provider
17
+
from opentelemetry._logs import get_logger_provider
18
18
from opentelemetry.instrumentation.instrumentor import BaseInstrumentor
19
19
from opentelemetry.metrics import get_meter_provider
20
20
from opentelemetry.trace import get_tracer_provider
Copy file name to clipboardExpand all lines: instrumentation-genai/opentelemetry-instrumentation-google-genai/src/opentelemetry/instrumentation/google_genai/otel_wrapper.py
+9-7Lines changed: 9 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
17
17
import google.genai
18
18
19
-
from opentelemetry._events import Event
19
+
from opentelemetry._logs import LogRecord
20
20
from opentelemetry.semconv._incubating.metrics import gen_ai_metrics
0 commit comments