Atla
Historical reference for the discontinued Atla Insights integration.
The Atla Insights platform shut down on February 16, 2026, and the atla-insights SDK is no longer maintained. This integration no longer works.
This page preserves the former integration as a historical reference. Choose an available observability integration for a new application.
Prerequisites
The former service required an Atla account and the atla-insights package. Its hosted onboarding and trace dashboard are no longer available.
Configuration
The former SDK read an ATLA_API_KEY credential. The example below is retained to explain existing integrations; it is not a runnable setup for the discontinued service.
Historical Example
from os import getenv
from agno.agent import Agent
from agno.models.openai import OpenAIResponses
from agno.tools.hackernews import HackerNewsTools
from atla_insights import configure, instrument_agno
# Step 1: Configure Atla
configure(token=getenv("ATLA_API_KEY"))
# Step 2: Create your Agno agent
agent = Agent(
name="Market Analysis Agent",
model=OpenAIResponses(id="gpt-5.2"),
tools=[HackerNewsTools()],
instructions="Provide professional market analysis with data-driven insights.",
debug_mode=True,
)
# Step 3: Instrument and execute
with instrument_agno("openai"):
response = agent.run("Retrieve the latest news about the stock market.")
print(response.content)The screenshot below shows the former dashboard.
