{
"event": "PreToolUse",
"tool_name": "Bash",
"tool_input": {
"command": "curl -s http:\/\/localhost:6333\/collections | python3 -c \"\nimport sys, json\ndata = json.load(sys.stdin)\nprint('=== Qdrant Collections ===')\nfor c in data.get('result', {}).get('collections', []):\n name = c.get('name')\n # Get details\n import urllib.request\n resp = urllib.request.urlopen(f'http:\/\/localhost:6333\/collections\/{name}')\n details = json.loads(resp.read())['result']\n points = details.get('points_count', 0)\n indexed = details.get('indexed_vectors_count', 0)\n status = '✓' if indexed == points else '✗'\n print(f'{status} {name}: {indexed}\/{points} indexed')\n\"",
"description": "Check all collections indexing status"
}
}
{
"tool_response": {
"stdout": "=== Qdrant Collections ===\n✗ dokumentation_chunks: 0\/374 indexed\n✗ documents: 0\/1997 indexed\n✓ entities: 0\/0 indexed\n✓ mail: 0\/0 indexed",
"stderr": "",
"interrupted": false,
"isImage": false
}
}