@XAMTO_AI: Another daring open-source observability tool that's going all out this time. The pain of being locked into SaaS vendor monitoring data is something only those who've experienced it truly understand: https://github.com/monoscope-tech/monoscope… This tool is called Monoscope, with three hardcore features: …
Summary
Monoscope is an open-source observability platform that stores logs, traces, and metrics in your own S3 buckets, supports natural language queries via LLMs, and uses AI agents to detect anomalies and send email reports.
View Cached Full Text
Cached at: 06/17/26, 01:44 AM
Another open-source observability tool that’s truly serious this time — they’ve gone all in. The pain of having monitoring data locked in by SaaS vendors? Anyone who’s lived through it knows. :https://github.com/monoscope-tech/monoscope…
Meet Monoscope: three hardcore features that deliver. Logs, traces, and metrics all go into your own S3 bucket — data sovereignty in your hands, no vendor protection fees. Query data directly with natural language, backed by an LLM — no more memorizing user-hostile query syntaxes. AI agents patrol on a schedule to catch anomalies and automatically email you when issues are found. Native OpenTelemetry with 750+ integrations, real-time log streaming. Self-hosters will love it. Keep an eye on this one.
monoscope-tech/monoscope
Source: https://github.com/monoscope-tech/monoscope
Open-source observability platform with S3 storage
Ingest and explore logs, traces, and metrics stored in your S3 buckets. Query with natural language. Create AI agents that detect anomalies and send daily/weekly reports to your inbox.
GitHub Release (https://github.com/monoscope-tech/monoscope/releases) License Haskell (https://www.haskell.org/) Discord (https://discord.gg/BSFCaUHxt4)
Website (https://monoscope.tech) • Playground (https://app.monoscope.tech/p/00000000-0000-0000-0000-000000000000/log_explorer) • Discord (https://discord.gg/BSFCaUHxt4) • Twitter (https://x.com/monoscope-tech) • Documentation (https://docs.monoscope.tech)
What is Monoscope? • Cloud vs Self-hosted • Quick Start • AI Agents • Roadmap
What is Monoscope?
Monoscope is an open-source observability platform that stores your telemetry data in S3-compatible storage. Self-host it or use our cloud offering (https://monoscope.tech).
Core capabilities:
- 💰 S3 storage — Store years of logs, metrics, and traces affordably in your own S3 buckets
- 💬 Natural language queries — Search your data using plain English via LLMs
- 🤖 AI agents — Create agents that run on a schedule to detect anomalies and surface insights
- 📧 Email reports — Receive daily/weekly summaries of important events and anomalies
- 🔭 OpenTelemetry native — 750+ integrations out of the box
- ⚡ Live tail — Stream logs and traces in real-time
- 🕵️ Unified view — Correlate logs, metrics, traces, and session replays in one place
Cloud vs Self-hosted
In both options, you bring your own S3 buckets—your data stays yours.
| Cloud | Self-hosted | |
|---|---|---|
| Storage | Your S3 buckets | Your S3 buckets |
| Compute | Managed by us | You manage |
| Auth & SSO | Built-in | DIY |
| Alert channels | Slack, PagerDuty, etc. | Basic email |
| Pricing | Usage-based (https://monoscope.tech/pricing) | Free (AGPL-3.0) |
→ Start free on Cloud (https://monoscope.tech) or continue below to self-host.
Quick Start
bash git clone https://github.com/monoscope-tech/monoscope.git cd monoscope docker-compose up
Visit http://localhost:8080 (default: admin/changeme)
Send Test Data
Populate your dashboard with test telemetry: ``bash monoscope auth login
Single event — see your message appear in the dashboard
monoscope send-event -m “Hello from Monoscope”
Sustained load — stress-test the pipeline
monoscope telemetrygen –kind=trace –rate=5 –count=50 ``
CLI
Manage your Monoscope project from the terminal — search logs, query metrics, manage monitors and dashboards, triage issues, and more.
bash curl https://monoscope.tech/install.sh | sh monoscope auth login
See the CLI reference for the full command list.
Agentic pipeline
Every CLI command emits a stable JSON envelope, so you can chain discovery → search → triage without manual munging. This is the same pipeline a Claude Code skill runs end-to-end: ``bash
1. What services exist? (Precomputed; no aggregation query needed.)
SVC=$(monoscope facets resource.service.name –top 1
| jq -r ‘.[“resource.service.name”][0].value’)
2. Grab one error event from that service — id only, ready to chain.
ID=(monoscope logs search 'severity.text=="error"' \ --service "SVC“ –first –id-only)
3. Pull the surrounding 5 minutes of traffic, with a per-trace summary
showing which other services were affected.
monoscope events context –window 5m –summary
–at “(monoscope events get "ID” | jq -r .timestamp)“
| jq ‘.traces | sort_by(-.error_count) | .[0:3]’
4. Acknowledge the open issue once you have a hypothesis.
monoscope issues list –service “$SVC” –status open
| jq -r ‘.data[].id’ | head -3
| xargs -I {} monoscope issues ack {}
``
Each step’s output shape is documented and stable:
| Command | Envelope |
|---|---|
facets [FIELD] | {: [{value, count}, ...]} |
events search (and logs/traces) | {events: [...], count, has_more, cursor} |
events context --summary | {events, count, traces: [{trace_id, services, span_count, error_count}]} |
issues list, monitors list, … | {data: [...], pagination: {has_more, total, cursor, page, per_page}} |
auth status (agent mode) | {authenticated, method, api_url, project} |
Set MONOSCOPE_AGENT_MODE=1 (or run with --agent) to force JSON output and disable interactive prompts — auto-detected when CI or CLAUDE_CODE is set.
Claude Code Skills
Let Claude investigate incidents, triage alerts, and write KQL queries using the monoscope CLI — install the skills plugin:
``bash
Claude Code
claude plugin marketplace add monoscope-tech/skills claude plugin install monoscope-skills@monoscope-skills
or via npx (Cursor, Cline, Copilot, and other agents)
npx skills add monoscope-tech/skills `` Restart Claude Code after installation. Skills activate automatically when relevant — e.g. “investigate the 500 errors in payment-api” or “do an on-call sweep”. See github.com/monoscope-tech/skills (https://github.com/monoscope-tech/skills) for the full skill list and documentation.
MCP Server
Monoscope exposes itself as a Model Context Protocol (https://modelcontextprotocol.io/) server at /api/v1/mcp, so any MCP-aware client (Claude Desktop, Cursor, Cline, custom agents) can search events, manage monitors and dashboards, triage issues, and run composite workflows like search_events_nl (natural-language → KQL) and analyze_issue (LLM-assisted root-cause).
json { "mcpServers": { "monoscope": { "url": "https://api.monoscope.tech/api/v1/mcp", "headers": { "Authorization": "Bearer YOUR_API_KEY" } } } }
Every public REST endpoint is auto-registered as a verb-first tool (list_monitors, search_events, mute_monitor, …).
See the MCP reference for the full protocol, tool catalog, and examples.
Integration
Auto-instrument your apps
Python
bash pip install opentelemetry-distro opentelemetry-exporter-otlp opentelemetry-bootstrap -a install OTEL_SERVICE_NAME="my-app" \ OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4317" \ opentelemetry-instrument python myapp.py
Node.js
bash npm install --save @opentelemetry/auto-instrumentations-node OTEL_SERVICE_NAME="my-app" \ OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4317" \ node --require @opentelemetry/auto-instrumentations-node/register app.js
Java
bash curl -L https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar -o otel-agent.jar OTEL_SERVICE_NAME="my-app" \ OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4317" \ java -javaagent:otel-agent.jar -jar myapp.jar
Kubernetes
``bash
Install OpenTelemetry Operator
kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releases/latest/download/opentelemetry-operator.yaml
Configure auto-instrumentation
kubectl apply -f - <<EOF apiVersion: opentelemetry.io/v1alpha1 kind: Instrumentation metadata: name: monoscope-instrumentation spec: exporter: endpoint: http://monoscope:4317 EOF
Annotate your workloads
kubectl annotate namespace default instrumentation.opentelemetry.io/inject-java=“true” ``
Natural Language Queries
Query your telemetry data in plain English:
- “Show me all errors in the payment service in the last hour”
- “What caused the spike in response time yesterday?”
- “Which endpoints have the highest p99 latency?”
AI Agents & Reports
Create AI agents that monitor your systems on a schedule:
- Scheduled analysis — Agents run at intervals you define (hourly, daily, weekly)
- Anomaly detection — Automatically surface unusual patterns in logs, metrics, and traces
- Email reports — Receive summaries of important events and insights directly in your inbox
- Customizable focus — Configure agents to watch specific services, error types, or metrics
Architecture
mermaid graph LR A[Your Apps] -->|Logs/Metrics/Traces| B[Ingestion API] B --> C[TimeFusion Engine] C --> D[(S3 Storage)] D --> E[Query Engine] E --> F[Dashboards] D --> G[AI Agent Scheduler] G -->|LLM Analysis| H[Anomaly Detection] H --> I[Email Reports] H --> J[Alert Channels]
Project Structure
Monoscope is organized into four primary components:
app/— Haskell server binary (WAI/Yesod web application)cli/— Command-line interface for managing projects, querying data, and automating workflowsweb-components/— Custom UI elements (Web Components) for dashboards and log explorationsrc/— Core Haskell library exporting shared types, utilities, and business logic
Powered by TimeFusion
Monoscope is built on TimeFusion (https://github.com/monoscope-tech/timefusion), our open-source time-series database for observability workloads.
| 🗄️ S3-native | Data lives in your S3 buckets—no vendor lock-in |
| 🐘 PostgreSQL compatible | Use any Postgres client or driver |
| ⚡ 500K+ events/sec | Columnar storage with Apache Arrow |
| 💵 Pay only for S3 | No expensive proprietary storage fees |
How It Compares
| Feature | Monoscope | Datadog | Elastic | Prometheus |
|---|---|---|---|---|
| S3/Object Storage | ✅ Native | ❌ | ✅ | ✅ |
| Natural Language Query | ✅ | ❌ | ❌ | ❌ |
| AI Agents & Reports | ✅ Built-in | ❌ Add-on | ❌ | ❌ |
| Open Source | ✅ AGPL-3.0 | ❌ | ✅ | ✅ |
| Self-hostable | ✅ | ❌ | ✅ | ✅ |
Screenshots
Log Explorer - Unified View
Logs and trace spans displayed together in context for complete observability.
Trace Context Integration
See detailed trace information alongside logs for debugging complex distributed systems.
Dashboard Analytics
Real-time metrics and performance monitoring with AI-powered insights.
Trusted by Leading Companies
“Monoscope notifies us about any slight change on the system. Features that would cost us a lot more elsewhere.” — Samuel Joseph, Woodcore
Documentation
Roadmap
- Custom dashboards builder
- More out-of-the-box dashboards
- AIOps workflow builder
- Full migration to TimeFusion storage engine
- Metrics aggregation rules
- Multi-tenant workspace support
- More alert channel integrations
See our public roadmap (https://github.com/monoscope-tech/monoscope/projects) for details and to vote on features.
Community
💬 Discord (https://discord.gg/BSFCaUHxt4) • 🐛 Issues (https://github.com/monoscope-tech/monoscope/issues) • 🐦 Twitter (https://x.com/monoscope-tech)
License
AGPL-3.0. See LICENSE for details. For commercial licensing options, contact us at [email protected].
Similar Articles
@XAMTO_AI: Now you can finally let AI keep an eye on bargains on Xianyu around the clock! : https://github.com/Usagi-org/ai-goofish-monitor… This tool is called ai-goofish-monitor, essentially an automated Xianyu item monitor.
ai-goofish-monitor is an open-source Xianyu item monitoring tool based on Playwright and AI, supporting multi-task concurrency, AI item analysis, multi-channel notifications, and more.
@XAMTO_AI: Brothers and sisters, don't say it's hard to find information gaps anymore! This magical tool scans 10 platforms at once, and directly condenses what the whole internet has been talking about and betting on in the past 30 days into one report! last30days-skill has topped GitHub Trending #1! 7000+ stars in a week, 13k total stars! Not...
An AI agent-driven search engine that aggregates the latest content from platforms like Reddit, X, YouTube, etc., and automatically generates cross-validated reports. It has topped GitHub Trending #1.
@lxfater: Finally found an AI-native enterprise collaboration software!! Here's the story: On this year's April Fools' Day, my friend's Slack workspace got locked!! Years of client chat logs, decision-making processes, and the company knowledge base—all just gone. Even scarier is that as these digital assets disappear, enterprise AI…
The author recommends Tanka AI, an AI-native enterprise collaboration tool designed to mitigate data loss risks associated with third-party platforms, highlighting its strengths in securing user data sovereignty and integrating enterprise-grade AI capabilities.
@0xKingsKuan: Auto-Fix Bugs, Observability Tool! How frustrating was managing production systems before? Logs, traces, metrics everywhere, critical errors drowned in noise. When something went wrong, you had to manually dig through logs, guess the call chain, spend ages troubleshooting without finding the root cause, let alone fixing it automatically. Now, superloglabs directly...
Superloglabs has open-sourced Superlog, an agentic observability platform based on OpenTelemetry that automatically clusters events, generates incidents, and helps fix bugs.
@seclink: Industrial-Grade Monitoring SaaS Component: Profound (Currently the most well-known enterprise-level GEO platform) Role: It can track your brand's "Share of Voice" in major LLMs (ChatGPT, Claude, Gemini), analyzing under which key...
The article introduces three AI search monitoring SaaS tools: Profound for tracking brand share of voice in LLMs, ZipTie.dev for monitoring Google AI Overviews and other AI search engines, and Semrush AIO for AI search optimization.