class |
CounterRepresentation |
This class aims to provide a prototypical implementation of the Counter
Interface from Micrometer-API, allowing a client process to access the
Counter values collected from a Service in a uniform way.
Even though the methods are functional and will indeed offer an accurate
implementation of the metric we are simulating with this prototype, it is
highly recommended that an instance of this class is used solely to access
data and not to modify it, as the changes will not be registered in any sort
of registry under normal circumstances, and this will alter the read values
of the actual metrics.
|
class |
GaugeRepresentation |
This class aims to provide a prototypical implementation of the Gauge
Interface from Micrometer-API, allowing a client process to access the Gauge
values collected from a Service in a uniform way.
Even though the methods are functional and will indeed offer an accurate
implementation of the metric we are simulating with this prototype, it is
highly recommended that an instance of this class is used solely to access
data and not to modify it, as the changes will not be registered in any sort
of registry under normal circumstances, and this will alter the read values
of the actual metrics.
|
class |
TimerRepresentation |
This class aims to provide a prototypical implementation of the Timer
Interface from Micrometer-API, allowing a client process to access the Timer
values collected from a Service in a uniform way.
Even though the methods are functional and will indeed offer an accurate
implementation of the metric we are simulating with this prototype, it is
highly recommended that an instance of this class is used solely to access
data and not to modify it, as the changes will not be registered in any sort
of registry under normal circumstances, and this will alter the read values
of the actual metrics.
|