Skip to content

Commit e61bd87

Browse files
author
xueyuan
committed
fix(qdrant): add query_points and query_batch_points to async client instrumentation
The sync QdrantClient had query_points and query_batch_points in its instrumentation config, but AsyncQdrantClient was missing both methods. This caused async users to not get spans for these operations. Closes #3492
1 parent b39151b commit e61bd87

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

packages/opentelemetry-instrumentation-qdrant/opentelemetry/instrumentation/qdrant/async_qdrant_client_methods.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,16 @@
4444
"method": "query",
4545
"span_name": "qdrant.query"
4646
},
47+
{
48+
"object": "AsyncQdrantClient",
49+
"method": "query_points",
50+
"span_name": "qdrant.query_points"
51+
},
52+
{
53+
"object": "AsyncQdrantClient",
54+
"method": "query_batch_points",
55+
"span_name": "qdrant.query_batch_points"
56+
},
4757
{
4858
"object": "AsyncQdrantClient",
4959
"method": "query_batch",

0 commit comments

Comments
 (0)