-
Method Summary
Name of the current MySQL binlog file being read by underlying mysql-binlog-client.
long
Current MySQL binlog offset position being read by underlying mysql-binlog-client.
Current MySQL Gtid being read by underlying mysql-binlog-client.
boolean
Tracks if the connector is running using Gtids to track current offset.
long
Tracks the number of committed transactions.
long
Tracks the number of times the underlying mysql-binlog-client has been disconnected from MySQL.
long
Tracks the number of transaction which contains events that contained more entries than could be contained
within the connectors instance.
long
Tracks the number of transactions which are not well-formed.
long
Tracks the number of rolled back transactions.
long
Tracks the number of events skipped by underlying mysql-binlog-client, generally due to the client
being unable to properly deserialize the event.
-
Method Details
-
getBinlogFilename
Name of the current MySQL binlog file being read by underlying mysql-binlog-client.
-
getBinlogPosition
long getBinlogPosition()
Current MySQL binlog offset position being read by underlying mysql-binlog-client.
-
getGtidSet
Current MySQL Gtid being read by underlying mysql-binlog-client.
-
getNumberOfSkippedEvents
long getNumberOfSkippedEvents()
Tracks the number of events skipped by underlying mysql-binlog-client, generally due to the client
being unable to properly deserialize the event.
-
getNumberOfDisconnects
long getNumberOfDisconnects()
Tracks the number of times the underlying mysql-binlog-client has been disconnected from MySQL.
-
-
getNumberOfRolledBackTransactions
long getNumberOfRolledBackTransactions()
Tracks the number of rolled back transactions.
-
-
getNumberOfLargeTransactions
long getNumberOfLargeTransactions()
Tracks the number of transaction which contains events that contained more entries than could be contained
within the connectors instance.
-
getIsGtidModeEnabled
boolean getIsGtidModeEnabled()
Tracks if the connector is running using Gtids to track current offset.
- Returns:
- true if using Gtids, false if not.