Interface OpenTelemetryMetricsConfigProvider
-
- All Known Implementing Classes:
NoopOpenTelemetryMetricsConfigProvider
public interface OpenTelemetryMetricsConfigProvider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitialise(AppIdentifier appIdentifier)This method will be called before initializing the OpenTelemetry instance.voidstart()This method is called after OpenTelemetry is instantiated.voidstop()This method is called while disposing the OpenTelemetry instance.
-
-
-
Method Detail
-
initialise
void initialise(AppIdentifier appIdentifier)
This method will be called before initializing the OpenTelemetry instance. It provides an opportunity to change the OpenTelemetry behavior. Please make sure only metrics related behavior is modified.
-
start
void start()
This method is called after OpenTelemetry is instantiated.
-
stop
void stop()
This method is called while disposing the OpenTelemetry instance.
-
-