Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Monitor Lindy AI agent health, task success rates, and credit consumption. Use when setting up monitoring, building dashboards, configuring alerts, or tracking agent performance over time. Trigger with phrases like "lindy monitoring", "lindy observability", "lindy metrics", "lindy logging", "lindy dashboard".
.claude/skills/jeremylongshore-lindy-observability/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 76% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 38% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 50% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 55% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 37% | 0% |
Monitor Lindy AI agent execution health, task completion rates, step-level failures, trigger frequency, and credit consumption. Lindy provides built-in task history in the dashboard. External observability requires webhook callbacks, the Task Completed trigger, and application-side metrics collection.
| Signal | Source | Why It Matters | |--------|--------|---------------| | Task completion rate | Tasks tab / callback | Measures agent reliability | | Task duration | Task detail view | Tracks performance over time | | Step failure rate | Task detail (red steps) | Identifies broken actions | | Credit consumption | Billing dashboard | Budget tracking | | Trigger frequency | Task count over time | Detects trigger storms | | Agent error rate | Failed tasks / total tasks | Overall health indicator |
Lindy's Tasks tab provides per-agent monitoring:
Use Lindy's built-in Task Completed trigger to build an observability agent:
Monitoring Agent:
Trigger: Task Completed (from Production Support Agent)
Condition: "Go down this path if the task failed"
→ Action: Slack Send Channel Message to #ops-alerts
Message: "Support Agent task failed: {{task.error}}"
Condition: "Go down this path if task duration > 30 seconds"
→ Action: Slack Send Channel Message to #ops-alerts
Message: "Support Agent slow: {{task.duration}}s"Configure agents to call your metrics endpoint on task completion:
typescript// metrics-collector.ts — Receive agent metrics via HTTP Request action import express from 'express'; import { Counter, Histogram, Gauge } from 'prom-client'; const app = express(); app.use(express.json()); // Prometheus metrics const taskCounter = new Counter({ name: 'lindy_tasks_total', help: 'Total Lindy agent tasks', labelNames: ['agent', 'status'], }); const taskDuration = new Histogram({ name: 'lindy_task_duration_seconds', help: 'Lindy task execution duration', labelNames: ['agent'], buckets: [1, 2, 5, 10, 30, 60, 120], }); const creditGauge = new Gauge({ name: 'lindy_credits_consumed', help: 'Credits consumed per task', labelNames: ['agent'], }); // Receive metrics from Lindy HTTP Request action app.post('/lindy/metrics', (req, res) => { const auth = req.headers.authorization; if (auth !== `Bearer ${process.env.LINDY_WEBHOOK_SECRET}`) { return res.status(401).json({ error: 'Unauthorized' }); } const { agent, status, duration, credits } = req.body; taskCounter.inc({ agent, status }); taskDuration.observe({ agent }, duration); creditGauge.set({ agent }, credits); res.json({ recorded: true }); }); // Prometheus scrape endpoint app.get('/metrics', async (req, res) => { res.set('Content-Type', 'text/plain'); res.send(await register.metrics()); });
Lindy agent configuration: Add an HTTP Request action as the last step in each monitored agent:
https://monitoring.yourapp.com/lindy/metricsjson { "agent": "support-bot", "status": "{{task.status}}", "duration": "{{task.duration}}", "credits": "{{task.credits}}" }
Key panels for a Lindy monitoring dashboard:
| Panel | Metric | Type | |-------|--------|------| | Task Success Rate | rate(lindy_tasks_total{status="completed"}[1h]) | Percentage gauge | | Task Failures | rate(lindy_tasks_total{status="failed"}[1h]) | Counter | | Duration p50/p95 | histogram_quantile(0.95, lindy_task_duration_seconds) | Time series | | Credit Burn Rate | rate(lindy_credits_consumed[1h]) | Counter | | Active Agents | Count of agents with tasks in last 24h | Stat panel | | Trigger Frequency | Tasks per hour by agent | Bar chart |
yaml# Prometheus alert rules groups: - name: lindy rules: - alert: LindyAgentHighFailureRate expr: rate(lindy_tasks_total{status="failed"}[30m]) > 0.1 for: 10m labels: severity: warning annotations: summary: "Lindy agent {{ $labels.agent }} failure rate > 10%" - alert: LindyAgentDown expr: absent(lindy_tasks_total{agent="support-bot"}[1h]) for: 30m labels: severity: critical annotations: summary: "No tasks from support-bot in 1 hour" - alert: LindyCreditsBurnRate expr: rate(lindy_credits_consumed[1h]) * 720 > 5000 for: 15m labels: severity: warning annotations: summary: "Credit burn rate will exhaust monthly budget"
Use Lindy Evals to catch quality regressions:
Score 1 (pass) if the response is professional, accurate, and under 200 words. Score 0 (fail) if the response contains hallucinations or exceeds 200 words.
Note: Eval runs consume credits but do NOT execute real actions (safe simulation).
| Level | What You Monitor | How | |-------|-----------------|-----| | L0 | Nothing | Manual dashboard checks | | L1 | Task failures | Task Completed trigger + Slack alerts | | L2 | Success rate + duration | HTTP Request action + Prometheus | | L3 | Credit burn + quality | Evals + Grafana dashboards | | L4 | Automated remediation | Monitoring agent auto-restarts failed agents |
| Issue | Cause | Solution | |-------|-------|----------| | Metrics endpoint down | Monitoring server crashed | Alert on scrape failures | | Task Completed not firing | Monitoring agent paused | Check monitoring agent is active | | Credit burn alert false positive | Legitimate traffic spike | Tune alert threshold | | Eval scores dropping | Prompt drift or model change | Review recent prompt/model changes |
Proceed to lindy-incident-runbook for incident response procedures.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-17 | pass→pass | 19,380 | 6,035 | -69% | 1 | 1 | 0% | 2,427 | 2,728 | +12% | 0 | 0 | — |
case-03 | fail→fail | 21,187 | 18,231 | -14% | 1 | 1 | 0% | 3,228 | 4,822 | +49% | 0 | 0 | — |
case-04 | fail→pass | 15,833 | 12,543 | -21% | 1 | 1 | 0% | 1,736 | 3,063 | +76% | 0 | 0 | — |
case-05 | pass→pass | 18,640 | 10,905 | -41% | 1 | 1 | 0% | 2,329 | 2,614 | +12% | 0 | 0 | — |
case-01 | fail→pass | 23,077 | 20,688 | -10% | 1 | 1 | 0% | 3,818 | 5,258 | +38% | 0 | 0 | — |
case-02 | fail→pass | 19,763 | 15,271 | -23% | 1 | 1 | 0% | 2,479 | 3,716 | +50% | 0 | 0 | — |
case-06 | fail→pass | 18,714 | 10,552 | -44% | 1 | 1 | 0% | 1,780 | 2,754 | +55% | 0 | 0 | — |
case-07 | fail→fail | 21,373 | 17,760 | -17% | 1 | 1 | 0% | 2,906 | 4,365 | +50% | 0 | 0 | — |
case-08 | fail→fail | 17,303 | 16,131 | -7% | 1 | 1 | 0% | 2,293 | 3,758 | +64% | 0 | 0 | — |
case-09 | fail→fail | 21,016 | 13,912 | -34% | 1 | 1 | 0% | 2,716 | 3,379 | +24% | 0 | 0 | — |
case-10 | fail→pass | 18,782 | 10,159 | -46% | 1 | 1 | 0% | 2,449 | 3,347 | +37% | 0 | 0 | — |
case-11 | fail→pass | 28,261 | 12,081 | -57% | 1 | 1 | 0% | 1,778 | 3,312 | +86% | 0 | 0 | — |
case-12 | pass→pass | 14,850 | 17,336 | +17% | 1 | 1 | 0% | 2,358 | 3,505 | +49% | 0 | 0 | — |
case-13 | fail→pass | 28,278 | 14,546 | -49% | 1 | 1 | 0% | 3,097 | 3,700 | +19% | 0 | 0 | — |
case-14 | pass→pass | 20,876 | 21,108 | +1% | 1 | 1 | 0% | 2,413 | 3,896 | +61% | 0 | 0 | — |
case-15 | fail→pass | 22,262 | 12,712 | -43% | 1 | 1 | 0% | 2,588 | 3,770 | +46% | 0 | 0 | — |
case-16 | fail→pass | 12,606 | 8,976 | -29% | 1 | 1 | 0% | 2,010 | 2,546 | +27% | 0 | 0 | — |
case-18 | fail→pass | 12,004 | 11,645 | -3% | 1 | 1 | 0% | 2,228 | 3,063 | +37% | 0 | 0 | — |
case-19 | fail→fail | 17,255 | 11,786 | -32% | 1 | 1 | 0% | 2,094 | 2,809 | +34% | 0 | 0 | — |
case-20 | fail→fail | 20,660 | 17,495 | -15% | 1 | 1 | 0% | 2,894 | 4,740 | +64% | 0 | 0 | — |
case-21 | pass→pass | 21,572 | 15,987 | -26% | 1 | 1 | 0% | 2,782 | 4,630 | +66% | 0 | 0 | — |
case-22 | pass→pass | 15,429 | 22,502 | +46% | 1 | 1 | 0% | 2,885 | 5,025 | +74% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +45 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.