Class TelemetrySendingTask
- java.lang.Object
-
- java.util.TimerTask
-
- org.camunda.bpm.engine.impl.telemetry.reporter.TelemetrySendingTask
-
-
Field Summary
Fields Modifier and Type Field Description protected CommandExecutorcommandExecutorprotected org.camunda.connect.spi.Connector<? extends org.camunda.connect.spi.ConnectorRequest<?>>httpConnectorprotected static TelemetryLoggerLOGprotected static Set<String>METRICS_TO_REPORTprotected MetricsRegistrymetricsRegistryprotected TelemetryDataImplstaticDataprotected StringtelemetryEndpointprotected TelemetryRegistrytelemetryRegistryprotected inttelemetryRequestRetriesprotected inttelemetryRequestTimeoutprotected static StringUUID4_PATTERN
-
Constructor Summary
Constructors Constructor Description TelemetrySendingTask(CommandExecutor commandExecutor, String telemetryEndpoint, int telemetryRequestRetries, TelemetryDataImpl data, org.camunda.connect.spi.Connector<? extends org.camunda.connect.spi.ConnectorRequest<?>> httpConnector, TelemetryRegistry telemetryRegistry, MetricsRegistry metricsRegistry, int telemetryRequestTimeout)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Map<String,Metric>calculateMetrics(boolean reset, boolean addLegacyNames)protected Map<String,Command>fetchAndResetCommandCounts(boolean reset)protected booleanisSuccessStatusCode(int statusCode)protected booleanisTelemetryEnabled()protected voidperformDataSend(Runnable runnable)protected InternalsImplresolveDynamicData(boolean reset, boolean addLegacyNames)protected voidrestoreDynamicData(InternalsImpl internals)voidrun()protected voidsendData(TelemetryDataImpl dataToSend)TelemetryDataImplupdateAndSendData(boolean sendData, boolean addLegacyNames)voidupdateDataCollectionStartDate()protected voidupdateStaticData()protected BooleanvalidateData(TelemetryDataImpl dataToSend)-
Methods inherited from class java.util.TimerTask
cancel, scheduledExecutionTime
-
-
-
-
Field Detail
-
LOG
protected static final TelemetryLogger LOG
-
UUID4_PATTERN
protected static final String UUID4_PATTERN
- See Also:
- Constant Field Values
-
commandExecutor
protected CommandExecutor commandExecutor
-
telemetryEndpoint
protected String telemetryEndpoint
-
staticData
protected TelemetryDataImpl staticData
-
httpConnector
protected org.camunda.connect.spi.Connector<? extends org.camunda.connect.spi.ConnectorRequest<?>> httpConnector
-
telemetryRequestRetries
protected int telemetryRequestRetries
-
telemetryRegistry
protected TelemetryRegistry telemetryRegistry
-
metricsRegistry
protected MetricsRegistry metricsRegistry
-
telemetryRequestTimeout
protected int telemetryRequestTimeout
-
-
Constructor Detail
-
TelemetrySendingTask
public TelemetrySendingTask(CommandExecutor commandExecutor, String telemetryEndpoint, int telemetryRequestRetries, TelemetryDataImpl data, org.camunda.connect.spi.Connector<? extends org.camunda.connect.spi.ConnectorRequest<?>> httpConnector, TelemetryRegistry telemetryRegistry, MetricsRegistry metricsRegistry, int telemetryRequestTimeout)
-
-
Method Detail
-
updateAndSendData
public TelemetryDataImpl updateAndSendData(boolean sendData, boolean addLegacyNames)
-
updateStaticData
protected void updateStaticData()
-
updateDataCollectionStartDate
public void updateDataCollectionStartDate()
-
isTelemetryEnabled
protected boolean isTelemetryEnabled()
-
sendData
protected void sendData(TelemetryDataImpl dataToSend)
-
isSuccessStatusCode
protected boolean isSuccessStatusCode(int statusCode)
- Returns:
- true if status code is 2xx
-
restoreDynamicData
protected void restoreDynamicData(InternalsImpl internals)
-
resolveDynamicData
protected InternalsImpl resolveDynamicData(boolean reset, boolean addLegacyNames)
-
fetchAndResetCommandCounts
protected Map<String,Command> fetchAndResetCommandCounts(boolean reset)
-
calculateMetrics
protected Map<String,Metric> calculateMetrics(boolean reset, boolean addLegacyNames)
-
performDataSend
protected void performDataSend(Runnable runnable)
-
validateData
protected Boolean validateData(TelemetryDataImpl dataToSend)
-
-