1---2name: llm-aiops3description: Use when working on AIOps (AI for IT Operations) tasks — incident management, root cause analysis, log parsing/anomaly detection, cloud infrastructure management, or applying LLMs to IT operations. Also use when researching LLM-based solutions for incident response, fault localization, or infrastructure-as-code.4---56# LLM AIOps Reference78## Overview9Curated reference applying Large Language Models to AIOps, based on the [awesome-LLM-AIOps](https://github.com/Jun-jie-Huang/awesome-LLM-AIOps) research taxonomy. Covers incident management, log analysis, and infrastructure management.1011## When to Use12- **Incidents**: triaging, diagnosing, mitigating cloud incidents13- **RCA**: root cause analysis of system failures14- **Logs**: parsing, anomaly detection, logging statement generation15- **Infrastructure**: IaC, performance diagnosis, LLM training platforms16- **AIOps QA**: domain-specific question answering for operations1718## Taxonomy & Key Approaches1920### 1. LLM for Incident Management2122| Area | Key Approaches | Notable Systems |23|------|---------------|-----------------|24| **Surveys & Benchmarks** | Evaluation frameworks for AIOps agents | AIOpsLab (MLSys 2025), ITBench (ICML 2025) |25| **Incident Diagnosis** | LLM agents + diagnostic tools | D-Bot (VLDB 2024), NetAssistant (NSDI 2024), FLASH (Preprint 2024) |26| **Incident Reporting** | Fine-tuning, CoT prompting for summarization | Oasis (FSE 2023), COLA (ICSE-SEIP 2024), MonitorAssistant (FSE 2024) |27| **Root Cause Analysis** | Agents with tool augmentation, CoT, ICL, multi-agent | RCAgent (CIKM 2024), mABC (EMNLP 2024), Flow-of-Action (WWW 2025), OpenRCA (ICLR 2025), COCA (ICSE 2025), RCACopilot (EuroSys 2024) |28| **Incident Mitigation** | Agent-based with troubleshooting guides, RAG | Nissist (ECAI 2024), LLexus (SIGOPS 2024), STRATUS (NeurIPS 2025) |29| **Postmortem Analysis** | Fine-tuning for fault profiling | FaultProfIT (ICSE-SEIP 2024), FAIL (ASE 2024) |30| **AIOps Q&A** | Instruction tuning, RAG, domain-specialized LLMs | OWL (ICLR 2024), iKnow (ASE 2025), OpsEval (Preprint 2023), MSQA (EMNLP 2023) |3132### 2. LLM for Log Analysis3334| Area | Key Approaches | Notable Systems |35|------|---------------|-----------------|36| **Log Parsing** | ICL prompting, adaptive caching, entropy + CoT merging | DivLog (ICSE 2024), LILAC (FSE 2024), LogBatcher (ASE 2024), LUNAR (FSE 2025), LibreLog (ICSE 2025) |37| **Log Anomaly Detection** | Prompting, RAG, fine-tuning | LogGPT (Preprint 2023), LogPrompt (ICPC 2024), RAGLog (Preprint 2024), CodeAD (2025) |38| **Logging Statement Generation** | ICL, fine-tuning, static context analysis | UniLog (ICSE 2024), SCLogger (FSE 2024), FastLog (ISSTA 2024) |3940### 3. LLM for Infrastructure Management4142| Area | Key Approaches | Notable Systems |43|------|---------------|-----------------|44| **Infrastructure-as-Code** | Agent-based bug discovery, semantic checking | Unearthing IaC Checks (SOSP 2024) |45| **LLM Training Platform** | Black-box performance diagnosis | LLMPrism (DSN 2025) |46| **Benchmarks** | IaC code generation | IaC-Eval (NeurIPS D&B 2024) |4748## Common LLM Techniques Used4950- **Prompting**: ICL (In-Context Learning), CoT (Chain-of-Thought), ToT (Tree-of-Thought)51- **Fine-tuning**: Instruction tuning, domain-specific adaptation (e.g., OWL for IT ops)52- **Agent-based**: Tool-augmented LLMs, multi-agent collaboration, SOP-guided agents53- **RAG**: Retrieval-Augmented Generation for incident resolution recommendations54- **Code Synthesis**: LLM generates rule code for anomaly detection (CodeAD)5556## Key Benchmarks5758- **ITBench** (ICML 2025) — Diverse real-world IT automation tasks59- **AIOpsLab** (MLSys 2025) — Holistic autonomous cloud agent evaluation60- **OpsEval** — Comprehensive AIOps task benchmark61- **OpenRCA** (ICLR 2025) — RCA benchmark with fault propagation awareness62- **IaC-Eval** (NeurIPS 2024) — Infrastructure-as-Code generation benchmark6364## Common Mistakes6566- ❌ Treating log parsing as a solved problem — LLM-based parsers still struggle with unseen log formats; use adaptive caching (LILAC pattern)67- ❌ Applying generic LLMs to ops without domain tuning — Domain-specific models (OWL) or RAG significantly outperform general-purpose prompting for AIOps Q&A68- ❌ Single-agent RCA for complex microservice failures — Multi-agent systems (mABC, Flow-of-Action) with SOP guidance outperform single-agent approaches69- ❌ Ignoring confidence estimation in RCA — Use PACE-LM style confidence calibration before acting on LLM-generated RCA results7071## Real-World Impact7273The field has rapidly evolved from basic prompting (2023) to sophisticated multi-agent systems with tool augmentation (2024-2025), with production-grade systems like Nissist, STRATUS, and iKnow deployed in real cloud environments. Key trend: moving from single LLM calls to autonomous agent loops with verification.