<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dev Hajare</title>
    <description>The latest articles on DEV Community by Dev Hajare (@dev_hajare_d11ce990734a91).</description>
    <link>https://dev.to/dev_hajare_d11ce990734a91</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4062735%2Fec1f9e0e-16b0-4955-b263-abef41f14beb.jpg</url>
      <title>DEV Community: Dev Hajare</title>
      <link>https://dev.to/dev_hajare_d11ce990734a91</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dev_hajare_d11ce990734a91"/>
    <language>en</language>
    <item>
      <title>Agentic AI for Production Support: Moving from Alerts to Intelligent Incident Resolution</title>
      <dc:creator>Dev Hajare</dc:creator>
      <pubDate>Sun, 16 Aug 2026 07:37:27 +0000</pubDate>
      <link>https://dev.to/dev_hajare_d11ce990734a91/agentic-ai-for-production-support-moving-from-alerts-to-intelligent-incident-resolution-d9g</link>
      <guid>https://dev.to/dev_hajare_d11ce990734a91/agentic-ai-for-production-support-moving-from-alerts-to-intelligent-incident-resolution-d9g</guid>
      <description>&lt;h1&gt;
  
  
  Agentic AI for Production Support: Moving from Alerts to Intelligent Incident Resolution
&lt;/h1&gt;

&lt;p&gt;Production support today is still highly dependent on engineers.&lt;/p&gt;

&lt;p&gt;An alert comes in → engineer checks logs → searches previous incidents → identifies possible RCA → validates the solution → takes action.&lt;/p&gt;

&lt;p&gt;While working on this problem, I started exploring a simple question:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Can Agentic AI reduce this dependency without giving AI uncontrolled access to production?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is the idea behind my &lt;strong&gt;Agentic Production Support&lt;/strong&gt; project.&lt;/p&gt;

&lt;h2&gt;
  
  
  From Alert to AI-Assisted RCA
&lt;/h2&gt;

&lt;p&gt;The basic flow I am building is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Incident → Clean Layer → RAG → AI Agent → RCA → Validation → Human Approval → Action&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Instead of sending every incident directly to an LLM, the system first prepares and controls the context.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;RAG (Retrieval-Augmented Generation)&lt;/strong&gt; searches historical incidents and knowledge to provide relevant context.&lt;/p&gt;

&lt;p&gt;The AI agent then uses this context to generate a possible &lt;strong&gt;Root Cause Analysis (RCA)&lt;/strong&gt; and recommended action.&lt;/p&gt;

&lt;p&gt;But there is an important challenge here.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI Governance Before AI Intelligence
&lt;/h2&gt;

&lt;p&gt;Production logs can contain:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IP addresses and hostnames&lt;/li&gt;
&lt;li&gt;AWS resource IDs and ARNs&lt;/li&gt;
&lt;li&gt;Project/environment information&lt;/li&gt;
&lt;li&gt;File paths&lt;/li&gt;
&lt;li&gt;Email addresses and PII&lt;/li&gt;
&lt;li&gt;API keys, JWTs and bearer tokens&lt;/li&gt;
&lt;li&gt;Infrastructure capacity information&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The LLM doesn't need most of this information to understand that a service failed because a disk became full.&lt;/p&gt;

&lt;p&gt;So I introduced a &lt;strong&gt;Model Egress Governance Layer&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Production Incident&lt;br&gt;
        ↓&lt;br&gt;
Clean / Sanitization Layer&lt;br&gt;
        ↓&lt;br&gt;
RAG + Embeddings&lt;br&gt;
        ↓&lt;br&gt;
AI Agent&lt;br&gt;
        ↓&lt;br&gt;
RCA + Validation&lt;br&gt;
        ↓&lt;br&gt;
Human-in-the-Loop&lt;br&gt;
        ↓&lt;br&gt;
Action&lt;/p&gt;

&lt;p&gt;The principle is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Give AI the technical context it needs, but not the identity of your production environment.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The same control should apply before &lt;strong&gt;LLM calls, embeddings, RAG indexing, retrieval queries and AI observability&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For high-risk information such as passwords, API keys or authorization tokens, my approach is &lt;strong&gt;fail closed&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sensitive information still detected → Block the model call.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Agentic Production Support?
&lt;/h2&gt;

&lt;p&gt;I don't see Agentic AI replacing production engineers.&lt;/p&gt;

&lt;p&gt;I see it reducing the repetitive work around:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Incident Detection → Correlation → Knowledge Retrieval → RCA → Validation → Recommended Action&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;while keeping governance and &lt;strong&gt;Human-in-the-Loop (HITL)&lt;/strong&gt; controls around high-impact actions.&lt;/p&gt;

&lt;p&gt;This project is still evolving, and I am building it openly so that the architecture can be tested, challenged and improved.&lt;/p&gt;

&lt;h3&gt;
  
  
  Open Source / GitHub
&lt;/h3&gt;

&lt;p&gt;The implementation includes &lt;strong&gt;Python, LLM integration, RAG, embeddings, AI agents, incident management, RCA and AI governance&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;GitHub:&lt;/strong&gt;  &lt;a href="https://github.com/devhazare/agentic-production-support" rel="noopener noreferrer"&gt;https://github.com/devhazare/agentic-production-support&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you are working on &lt;strong&gt;AIOps, Agentic AI, SRE automation, LLMOps, RAG or AI Governance&lt;/strong&gt;, I would be interested in your feedback and contributions.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>rag</category>
      <category>agentaichallenge</category>
    </item>
  </channel>
</rss>
