We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adea40c commit f3290a5Copy full SHA for f3290a5
src/http-client/http-client-template.ts
@@ -48,7 +48,7 @@ export class HttpClientTemplate {
48
49
const end = Date.now();
50
51
- this.requestTime?.observe(end - start / 1000, {
+ this.requestTime?.observe((end - start) / 1000, {
52
id: this.id,
53
method: config.method?.toUpperCase() ?? 'unknown',
54
uri: config.url ?? 'unknown',
0 commit comments