qdrant/qdrant-monitoring-debugging
Diagnoses Qdrant production issues using metrics and observability tools. Use when someone reports 'optimizer stuck', 'indexing too slow', 'memory too high', 'OOM crash', 'queries are slow', 'latency spike', or 'search was fast now it's slow'. Also use when performance degrades without obvious config changes.
npx skills add https://github.com/qdrant/skills --skill qdrant-monitoring-debugging
First check optimizer status. Most production issues trace back to active optimizations competing for resources. If optimizer is clean, check memory, then request metrics.
Use when: optimizer running for hours, not finishing, or showing errors.
/collections/{collection_name}/optimizations endpoint (v1.17+) to check status Optimization monitoring?with=queued,completed,idle_segmentsoptimizer_status shows an error in collection info, check logs for disk full or corrupted segmentsUse when: memory exceeds expectations, node crashes with OOM, or memory keeps growing.
/metrics (RSS, allocated bytes, page faults)/telemetry for per-collection breakdown of point counts and vector configurationsnum_vectors * dimensions * 4 bytes * 1.5 for vectors, plus payload and index overhead Capacity planningalways_ram=true, too many payload indexes, large max_segment_size during optimizationUse when: queries slower than expected and you need to identify the cause.
rest_responses_avg_duration_seconds and rest_responses_max_duration_seconds per endpointrest_responses_duration_seconds (v1.8+) for percentile analysis in Grafanagrpc_responses_ prefixTake qdrant/qdrant-monitoring-debugging from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.