Integrations
Microsoft Agent Framework
Trace Microsoft Agent Framework agents in Muster via the framework's built-in OpenTelemetry providers.
The Microsoft Agent Framework is an open-source framework for building intelligent agents — supports Azure OpenAI, OpenAI, and other LLM providers. Muster captures runs via the framework's built-in OpenTelemetry providers.
Setup
%pip install agent-framework langfuse --preimport 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["AZURE_OPENAI_API_KEY"] = "your-key"
os.environ["AZURE_OPENAI_ENDPOINT"] = "https://your-resource.openai.azure.com/"Enable observability
from langfuse import get_client
from agent_framework.observability import configure_otel_providers
langfuse = get_client()
configure_otel_providers(enable_sensitive_data=True)After this, every agent invocation, tool call, and LLM response is captured automatically and forwarded to Muster.