Notifications
Clear all
LlamaIndex Reviews
1
Posts
1
Users
0
Reactions
4
Views
Topic starter
19/07/2026 9:45 pm
Hi everyone! I've been learning about RAG pipelines for monitoring data and logs. LlamaIndex seems great, but I keep seeing LangChain mentioned as the main alternative.
What else is out there? I'm especially interested in tools that play nice with observability stacks.
I tried a simple LlamaIndex setup to query some Prometheus metrics logs:
```python
from llama_index import VectorStoreIndex, SimpleDirectoryReader
documents = SimpleDirectoryReader("metric_logs").load_data()
index = VectorStoreIndex.from_documents(documents)
```
It worked, but I'd like to compare options before going deeper. Any recommendations for production use? Bonus points if it has good Grafana integration potential.