We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eadef68 commit 8256c85Copy full SHA for 8256c85
aws-opentelemetry-distro/src/amazon/opentelemetry/distro/_utils.py
@@ -9,7 +9,7 @@
9
10
_logger: Logger = getLogger(__name__)
11
12
-AGENT_OBSERVABILITY_ENABLED = "AGENT_OBSERVABIILTY_ENABLED"
+AGENT_OBSERVABILITY_ENABLED = "AGENT_OBSERVABILITY_ENABLED"
13
14
15
def is_installed(req: str) -> bool:
@@ -27,4 +27,5 @@ def is_installed(req: str) -> bool:
27
28
29
def is_agent_observability_enabled() -> bool:
30
+ """Is the Agentic AI monitoring flag set to true?"""
31
return os.environ.get(AGENT_OBSERVABILITY_ENABLED, "false").lower() == "true"
0 commit comments