Update repo structure with detailed project docs

This commit is contained in:
Luna
2026-04-02 18:52:22 +02:00
parent d4f3d93b26
commit 8ff9b20417
5 changed files with 58 additions and 9 deletions

13
observability.md Normal file
View File

@@ -0,0 +1,13 @@
# Observability-as-a-Service (Engineering Monitoring)
## Problem
Logs are overwhelming. You only notice issues when the system is already down.
## Instructions
1. **Aggregator:** Set up a lightweight log forwarder (like Vector or Promtail) to push logs to a central database (Postgres or Elasticsearch).
2. **Analytics:** Implement a background script that polls for error spikes or latency anomalies.
3. **RAG Context:** Inject your architecture documentation (READMEs, design docs) into the agent's context so it understands *what* service is doing *what*.
4. **Actionable Alerts:** When an anomaly occurs, use the agent to analyze the logs *in context* and provide a summary + suggested fix.
## Goal
Move from "Log Monitoring" to "Intelligent System Health".