mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-30 21:56:07 +08:00
opentelemetry-bootstrap: remove aws-lambda from default instrumentations (#2786)
This commit is contained in:
@ -53,12 +53,21 @@ gen_path = os.path.join(
|
||||
"bootstrap_gen.py",
|
||||
)
|
||||
|
||||
# AWS Lambda instrumentation is excluded from the default list because it often
|
||||
# requires specific configurations and dependencies that may not be set up
|
||||
# in all environments. Instead, users who need AWS Lambda support can opt-in
|
||||
# by manually adding it to their environment.
|
||||
# See https://github.com/open-telemetry/opentelemetry-python-contrib/issues/2787
|
||||
packages_to_exclude = ["opentelemetry-instrumentation-aws-lambda"]
|
||||
|
||||
|
||||
def main():
|
||||
# pylint: disable=no-member
|
||||
default_instrumentations = ast.List(elts=[])
|
||||
libraries = ast.List(elts=[])
|
||||
for pkg in get_instrumentation_packages():
|
||||
if pkg.get("name") in packages_to_exclude:
|
||||
continue
|
||||
if not pkg["instruments"]:
|
||||
default_instrumentations.elts.append(ast.Str(pkg["requirement"]))
|
||||
for target_pkg in pkg["instruments"]:
|
||||
|
Reference in New Issue
Block a user