AgentCore Observability Setup & Validation
Validate and bootstrap observability for Amazon Bedrock AgentCore workloads, aligned with the
AgentCore observability documentation.
Produce a readiness report that states, per check, what is configured vs. what should be, and
generate the exact remediation for every gap.
Operating Principle
Verify where reachable; prescribe everywhere else. Every check is exactly one of:
- VERIFY — confirmable through a read-only API (log group exists, data arriving, spans flowing,
Transaction Search enabled, tracing toggle, delivery configured).
- PRESCRIBE — cannot be read directly (code-level OTEL instrumentation in the agent's source).
Validate the effect (are spans arriving?) and emit the exact steps. Do not claim to read
source code.
This skill is read-only. It validates and generates configuration/commands. The customer decides
whether to apply them. Never mutate IAM, resources, or configuration.
When to Use
Activate when the user asks to:
- Check / validate / audit whether AgentCore observability is configured correctly
- Diagnose missing traces, spans, metrics, or logs for a Bedrock agent
- Set up or bootstrap observability (tracing, metrics, logging) for an agent
- Run an AgentCore observability readiness review
- Understand why agent telemetry isn't appearing in CloudWatch GenAI Observability
Step 1: Detect Permission Tier
This skill degrades gracefully based on which read-only permissions the DevOps Agent role holds.
Detect the tier by attempting calls and noting failures; run the checks the tier allows and report
what to add to unlock the rest. Never attempt to modify IAM.
| Tier |
Permissions |
Unlocks |
| 1 — Standard (default DA IAM) |
logs:DescribeLogGroups, logs:FilterLogEvents, logs:GetLogEvents, logs:StartQuery, logs:GetQueryResults, cloudwatch:GetMetricData, cloudwatch:ListMetrics, cloudwatch:DescribeAlarms |
Telemetry-arrival verification for any host |
| 2 — Runtime config |
bedrock-agentcore:GetAgentRuntime, bedrock-agentcore:ListAgentRuntimes, xray:GetTraceSegmentDestination, logs:DescribeDeliveries, logs:DescribeDeliverySources, logs:DescribeDeliveryDestinations, logs:DescribeResourcePolicies |
Runtime tracing/env, Transaction Search state, Memory/Gateway delivery, X-Ray resource policy |
| 3 — Non-runtime host |
lambda:GetFunctionConfiguration; ecs:DescribeTaskDefinition, ecs:DescribeServices, ecs:ListTasks; eks:DescribeCluster |
Host-side config verification for Lambda / ECS / EKS |
If Tier 2/3 permissions are absent, tell the user the check is prescriptive-only here and give the
exact scoped inline policy to attach to the DevOps Agent role (see references/iam-tiers.md) so a
re-run can verify it. The shared managed policy is cross-tenant and must not be modified per-skill.
Step 2: Determine Scope (Host & Surface)
Host detection:
- Runtime — auto-detect with
bedrock-agentcore:GetAgentRuntime / bedrock-agentcore:ListAgentRuntimes (Tier 2). If absent, ask the user.
- Non-runtime — the agent cannot reliably auto-detect the host. Ask: "Is the agent on Lambda, ECS, EKS, or on-prem/another cloud?"
Surfaces to assess (ask which apply, or discover via Tier 2 List*):
Runtime agents · Memory resources · Gateway resources · Built-in tools (code interpreter, browser) · non-runtime host.
Outcome matrix:
| Host / Surface |
Expected outcome |
| Runtime agent |
Verify (Tier 1+2) + Prescribe |
| Memory resource |
Verify delivery + tracing (Tier 2) + Prescribe |
| Gateway resource |
Verify delivery + tracing (Tier 2) + Prescribe |
| Built-in tools |
Prescribe; verify telemetry-arrival where present |
| Lambda |
Verify host config (Tier 3) + Prescribe |
| ECS |
Verify host config (Tier 3) + Prescribe |
| EKS |
Verify telemetry arrival (Tier 1) + Prescribe config (pod env is K8s-RBAC-gated, not IAM-verifiable) |
| On-prem / multi-cloud |
Prescribe only |
Step 3: Run Checks
Assign each finding a severity (CRITICAL / HIGH / MEDIUM / LOW / INFO) and a type (VERIFY / PRESCRIBE).
The complete check catalog with APIs, log-group patterns, and pass/fail logic is in
references/checks-catalog.md. Summary below.
3.1 Account prerequisite — CloudWatch Transaction Search (all hosts)
- VERIFY (Tier 2):
xray:GetTraceSegmentDestination → destination must be CloudWatchLogs and status ACTIVE. If XRay/inactive, Transaction Search is not enabled → CRITICAL (spans will not be delivered to CloudWatch Logs; this is the single most common silent root cause).
- VERIFY (Tier 1 fallback): if the destination API is unavailable, infer from whether span log streams are receiving data (below). Report as inferred, not confirmed.
- PRESCRIBE: enable Transaction Search and ingest spans as structured logs (see
references/remediation-runtime.md).
3.2 Runtime agent path (start here — primary surface)
- Agent log group exists (VERIFY, Tier 1):
logs:DescribeLogGroups prefix /aws/bedrock-agentcore/runtimes/. Missing → HIGH.
- Logs arriving (VERIFY, Tier 1):
logs:FilterLogEvents on the runtime log stream in the last 24h. No recent events after invocations → HIGH.
- Spans flowing (VERIFY, Tier 1): check the
spans log stream in the agent's log group (unified destination) or the shared aws/spans log group. No spans despite invocations → CRITICAL (points to Transaction Search disabled or missing instrumentation).
- Session metrics emitting (VERIFY, Tier 1):
cloudwatch:ListMetrics namespace bedrock-agentcore. Absent → MEDIUM.
- Runtime tracing / span destination (VERIFY, Tier 2):
bedrock-agentcore:GetAgentRuntime → inspect env for UNIFIED_TRACES_DESTINATION_ENABLED and DISABLE_ADOT_OBSERVABILITY. Starting 2026-07-20, newly created agents in supported AWS Regions default to the unified span destination (the agent's own log group) — UNIFIED_TRACES_DESTINATION_ENABLED=false is now the opt-out. Agents created before that date remain on shared aws/spans unless opted in. If ADOT observability disabled unintentionally → HIGH.
- X-Ray resource policy on log group (VERIFY, Tier 2):
logs:DescribeResourcePolicies — must allow xray.amazonaws.com to logs:PutLogEvents on the agent's log group. Applies by default for agents created after 2026-07-20 in supported Regions, since unified span destination is the new default (per the AgentCore release notes). Mark N/A only when the agent was created before 2026-07-20 and still delivers to shared aws/spans, or the customer has explicitly opted out via UNIFIED_TRACES_DESTINATION_ENABLED=false. Missing → HIGH.
- Code-level instrumentation (PRESCRIBE): cannot read source. If spans are absent, prescribe:
aws-opentelemetry-distro>=0.10.0 (≥0.18.0 for unified span destination) + boto3 in requirements.txt; launch with opentelemetry-instrument python main.py (container CMD ["opentelemetry-instrument","python","main.py"]); framework tracing enabled (e.g. Strands tracer, opentelemetry-instrumentation-langchain); session id via X-Amzn-Bedrock-AgentCore-Runtime-Session-Id.
3.3 Memory & Gateway resources
- VERIFY (Tier 2):
logs:DescribeDeliveries / DescribeDeliverySources / DescribeDeliveryDestinations for an APPLICATION_LOGS source on the resource ARN and a TRACES→XRAY delivery. Default log group /aws/vendedlogs/bedrock-agentcore/{memory|gateway}/APPLICATION_LOGS/{resource-id}. No delivery → HIGH (no logs), MEDIUM (no traces).
- PRESCRIBE: console log-delivery + tracing toggle, or the
put_delivery_source/put_delivery_destination/create_delivery SDK sequence (see references/remediation-memory-gateway.md).
3.4 Built-in tools (code interpreter, browser)
- PRESCRIBE-first: no service logs by default. Prescribe custom log output + a log destination, and custom headers (
X-Amzn-Trace-Id, traceparent) on the tool APIs.
- VERIFY (Tier 1): if the customer emits logs, confirm the target log group is receiving data.
3.5 Non-runtime hosts
- Lambda (VERIFY, Tier 3):
lambda:GetFunctionConfiguration → OTEL Layer present and AWS_LAMBDA_EXEC_WRAPPER=/opt/otel-instrument; agent log group env vars set. Gaps → HIGH. Note: Lambda uses the Layer, not the aws-opentelemetry-distro package.
- ECS (VERIFY, Tier 3):
ecs:DescribeTaskDefinition → container env carries the OTEL variable set (see 3.6). Gaps → HIGH.
- EKS (VERIFY telemetry only, Tier 1): confirm the agent log group is receiving data. Pod/ConfigMap env is governed by Kubernetes RBAC and is not verifiable via IAM — prescribe config and report the pod-env checks as prescriptive.
- On-prem / multi-cloud (PRESCRIBE only): outside DA reach. Emit the full setup.
3.6 Non-runtime OTEL environment (PRESCRIBE / verify where host config is readable)
Required variables (per docs): AGENT_OBSERVABILITY_ENABLED=true, OTEL_PYTHON_DISTRO=aws_distro,
OTEL_PYTHON_CONFIGURATOR=aws_configurator, OTEL_RESOURCE_ATTRIBUTES (service.name, aws.log.group.names,
cloud.resource_id), OTEL_EXPORTER_OTLP_LOGS_HEADERS, OTEL_EXPORTER_OTLP_TRACES_HEADERS (optional
unified spans; needs ADOT ≥0.18.0 + X-Ray log-group resource policy), OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf,
OTEL_TRACES_EXPORTER=otlp. Full block with Lambda-specific vars in references/remediation-non-runtime.md.
ADOT Collector is not supported — use the ADOT SDK or the Lambda Layer only.
Step 4: Generate the Readiness Report
Produce a shareable artifact named agentcore-observability-review-<target>-<YYYY-MM-DD>.md
(<target> = agent/runtime id or a user-supplied label).
Sections:
- Header — account, region, host, surfaces assessed, permission tier reached, date.
- Executive summary — ✅ READY / ⚠️ GAPS / ❌ NOT CONFIGURED; finding counts by severity; top 3 items.
- Findings — table:
# | Check | Type (VERIFY/PRESCRIBE) | Severity | Current state | Expected | Remediation.
- Remediation — concrete, copy-pasteable config/commands per gap (link the relevant
references/ file).
- Permissions to unlock more checks — the exact scoped inline policy JSON for any tier not reached.
- Limitations — code-level instrumentation is prescriptive; EKS pod env not IAM-verifiable; on-prem/multi-cloud prescribe-only; read-only (customer applies changes).
- Appendix — reference links.
Severity Definitions
| Severity |
Definition |
| CRITICAL |
Observability is broken — telemetry cannot flow (e.g. Transaction Search disabled, no spans despite invocations). |
| HIGH |
Significant gap — a required piece is missing (log group, delivery, resource policy, host env). |
| MEDIUM |
Notable gap — metrics/traces partially configured or best-practice not met. |
| LOW |
Minor hardening or optimization. |
| INFO |
Observation, no action required. |
Reference Files
references/checks-catalog.md — full per-check catalog (API, logic, severity, VERIFY/PRESCRIBE).
references/iam-tiers.md — the three read-only tiers + ready-to-attach scoped inline policy JSON.
references/remediation-runtime.md — Transaction Search, runtime tracing, ADOT, X-Ray resource policy.
references/remediation-memory-gateway.md — log delivery + tracing (console + SDK).
references/remediation-non-runtime.md — Lambda / ECS / EKS / on-prem OTEL env and setup.
Appendix — Reference Links
1---2name: agentcore-observability-setup3description: Validates and bootstraps Amazon Bedrock AgentCore observability so customers can trace agent reasoning, detect silent failures, and measure performance before an outage. Use this skill when a user asks to check, validate, audit, verify, fix, or set up AgentCore observability, tracing, metrics, or logging - for example "is AgentCore observability configured correctly", "why can't I see traces for my agent", "my Bedrock agent has no spans in CloudWatch", "validate agent monitoring", "AgentCore observability readiness", or "set up OTEL for my agent". Covers AgentCore Runtime agents, Memory and Gateway resources, built-in tools, and agents hosted outside the runtime (Lambda, ECS, EKS, on-prem, multi-cloud). Verifies what is reachable via read-only CloudWatch, X-Ray, and AgentCore control-plane APIs, and prescribes exact remediation for gaps it cannot directly read such as code-level OTEL instrumentation.4---56# AgentCore Observability Setup & Validation78Validate and bootstrap observability for Amazon Bedrock AgentCore workloads, aligned with the9[AgentCore observability documentation](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/observability-configure.html).10Produce a readiness report that states, per check, what is **configured vs. what should be**, and11generate the exact remediation for every gap.1213## Operating Principle1415**Verify where reachable; prescribe everywhere else.** Every check is exactly one of:1617- **VERIFY** — confirmable through a read-only API (log group exists, data arriving, spans flowing,18 Transaction Search enabled, tracing toggle, delivery configured).19- **PRESCRIBE** — cannot be read directly (code-level OTEL instrumentation in the agent's source).20 Validate the *effect* (are spans arriving?) and emit the exact steps. Do **not** claim to read21 source code.2223This skill is **read-only**. It validates and generates configuration/commands. The customer decides24whether to apply them. Never mutate IAM, resources, or configuration.2526## When to Use2728Activate when the user asks to:29- Check / validate / audit whether AgentCore observability is configured correctly30- Diagnose missing traces, spans, metrics, or logs for a Bedrock agent31- Set up or bootstrap observability (tracing, metrics, logging) for an agent32- Run an AgentCore observability readiness review33- Understand why agent telemetry isn't appearing in CloudWatch GenAI Observability3435## Step 1: Detect Permission Tier3637This skill degrades gracefully based on which read-only permissions the DevOps Agent role holds.38Detect the tier by attempting calls and noting failures; run the checks the tier allows and report39what to add to unlock the rest. **Never** attempt to modify IAM.4041| Tier | Permissions | Unlocks |42|---|---|---|43| **1 — Standard** (default DA IAM) | `logs:DescribeLogGroups`, `logs:FilterLogEvents`, `logs:GetLogEvents`, `logs:StartQuery`, `logs:GetQueryResults`, `cloudwatch:GetMetricData`, `cloudwatch:ListMetrics`, `cloudwatch:DescribeAlarms` | Telemetry-arrival verification for any host |44| **2 — Runtime config** | `bedrock-agentcore:GetAgentRuntime`, `bedrock-agentcore:ListAgentRuntimes`, `xray:GetTraceSegmentDestination`, `logs:DescribeDeliveries`, `logs:DescribeDeliverySources`, `logs:DescribeDeliveryDestinations`, `logs:DescribeResourcePolicies` | Runtime tracing/env, Transaction Search state, Memory/Gateway delivery, X-Ray resource policy |45| **3 — Non-runtime host** | `lambda:GetFunctionConfiguration`; `ecs:DescribeTaskDefinition`, `ecs:DescribeServices`, `ecs:ListTasks`; `eks:DescribeCluster` | Host-side config verification for Lambda / ECS / EKS |4647If Tier 2/3 permissions are absent, tell the user the check is **prescriptive-only** here and give the48exact scoped inline policy to attach to the DevOps Agent role (see `references/iam-tiers.md`) so a49re-run can verify it. The shared managed policy is cross-tenant and must not be modified per-skill.5051## Step 2: Determine Scope (Host & Surface)5253**Host detection:**54- **Runtime** — auto-detect with `bedrock-agentcore:GetAgentRuntime` / `bedrock-agentcore:ListAgentRuntimes` (Tier 2). If absent, ask the user.55- **Non-runtime** — the agent cannot reliably auto-detect the host. Ask: *"Is the agent on Lambda, ECS, EKS, or on-prem/another cloud?"*5657**Surfaces to assess** (ask which apply, or discover via Tier 2 `List*`):58Runtime agents · Memory resources · Gateway resources · Built-in tools (code interpreter, browser) · non-runtime host.5960**Outcome matrix:**6162| Host / Surface | Expected outcome |63|---|---|64| Runtime agent | Verify (Tier 1+2) + Prescribe |65| Memory resource | Verify delivery + tracing (Tier 2) + Prescribe |66| Gateway resource | Verify delivery + tracing (Tier 2) + Prescribe |67| Built-in tools | Prescribe; verify telemetry-arrival where present |68| Lambda | Verify host config (Tier 3) + Prescribe |69| ECS | Verify host config (Tier 3) + Prescribe |70| EKS | Verify telemetry arrival (Tier 1) + Prescribe config (pod env is K8s-RBAC-gated, not IAM-verifiable) |71| On-prem / multi-cloud | Prescribe only |7273## Step 3: Run Checks7475Assign each finding a severity (CRITICAL / HIGH / MEDIUM / LOW / INFO) and a type (VERIFY / PRESCRIBE).76The complete check catalog with APIs, log-group patterns, and pass/fail logic is in77`references/checks-catalog.md`. Summary below.7879### 3.1 Account prerequisite — CloudWatch Transaction Search (all hosts)80- **VERIFY (Tier 2):** `xray:GetTraceSegmentDestination` → destination must be `CloudWatchLogs` and status `ACTIVE`. If `XRay`/inactive, Transaction Search is **not** enabled → **CRITICAL** (spans will not be delivered to CloudWatch Logs; this is the single most common silent root cause).81- **VERIFY (Tier 1 fallback):** if the destination API is unavailable, infer from whether span log streams are receiving data (below). Report as inferred, not confirmed.82- **PRESCRIBE:** enable Transaction Search and ingest spans as structured logs (see `references/remediation-runtime.md`).8384### 3.2 Runtime agent path (start here — primary surface)851. **Agent log group exists (VERIFY, Tier 1):** `logs:DescribeLogGroups` prefix `/aws/bedrock-agentcore/runtimes/`. Missing → HIGH.862. **Logs arriving (VERIFY, Tier 1):** `logs:FilterLogEvents` on the runtime log stream in the last 24h. No recent events after invocations → HIGH.873. **Spans flowing (VERIFY, Tier 1):** check the `spans` log stream in the agent's log group (unified destination) or the shared `aws/spans` log group. No spans despite invocations → CRITICAL (points to Transaction Search disabled or missing instrumentation).884. **Session metrics emitting (VERIFY, Tier 1):** `cloudwatch:ListMetrics` namespace `bedrock-agentcore`. Absent → MEDIUM.895. **Runtime tracing / span destination (VERIFY, Tier 2):** `bedrock-agentcore:GetAgentRuntime` → inspect env for `UNIFIED_TRACES_DESTINATION_ENABLED` and `DISABLE_ADOT_OBSERVABILITY`. Starting **2026-07-20**, newly created agents in supported AWS Regions default to the unified span destination (the agent's own log group) — `UNIFIED_TRACES_DESTINATION_ENABLED=false` is now the opt-out. Agents created before that date remain on shared `aws/spans` unless opted in. If ADOT observability disabled unintentionally → HIGH.906. **X-Ray resource policy on log group (VERIFY, Tier 2):** `logs:DescribeResourcePolicies` — must allow `xray.amazonaws.com` to `logs:PutLogEvents` on the agent's log group. **Applies by default for agents created after 2026-07-20 in supported Regions**, since unified span destination is the new default (per the [AgentCore release notes](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/release-notes.html)). Mark N/A only when the agent was created before 2026-07-20 and still delivers to shared `aws/spans`, or the customer has explicitly opted out via `UNIFIED_TRACES_DESTINATION_ENABLED=false`. Missing → HIGH.917. **Code-level instrumentation (PRESCRIBE):** cannot read source. If spans are absent, prescribe: `aws-opentelemetry-distro>=0.10.0` (**≥0.18.0** for unified span destination) + `boto3` in `requirements.txt`; launch with `opentelemetry-instrument python main.py` (container `CMD ["opentelemetry-instrument","python","main.py"]`); framework tracing enabled (e.g. Strands tracer, `opentelemetry-instrumentation-langchain`); session id via `X-Amzn-Bedrock-AgentCore-Runtime-Session-Id`.9293### 3.3 Memory & Gateway resources94- **VERIFY (Tier 2):** `logs:DescribeDeliveries` / `DescribeDeliverySources` / `DescribeDeliveryDestinations` for an `APPLICATION_LOGS` source on the resource ARN and a `TRACES`→XRAY delivery. Default log group `/aws/vendedlogs/bedrock-agentcore/{memory|gateway}/APPLICATION_LOGS/{resource-id}`. No delivery → HIGH (no logs), MEDIUM (no traces).95- **PRESCRIBE:** console log-delivery + tracing toggle, or the `put_delivery_source`/`put_delivery_destination`/`create_delivery` SDK sequence (see `references/remediation-memory-gateway.md`).9697### 3.4 Built-in tools (code interpreter, browser)98- **PRESCRIBE-first:** no service logs by default. Prescribe custom log output + a log destination, and custom headers (`X-Amzn-Trace-Id`, `traceparent`) on the tool APIs.99- **VERIFY (Tier 1):** if the customer emits logs, confirm the target log group is receiving data.100101### 3.5 Non-runtime hosts102- **Lambda (VERIFY, Tier 3):** `lambda:GetFunctionConfiguration` → OTEL Layer present and `AWS_LAMBDA_EXEC_WRAPPER=/opt/otel-instrument`; agent log group env vars set. Gaps → HIGH. Note: Lambda uses the **Layer**, not the `aws-opentelemetry-distro` package.103- **ECS (VERIFY, Tier 3):** `ecs:DescribeTaskDefinition` → container env carries the OTEL variable set (see 3.6). Gaps → HIGH.104- **EKS (VERIFY telemetry only, Tier 1):** confirm the agent log group is receiving data. Pod/ConfigMap env is governed by Kubernetes RBAC and is **not** verifiable via IAM — prescribe config and report the pod-env checks as prescriptive.105- **On-prem / multi-cloud (PRESCRIBE only):** outside DA reach. Emit the full setup.106107### 3.6 Non-runtime OTEL environment (PRESCRIBE / verify where host config is readable)108Required variables (per docs): `AGENT_OBSERVABILITY_ENABLED=true`, `OTEL_PYTHON_DISTRO=aws_distro`,109`OTEL_PYTHON_CONFIGURATOR=aws_configurator`, `OTEL_RESOURCE_ATTRIBUTES` (service.name, aws.log.group.names,110cloud.resource_id), `OTEL_EXPORTER_OTLP_LOGS_HEADERS`, `OTEL_EXPORTER_OTLP_TRACES_HEADERS` (optional111unified spans; needs ADOT ≥0.18.0 + X-Ray log-group resource policy), `OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf`,112`OTEL_TRACES_EXPORTER=otlp`. Full block with Lambda-specific vars in `references/remediation-non-runtime.md`.113ADOT **Collector is not supported** — use the ADOT SDK or the Lambda Layer only.114115## Step 4: Generate the Readiness Report116117Produce a shareable artifact named `agentcore-observability-review-<target>-<YYYY-MM-DD>.md`118(`<target>` = agent/runtime id or a user-supplied label).119120Sections:121- **Header** — account, region, host, surfaces assessed, permission tier reached, date.122- **Executive summary** — ✅ READY / ⚠️ GAPS / ❌ NOT CONFIGURED; finding counts by severity; top 3 items.123- **Findings** — table: `# | Check | Type (VERIFY/PRESCRIBE) | Severity | Current state | Expected | Remediation`.124- **Remediation** — concrete, copy-pasteable config/commands per gap (link the relevant `references/` file).125- **Permissions to unlock more checks** — the exact scoped inline policy JSON for any tier not reached.126- **Limitations** — code-level instrumentation is prescriptive; EKS pod env not IAM-verifiable; on-prem/multi-cloud prescribe-only; read-only (customer applies changes).127- **Appendix** — reference links.128129## Severity Definitions130131| Severity | Definition |132|---|---|133| CRITICAL | Observability is broken — telemetry cannot flow (e.g. Transaction Search disabled, no spans despite invocations). |134| HIGH | Significant gap — a required piece is missing (log group, delivery, resource policy, host env). |135| MEDIUM | Notable gap — metrics/traces partially configured or best-practice not met. |136| LOW | Minor hardening or optimization. |137| INFO | Observation, no action required. |138139## Reference Files140141- `references/checks-catalog.md` — full per-check catalog (API, logic, severity, VERIFY/PRESCRIBE).142- `references/iam-tiers.md` — the three read-only tiers + ready-to-attach scoped inline policy JSON.143- `references/remediation-runtime.md` — Transaction Search, runtime tracing, ADOT, X-Ray resource policy.144- `references/remediation-memory-gateway.md` — log delivery + tracing (console + SDK).145- `references/remediation-non-runtime.md` — Lambda / ECS / EKS / on-prem OTEL env and setup.146147## Appendix — Reference Links148149- AgentCore observability configuration: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/observability-configure.html150- AgentCore generated observability data: https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/observability-service-provided.html151- CloudWatch GenAI Observability console: https://console.aws.amazon.com/cloudwatch/home#gen-ai-observability152- ADOT SDK: https://aws-otel.github.io/153- AWS Lambda Layer for OpenTelemetry: https://aws-otel.github.io/docs/getting-started/lambda