Skip to content

Commit f3290a5

Browse files
committed
fix metrics (stupid rush)
1 parent adea40c commit f3290a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/http-client/http-client-template.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class HttpClientTemplate {
4848

4949
const end = Date.now();
5050

51-
this.requestTime?.observe(end - start / 1000, {
51+
this.requestTime?.observe((end - start) / 1000, {
5252
id: this.id,
5353
method: config.method?.toUpperCase() ?? 'unknown',
5454
uri: config.url ?? 'unknown',

0 commit comments

Comments
 (0)