Integrations
Strands Agents (AWS)
Trace AWS Strands Agents in Muster via OpenTelemetry.
Strands Agents is AWS's open-source agent SDK. Muster captures Strands runs through OpenTelemetry — install the OTel extra, set credentials, and the agent emits spans automatically.
Setup
%pip install "strands-agents[otel]" strands-agents-tools langfuseimport os
os.environ["LANGFUSE_PUBLIC_KEY"] = "pk-lf-..."
os.environ["LANGFUSE_SECRET_KEY"] = "sk-lf-..."
os.environ["LANGFUSE_BASE_URL"] = "https://app.getmuster.io"
os.environ["OPENAI_API_KEY"] = "sk-proj-..."from langfuse import get_client
langfuse = get_client()
langfuse.auth_check()Run an agent
from strands import Agent
from strands.models.openai import OpenAIModel
model = OpenAIModel(model_id="gpt-4o-mini")
agent = Agent(model=model, system_prompt="You are helpful.")
results = agent("Tell me about Muster")LLM calls, tool usage, latency, and cost are captured automatically.