@@ -261,7 +261,7 @@ func (s *Server[RawConfiguration, Configuration, State]) QueryExplain(w http.Res
261
261
attribute .String ("reason" , "json_decode" ),
262
262
}
263
263
span .SetAttributes (attributes ... )
264
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (attributes ... ))
264
+ s .telemetry .queryExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (attributes ... ))
265
265
return
266
266
}
267
267
decodeSpan .End ()
@@ -280,7 +280,7 @@ func (s *Server[RawConfiguration, Configuration, State]) QueryExplain(w http.Res
280
280
attribute .String ("reason" , fmt .Sprintf ("%d" , status )),
281
281
}
282
282
span .SetAttributes (attributes ... )
283
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttributes ... )... ))
283
+ s .telemetry .queryExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttributes ... )... ))
284
284
return
285
285
}
286
286
execSpan .End ()
@@ -290,10 +290,10 @@ func (s *Server[RawConfiguration, Configuration, State]) QueryExplain(w http.Res
290
290
_ , responseSpan := s .telemetry .Tracer .Start (ctx , "Response" )
291
291
writeJson (w , logger , http .StatusOK , response )
292
292
responseSpan .End ()
293
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttribute )... ))
293
+ s .telemetry .queryExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttribute )... ))
294
294
295
295
// record latency for success requests only
296
- s .telemetry .explainLatencyHistogram .Record (r .Context (), time .Since (startTime ).Seconds (), metric .WithAttributes (collectionAttr ))
296
+ s .telemetry .queryExplainLatencyHistogram .Record (r .Context (), time .Since (startTime ).Seconds (), metric .WithAttributes (collectionAttr ))
297
297
}
298
298
299
299
// MutationExplain implements a handler for the /mutation/explain endpoint, POST method that explains a mutation by creating an execution plan.
@@ -320,7 +320,7 @@ func (s *Server[RawConfiguration, Configuration, State]) MutationExplain(w http.
320
320
attribute .String ("reason" , "json_decode" ),
321
321
}
322
322
span .SetAttributes (attributes ... )
323
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (attributes ... ))
323
+ s .telemetry .mutationExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (attributes ... ))
324
324
return
325
325
}
326
326
decodeSpan .End ()
@@ -343,7 +343,7 @@ func (s *Server[RawConfiguration, Configuration, State]) MutationExplain(w http.
343
343
attribute .String ("reason" , fmt .Sprintf ("%d" , status )),
344
344
}
345
345
span .SetAttributes (attributes ... )
346
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttributes ... )... ))
346
+ s .telemetry .mutationExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttributes ... )... ))
347
347
return
348
348
}
349
349
execSpan .End ()
@@ -353,10 +353,10 @@ func (s *Server[RawConfiguration, Configuration, State]) MutationExplain(w http.
353
353
_ , responseSpan := s .telemetry .Tracer .Start (ctx , "Response" )
354
354
writeJson (w , logger , http .StatusOK , response )
355
355
responseSpan .End ()
356
- s .telemetry .explainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttribute )... ))
356
+ s .telemetry .mutationExplainCounter .Add (r .Context (), 1 , metric .WithAttributes (append (attributes , statusAttribute )... ))
357
357
358
358
// record latency for success requests only
359
- s .telemetry .explainLatencyHistogram .Record (r .Context (), time .Since (startTime ).Seconds (), metric .WithAttributes (collectionAttr ))
359
+ s .telemetry .mutationExplainLatencyHistogram .Record (r .Context (), time .Since (startTime ).Seconds (), metric .WithAttributes (collectionAttr ))
360
360
}
361
361
362
362
// Mutation implements a handler for the /mutation endpoint, POST method that executes a mutation.
0 commit comments