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
There is no reliable way to see how the output generation is performing. We should add metrics to have a better understanding and to monitor this. The following metrics come to mind:
isProcessing: whether the service is currently executing something
recordsProcessedCount: how many records are being processed. You can use prometheus with rate to get an insight in what the current processing rate is.
recordsUnprocessedCount: how many records are currently unprocessed. The baseline for this is only computed at the start of a scan cycle. Probably, this should be baseLineCount - recordsProcessedCountInCurrentBatch.
recordsProcessedCountInCurrentBatch
etaInCurrentBatch
The text was updated successfully, but these errors were encountered:
There is no reliable way to see how the output generation is performing. We should add metrics to have a better understanding and to monitor this. The following metrics come to mind:
isProcessing
: whether the service is currently executing somethingrecordsProcessedCount
: how many records are being processed. You can use prometheus withrate
to get an insight in what the current processing rate is.recordsUnprocessedCount
: how many records are currently unprocessed. The baseline for this is only computed at the start of a scan cycle. Probably, this should bebaseLineCount - recordsProcessedCountInCurrentBatch
.recordsProcessedCountInCurrentBatch
etaInCurrentBatch
The text was updated successfully, but these errors were encountered: