Any reason why Polly create histogram metrics with units as milliseconds and type as double? #2363
-
Hi Polly expert: I noticed that Polly is creating |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The type is the same as the type of the value we report:
Polly/src/Polly.Core/Telemetry/ExecutionAttemptArguments.cs Lines 31 to 34 in 12fe569
|
Beta Was this translation helpful? Give feedback.
The type is the same as the type of the value we report:
Polly/src/Polly.Extensions/Telemetry/TelemetryListenerImpl.cs
Line 143 in 12fe569
Duration
is aTimeSpan
:Polly/src/Polly.Core/Telemetry/ExecutionAttemptArguments.cs
Lines 31 to 34 in 12fe569
TimeSpan.TotalMilliseconds
is adouble
.