Skip to content

Commit 19c2627

Browse files
committed
Exclude Google GenAI instrumentation from the bootstrap code for now.
1 parent 016596e commit 19c2627

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

scripts/generate_instrumentation_bootstrap.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,19 @@
5353
"bootstrap_gen.py",
5454
)
5555

56-
# AWS Lambda instrumentation is excluded from the default list because it often
57-
# requires specific configurations and dependencies that may not be set up
58-
# in all environments. Instead, users who need AWS Lambda support can opt-in
59-
# by manually adding it to their environment.
60-
# See https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2787
56+
6157
packages_to_exclude = [
58+
# AWS Lambda instrumentation is excluded from the default list because it often
59+
# requires specific configurations and dependencies that may not be set up
60+
# in all environments. Instead, users who need AWS Lambda support can opt-in
61+
# by manually adding it to their environment.
62+
# See https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2787
6263
"opentelemetry-instrumentation-aws-lambda",
64+
65+
# Google GenAI instrumentation is currently excluded because it is still in early
66+
# development. This filter will get removed once it is further along in its
67+
# development lifecycle and ready to be included by default.
68+
"opentelemetry-instrumentation-google-genai",
6369
]
6470

6571

0 commit comments

Comments
 (0)