sdlc-agent-15-production-monitoring

Generates Databricks monitoring dashboards and alert rules from deployment packages.

1|2|Updated Aug 10, 2026
One-click install
npx skills add https://github.com/TRRaveendra/AI-Agents-Databricks --skill sdlc-agent-15-production-monitoring-trraveendra
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sdlc-agent-15-production-monitoring
Source: https://github.com/TRRaveendra/AI-Agents-Databricks/tree/main/ai-agent-skills/databricks-sdlc-agent-skills/15-production-monitoring-agent
Command: npx skills add https://github.com/TRRaveendra/AI-Agents-Databricks --skill sdlc-agent-15-production-monitoring-trraveendra

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires databricks-sdk, and includes references (resource) components.

What problem does it solve? After deploying a data pipeline on Databricks, teams still need to define failure alerts, latency and cost tracking, SLA monitoring, and dashboards by hand. This Skill acts as the final Production Monitoring Agent in a 15-agent SDLC pipeline, turning a Deployment Package into a validated monitoring dashboard and alert rules artifact. ## Core Features & Use Cases - Monitoring Definition Generation: Produces dashboard.json and alert_rules.json covering job/pipeline failure alerts, latency and cost tracking, LLM token usage, data-quality monitoring, and SLA monitoring. - Contract-Validated Output: Returns JSON matching a strict output contract with status, citations, tool calls, and token usage, with one repair retry on validation failure before routing to human review. - Natural-Language Monitoring Queries: Wires a Genie Agents space over monitoring tables so on-call engineers can ask questions like why latency spiked via the Genie Agents Conversation API. - Use Case: A Deployment Agent finishes releasing a pipeline; this agent reads the Deployment Package from the Unity Catalog volume, calls the Foundation Model API to define monitoring, and writes the dashboard and alert artifacts back to the lakehouse. ## Quick Start Hand this agent a Deployment Package for a ticket and ask it to produce the monitoring dashboard and alert rules artifacts for the pipeline.

Frequently Asked Questions about sdlc-agent-15-production-monitoring

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up monitoring dashboards and alerts for Databricks pipelines?

This agent generates dashboard.json and alert_rules.json covering job failure alerts, latency, cost, token usage, data quality, and SLA monitoring. It reads the Deployment Package from a Unity Catalog volume and writes the monitoring artifacts back to the lakehouse.

Can I call Genie Code from a Databricks job or orchestrator?

No, Genie Code is UI-only with no public API for headless invocation. Use the Foundation Model API via Model Serving endpoints for code generation, and the Genie Agents Conversation API for natural-language data questions.

What is the difference between Foundation Model API and Genie Agents Conversation API?

The Foundation Model API is a pay-per-token chat completions endpoint used for generating code, SQL, and documentation. The Genie Agents Conversation API answers natural-language questions over data in Genie Spaces but does not write general production code.

What happens when the agent output fails contract validation?

The agent gets one repair retry with the validation error appended to its context. If it still fails, the run is routed to state.needs_human for review instead of silently passing bad output downstream.

When does this agent return needs_clarification instead of complete?

It returns needs_clarification with specific questions when required upstream context is missing or contradictory. It never invents metadata, business rules, or test results to fill gaps.