You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JMX Performance counters are getting reported with the same time stamp. Apparently it seems the issue is with JmxMetricPerformanceCounter class which holds a final reference to MetricTelemetry object.
Time stamp of Telemetry reference is set in the TelemetryClient track() method based on null check on Timestamp field. Therefore this reference get's time stamped once and there after never updates its's value.
Ideally we should reset the Telemetry Item / send a new instance of the MetricTelemetry.
The text was updated successfully, but these errors were encountered:
JMX Performance counters are getting reported with the same time stamp. Apparently it seems the issue is with
JmxMetricPerformanceCounter
class which holds a final reference toMetricTelemetry
object.Time stamp of Telemetry reference is set in the
TelemetryClient
track() method based on null check on Timestamp field. Therefore this reference get's time stamped once and there after never updates its's value.Ideally we should reset the Telemetry Item / send a new instance of the MetricTelemetry.
The text was updated successfully, but these errors were encountered: