Monitoring tutorial - IT technology blog

Monitoring Distributed Applications with OpenTelemetry and Jaeger: Finding Performance Bottlenecks Through Distributed Traces

Prometheus can tell you your system is slow, but finding which service in a microservices chain is the actual bottleneck requires distributed tracing. This guide walks through setting up OpenTelemetry and Jaeger, instrumenting a Python application, and reading traces to diagnose performance issues — based on real-world experience.
Database tutorial - IT technology blog

pgvector Guide: Storing and Searching Vector Embeddings in PostgreSQL for AI and RAG Applications

pgvector is a PostgreSQL extension that lets you store and search vector embeddings directly in your existing database — no need to deploy a separate system. This guide covers installation, HNSW index creation, semantic search, and integrating pgvector into a Python RAG pipeline, with practical monitoring tips from real-world experience.