skills/qdrant-monitoring/debugging/SKILL.md
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 skillsauth add williamlimasilva/.copilot qdrant-monitoring-debuggingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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_ prefixtools
Create a new workshop or use an existing directory as one. Handles two paths: (A) use an existing local directory the operator points at, or (B) create a new private GitHub repo in the signed-in account. Never creates a repo inside another repo.
development
Guide for setting up vcpkg in C++ projects, managing dependency versions, and cross-compiling. Covers manifest initialization, CMake and Visual Studio integration, classic-to-manifest migration, version pinning, baselines, overrides, triplets, and cross-compilation. Use when a user is working with vcpkg project setup, installation, version management, or cross-platform builds. For specialized tasks, additional references cover custom registries and overlay ports (references/registries.md), CI/CD and binary caching (references/ci.md), and troubleshooting and dependency lifecycle (references/troubleshooting.md).
testing
Emit structured agent signals — hands-up, blocked, done, checkpoint, partnership. Signals are written as JSON to .signals/ for dashboard consumption and noted in the journal for persistence.
development
Install and configure Markstream streaming Markdown renderers for Vue, React, Svelte, Angular, Nuxt, and Vue 2 applications. Use for package selection, minimal peer dependencies, CSS order, SSR boundaries, streaming mode, and renderer setup.