AnoSys is a full-stack AI observability platform that ingests traces, metrics, logs, evals, and custom signals via OpenTelemetry or native SDKs — giving you a single system of record across every framework. Whether you run LangChain, CrewAI, OpenAI Agents SDK, or custom instrumentation, AnoSys normalizes everything into a unified backend. No vendor lock-in, no data silos.
| Capability | Description |
|---|---|
| Observability Platform | Ingest traces, metrics, logs, evals, and custom signals — one system of record across every framework |
| Anomaly Detection | Spot silent failures, cost spikes, latency drift, and abuse patterns in real time |
| Continuous Evals | Run evals in CI and production; catch accuracy drops, safety violations, and policy drift |
| Custom Pipelines | Enrich, route, and transform signals without glue code; trigger actions on anomalies or policy violations |
| Root Cause Analysis | Go from "something broke" to "here's why" — causal paths across agents, models, and infrastructure |
| Alerting & Incidents | Context-aware routing, auto-escalation, and ownership tracking from detection to resolution |
| Dashboards & KPIs | Pre-built views for model health, agent reliability, and cost — with drill-downs for debugging |
| Natural Language Interface | Ask questions in plain English, auto-generate queries, and summarize incidents |
| AI Systems | Agentic AI · Foundation Models · AI Safety & Compliance |
| Security & Fraud | Network Security · Online Advertising & Fraud · National Defense |
| Operations & Scale | Infrastructure Monitoring · IoT & Streaming Analytics |
anosys-sdk — Instrumentation SDK
The unified Python SDK for AnoSys. Ships as modular packages you can install independently:
pip install anosys-sdk-core # Core decorator & logger
pip install anosys-sdk-openai # OpenAI API auto-instrumentation
pip install anosys-sdk-openai-agents # OpenAI Agents SDK integration
Quick start — OpenAI integration:
from openai import OpenAI
from anosys_sdk_openai import AnosysOpenAILogger
AnosysOpenAILogger() # Initialize once
client = OpenAI()
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)
# Calls are automatically logged to AnoSys ✨Quick start — OpenAI Agents:
from agents import Agent, Runner, set_tracing_processor
from anosys_sdk_openai_agents import AnosysOpenAIAgentsLogger
set_tracing_processor(AnosysOpenAIAgentsLogger())
agent = Agent(name="Assistant", instructions="You are helpful.")
result = Runner.run_sync(agent, "Hello!")Quick start — Custom function logging:
from anosys_sdk_core import anosys_logger
@anosys_logger(source="my_app")
def my_function(data):
return process(data)License: Apache 2.0
anosys-logger-4-openai — OpenAI Logger (Python & Node.js)
Automatic observability for OpenAI API calls with zero-config instrumentation. Available for both Python and Node.js.
Key features:
- ✅ Zero-config instrumentation — just install and use
- ✅ Full streaming support with chunk aggregation
- ✅ OpenTelemetry Gen AI semantic conventions
- ✅ Custom decorators for any function (sync or async)
- ✅ Error tracking with full stack traces
- ✅ Distributed tracing with trace IDs
anosys-logger-4-openai-agents — OpenAI Agents Logger
Observability integration for the OpenAI Agents SDK — trace tool calls, agent decisions, and multi-agent handoffs.
AnoSys-Demo-Customer — Demo Application
A live showcase of AnoSys agentic capabilities built around a luxury real-estate experience (Elysian Estates). Demonstrates intelligent chat orchestration with @openai/chatkit-react, agentic workflows for complex inquiries, and context-aware AI assistants.
┌─────────────────┐
│ Your App Code │
└────────┬────────┘
│
▼
┌─────────────────┐ ┌──────────────────┐
│ AnoSys Logger │────▶│ OpenTelemetry │
│ (Interceptor) │ │ Instrumentation │
└────────┬────────┘ └──────────────────┘
│
▼
┌─────────────────┐
│ OpenAI API │
└────────┬────────┘
│
▼
┌─────────────────┐
│ AnoSys API │
│ (Telemetry) │
└─────────────────┘
- Sign up at console.anosys.ai and grab your API key.
- Install the SDK package for your framework:
pip install anosys-sdk-openai
- Set environment variables:
export ANOSYS_API_KEY="your-anosys-key" export OPENAI_API_KEY="your-openai-key"
- Initialize the logger and use your AI framework normally — calls are captured automatically.
- 🌐 Website: anosys.ai
- 📖 Documentation: docs.anosys.ai
- 🎮 Console: console.anosys.ai
- 📧 Support: support@anosys.ai
Individual repositories are licensed under their own terms. The primary SDK is released under the Apache 2.0 license. See each repository for details.
Built with ❤️ by the AnoSys team — United States 🇺🇸