get_replication_status
Monitor MySQL replication health by checking master/slave status, replication lag, errors, binary log positions, and semi-sync status across all channels.
Instructions
Get MySQL replication status and health.
Analyzes:
Master/Source status and binary log position
Slave/Replica status and lag
Replication errors and warnings
Binary log configuration
Semi-sync replication status
Works with both MySQL and MariaDB terminology.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| check_all_channels | No | Check all replication channels (multi-source) |
Input Schema (JSON Schema)
{
"properties": {
"check_all_channels": {
"default": true,
"description": "Check all replication channels (multi-source)",
"type": "boolean"
}
},
"required": [],
"type": "object"
}