Interface SnapshotMetricsMXBean
-
- All Superinterfaces:
SchemaMetricsMXBean
- All Known Subinterfaces:
SnapshotChangeEventSourceMetricsMXBean
- All Known Implementing Classes:
DefaultSnapshotChangeEventSourceMetrics,SnapshotMeter
public interface SnapshotMetricsMXBean extends SchemaMetricsMXBean
Exposes snapshot metrics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetChunkFrom()StringgetChunkId()StringgetChunkTo()intgetRemainingTableCount()Map<String,Long>getRowsScanned()booleangetSnapshotAborted()booleangetSnapshotCompleted()longgetSnapshotDurationInSeconds()booleangetSnapshotRunning()StringgetTableFrom()StringgetTableTo()intgetTotalTableCount()-
Methods inherited from interface io.debezium.pipeline.metrics.traits.SchemaMetricsMXBean
getCapturedTables
-
-
-
-
Method Detail
-
getTotalTableCount
int getTotalTableCount()
-
getRemainingTableCount
int getRemainingTableCount()
-
getSnapshotRunning
boolean getSnapshotRunning()
-
getSnapshotCompleted
boolean getSnapshotCompleted()
-
getSnapshotAborted
boolean getSnapshotAborted()
-
getSnapshotDurationInSeconds
long getSnapshotDurationInSeconds()
-
getChunkId
String getChunkId()
-
getChunkFrom
String getChunkFrom()
-
getChunkTo
String getChunkTo()
-
getTableFrom
String getTableFrom()
-
getTableTo
String getTableTo()
-
-