File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change
1
+ * Fixed bug with session query latency metric collector
2
+
1
3
## v3.104.3
2
4
* Changed argument types in ` table.Client.ReadRows ` to public types for compatibility with mock-generation
3
5
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ func query(config Config) (t trace.Query) {
251
251
{
252
252
sessionQueryConfig := sessionConfig .WithSystem ("query" )
253
253
errs := sessionQueryConfig .CounterVec ("errs" , "status" , "label" )
254
- latency := sessionQueryConfig .TimerVec ("latency" )
254
+ latency := sessionQueryConfig .TimerVec ("latency" , "label" )
255
255
t .OnSessionQuery = func (info trace.QuerySessionQueryStartInfo ) func (trace.QuerySessionQueryDoneInfo ) {
256
256
start := time .Now ()
257
257
label := info .Label
You can’t perform that action at this time.
0 commit comments