cd /news/ai-agents/monitor-on-premises-and-multi-cloud-… · home topics ai-agents article
[ARTICLE · art-95514] src=aws.amazon.com ↗ pub= topic=ai-agents verified=true sentiment=· neutral

Monitor on-premises and multi-cloud AI agents with AgentCore Observability

Amazon Web Services (AWS) announced that Amazon Bedrock AgentCore Observability now supports monitoring AI agents deployed on-premises or in multi-cloud environments, including Google Cloud Platform (GCP) and Microsoft Azure, in addition to AWS services. The solution uses the AWS Distro for OpenTelemetry (ADOT) auto-instrumentation to route telemetry to the AgentCore Observability dashboard, enabling detection of hallucinations, monitoring of harmful responses, and tracking token usage for cost governance.

read9 min views1 publishedAug 13, 2026
Monitor on-premises and multi-cloud AI agents with AgentCore Observability
Image: AWS ML Blog

Artificial Intelligence When you deploy AI agents built with frameworks like Strands Agents, LangGraph, and CrewAI, you need observability into their performance. This holds true whether they run on Amazon Elastic Kubernetes Service (Amazon EKS), Amazon Elastic Container Service (Amazon ECS), AWS Lambda, on-premises, or another cloud provider such as Google Cloud Platform (GCP) or Microsoft Azure.

Amazon Bedrock AgentCore is a platform to build, connect, and optimize agents at scale, with any framework or model. Although Amazon Bedrock AgentCore Observability, a capability of Amazon Bedrock AgentCore, provides native tracing, monitoring, and analytics that local cloud monitoring tools don’t offer out of the box, it natively supports only agents deployed on AgentCore runtime in the AWS Cloud. If your agents run anywhere else, you need additional configuration to send telemetry to the dashboard.

In this post, we show you how to set up observability for agents running outside AWS. You learn how to configure the AWS Distro for OpenTelemetry (ADOT) auto-instrumentation in non-AWS environments, route telemetry to the AgentCore Observability dashboard, and validate the setup end to end.

The following diagram shows the end-to-end observability pipeline and how telemetry flows from agents to the AgentCore Observability dashboard.

Solution overview #

The solution uses the AWS Distro for OpenTelemetry (ADOT) running in-process with the agent application. ADOT auto-instruments the agent framework and captures generative AI semantic convention spans, then exports the telemetry directly to the Amazon CloudWatch OpenTelemetry Protocol (OTLP) endpoint using SigV4 authentication with AWS Identity and Access Management (IAM) credentials.

Sending telemetry from your AI agent to Amazon Bedrock AgentCore Observability requires three core components:

ADOT auto-instrumentation: The AWS Distro for OpenTelemetry handles the complexities of exporting telemetry from non-AWS environments.** IAM credentials**: The ADOT uses these access keys to authenticate with CloudWatch and forward your agent’s telemetry (traces, metrics, and logs) to the AgentCore Observability dashboard.Environment variables: These contain specific OpenTelemetry settings related to routing and authentication.

As seen in the following diagram, this cross-platform observability solution integrates several AWS services. Amazon CloudWatch serves as the foundation, handling telemetry ingestion and storage. Amazon Bedrock AgentCore Observability adds specialized monitoring dashboards for AI agents. AWS Distro for OpenTelemetry (ADOT) provides the cross-platform instrumentation capabilities. IAM secures the authentication between your external environments and AWS.

Observability is a foundational pillar of responsible AI. By routing telemetry to AgentCore Observability, you gain visibility into agent reasoning chains, tool invocations, and model outputs. This allows you to detect hallucinations, monitor for harmful or off-topic responses, track token usage for cost governance, and audit agent behavior across environments. This is especially critical for agents running outside AWS, where problematic outputs might go unnoticed without centralized observability.

Prerequisites #

Before you begin, verify that you have:

  • An AWS account:

  • with Amazon Bedrock model access configured (this walkthrough uses Claude Haiku). For model availability by AWS Region, refer tosupported models by AWS Regionin Amazon Bedrock. - for designated AgentCore Observability and designated log group(s).

  • with Amazon Bedrock model access configured (this walkthrough uses CloudWatch Transaction Searchturned on in your account (one-time setup)- Python 3.10 or later installed on your non-AWS environment.

  • IAM user credentials (access key ID and secret access key) with permissions for: bedrock:InvokeModel

.logs:CreateLogGroup

,logs:CreateLogStream

,logs:PutLogEvents

.xray:PutTraceSegments

,xray:PutTelemetryRecords

,xray:GetSamplingRules

, andxray:GetSamplingTargets

.cloudwatch:PutMetricData

.

  • Outbound HTTPS access to AWS endpoints from your environment.

If you haven’t turned on Transaction Search, run the following (one-time per account): Verify it’s active:

How it works #

The ADOT auto-instrumentation (aws-opentelemetry-distro ) handles the complexity of exporting telemetry from non-AWS environments to CloudWatch:

Auto-instrumentation: Theopentelemetry-instrument command injects the ADOT into the Python runtime. It automatically patchesboto3

(for Amazon Bedrock calls) and the Strands framework (for agent reasoning spans) to emit OpenTelemetry traces.SigV4 authentication: Theaws_configurator

uses theboto3

credential chain to sign OTLP export requests with SigV4. From non-AWS environments, this uses theAWS_ACCESS_KEY_ID

andAWS_SECRET_ACCESS_KEY

environment variables.CloudWatch OTLP endpoint: The ADOT exports traces and logs to the CloudWatch native OTLP ingestion endpoint. TheOTEL_EXPORTER_OTLP_LOGS_HEADERS

header directs logs to the specific AgentCore log group, which is how CloudWatch indexes the data under the generative AI observability dashboard. For details on how the CloudWatch OTLP endpoint URL is determined and configured, seeCloudWatch OTLP endpoint.Generative AI semantic conventions: The Strands[otel]

package emits spans following theOpenTelemetry generative AI semantic conventions, including agent reasoning steps, tool invocations, and model calls with token usage. The following diagram shows how telemetry export through ADOT auto-instrumentation works from non-AWS environments to CloudWatch.

Walkthrough #

Follow these steps to configure and run a Strands agent in a non-AWS environment, with telemetry routed to AgentCore Observability.

Step 1: Install dependencies

On your non-AWS environment (on-premises server, GCP VM, Azure VM, or a compute with internet access):

The `aws-opentelemetry-distro`

package includes the ADOT auto-instrumentation with OTLP exporters specific to AWS and the `aws_configurator`

that handles SigV4 authentication. The strands-agents[otel]

package provides OpenTelemetry trace emission from the Strands framework.

Step 2: Configure AWS credentials

Set your IAM user credentials as environment variables.

Security note: For production deployments, consider using IAM Roles Anywhere instead of long-lived access keys. With IAM Roles Anywhere, on-premises workloads can obtain temporary credentials using X.509 certificates.

Step 3: Set OpenTelemetry environment variables

These environment variables configure the ADOT to route telemetry to the AgentCore Observability dashboard:

Key configuration details:

AGENT_OBSERVABILITY_ENABLED=true

activates generative AI-specific telemetry processing in the ADOT.OTEL_PYTHON_DISTRO=aws_distro

andOTEL_PYTHON_CONFIGURATOR=aws_configurator

activate the OpenTelemetry configuration specific to AWS, including SigV4 signing for the CloudWatch OTLP endpoint.OTEL_RESOURCE_ATTRIBUTES

withaws.log.group.names

tells CloudWatch to index the telemetry under the AgentCore Observability dashboard. Without this, traces go to generic Amazon CloudWatch Logs.OTEL_EXPORTER_OTLP_LOGS_HEADERS

withx-aws-metric-namespace=bedrock-agentcore routes metrics inembedded metric formatto the correct CloudWatch namespace.

Step 4: Create the agent application

Create a file named agent_test.py

with a Strands agent:

Step 5: Run with ADOT auto-instrumentation

The opentelemetry-instrument

command wraps your Python process with the ADOT, automatically instrumenting Amazon Bedrock calls and Strands framework operations:

The agent’s response appears in the terminal. Behind the scenes, the ADOT captures traces, spans, and logs, and exports them to CloudWatch.

Step 6: Verify in AgentCore Observability

You see telemetry data within two to three minutes of execution. Open the Amazon CloudWatch console:

  • Choose GenAI Observability, then** Bedrock AgentCore**. - In the Agents tab, look formy-external-agent

. - Choose the agent to view sessions, traces, and span metrics.

The following screenshot shows the telemetry from the Strands agent (my-external-agent

) running in a non-AWS environment, as seen in the AgentCore Observability dashboard in CloudWatch.

The console shows:

Agent name:my-external-agent .Sessions: at least one session.** Traces**: trace spans showing the agent’s reasoning and Amazon Bedrock model invocations.** Span details**:invoke_agent

,chat

,execute_event_loop_cycle

, andchat.us.anthropic.claude-haiku

spans with latency and token metrics.

The following screenshot shows a successful trace from the Strands agent (my-external-agent

) with four spans, model information, and latency and token details in the AgentCore Observability dashboard.

Validating from Google Cloud Platform

To confirm the solution works from a third-party cloud provider, we tested the same setup from Google Cloud Shell, a browser-based terminal running on GCP infrastructure.

Set up the environment on Google Cloud Shell:

Run the agent from GCP:

The following screenshot shows the Strands agent (gcp-hosted-agent

) running on Google Cloud Shell (GCP) and returning a successful response.

Verify cross-cloud telemetry

Within two to three minutes of execution, the gcp-hosted-agent

appears in the AgentCore Observability dashboard alongside agents running on AgentCore runtime or other environments.

The following screenshot shows a successful trace from the Strands agent (gcp-hosted-agent

) running on GCP with four spans, model information, and latency and token details in the AgentCore Observability dashboard.

The telemetry is identical to what an AgentCore runtime-hosted agent produces. Sessions, traces, span metrics, token usage, and latency are all visible in the same dashboard, regardless of where the agent runs.

Although this walkthrough uses Strands Agents, the same ADOT-based pattern applies to other OpenTelemetry-compatible agent frameworks.

When choosing how to deploy your AI agents, understanding the observability trade-offs between different runtime environments helps you make the right architectural decision. Agents deployed directly on Amazon Bedrock AgentCore runtime benefit from automatic observability configuration. Agents running in non-AWS environments require additional manual setup but offer greater deployment flexibility. The following comparison highlights the key differences in telemetry collection, credential management, and use cases to help you determine the best approach for your requirements.

Aspect | Non-AWS Runtime | AgentCore runtime | | Telemetry supported | ADOT – manual OTEL variables required | ADOT – Automatic in-built OTEL variables | | Credential management | IAM access key/secret or IAM Roles Anywhere | Automatic (IAM role) | | Best for | Agents on-premises, GCP, Azure, or a non-AWS environment | Agents deployed on AWS with AgentCore |

Validated environments #

We tested the ADOT auto-instrumentation approach across two non-AWS environments:

Environment | Platform | Result | | On-premises (simulated) | Standalone server running in non-AWS environment | Strands agent reporting telemetry (sessions, traces, spans) in AgentCore Observability | | Google Cloud Shell (GCP) | Browser-based terminal running on Google Cloud Platform | Strands agent reporting telemetry (sessions, traces, spans) in AgentCore Observability |

Best practices #

Based on our testing, we recommend the following when setting up cross-platform AgentCore Observability:

Use consistent naming: Theservice.name

inOTEL_RESOURCE_ATTRIBUTES

becomes the agent name on the dashboard. Use descriptive names that identify the environment (for example,prod-onprem-support-agent

andstaging-gcp-research-agent ).Verify with: Before running the agent, confirm that your credentials work by runningget-caller-identity

firstpython -c "import boto3; print(boto3.client('sts').get_caller_identity())" . If this fails, the ADOT also fails silently.Use Python 3.10 or later: The ADOT requires Python 3.10 or later. We recommend Python 3.12 for the best compatibility with all dependencies.** Set session IDs for multi-turn conversations**: Use the OpenTelemetry baggage API to propagate session IDs:

Rotate credentials regularly: For production deployments, avoid long-lived access keys. ConsiderIAM Roles Anywherefor on-premises workloads, or use your cloud provider’s identity federation to assume AWS IAM roles.

Clean up #

To remove the resources created during this walkthrough:

This walkthrough uses Amazon Bedrock, Amazon CloudWatch, and AWS X-Ray, which incur costs. See the respective pricing pages for details.

Conclusion #

Amazon Bedrock AgentCore Observability isn’t limited to agents running on AgentCore runtime or within AWS. Using ADOT auto-instrumentation with IAM credentials and the correct OpenTelemetry environment variables, you can send telemetry from your choice of environment with internet access. Your agents can run on-premises, on GCP, on Azure, or anywhere else and still report to the same AgentCore Observability dashboard.

The setup requires a pip install

and a set of environment variables. The resulting telemetry is identical to what AgentCore runtime-hosted agents produce: sessions, traces, span metrics, and token usage, all in one unified view.

To get started, clone the sample code from GitHub and follow the instructions in the README to configure and run the agent in your environment.

For agents already running on AWS but outside AgentCore runtime (EKS, ECS, Lambda), refer to the AgentCore Observability for EKS-hosted agents tutorial. For agents on AgentCore runtime, observability is configured automatically. See Add observability to your AgentCore resources.

── more in #ai-agents 4 stories · sorted by recency
── more on @amazon web services (aws) 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/monitor-on-premises-…] indexed:0 read:9min 2026-08-13 ·