MaxScale 关于Linux下MySQL主备集群负载均衡之读写分离( 五 )

检查监控配置
使用maxctrl list monitors和maxctrl show monitor命令查看已配置的监视器 。
获取监控器的完整列表:
┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl list monitors┌─────────────────┬─────────┬──────────────────┐│ Monitor │ State │ Servers │├─────────────────┼─────────┼──────────────────┤│ MariaDB-Monitor │ Running │ server1, server2 │└─────────────────┴─────────┴──────────────────┘
对于每个监控,查看监控配置:
┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl show monitor MariaDB-Monitor┌─────────────────────┬──────────────────────────────────────────────────────┐│ Monitor │ MariaDB-Monitor │├─────────────────────┼──────────────────────────────────────────────────────┤│ Module │ mariadbmon │├─────────────────────┼──────────────────────────────────────────────────────┤│ State │ Running │├─────────────────────┼──────────────────────────────────────────────────────┤│ Servers │ server1 ││ │ server2 │├─────────────────────┼──────────────────────────────────────────────────────┤│ Parameters │ { ││ │ "assume_unique_hostnames": true, ││ │ "slave_conditions": "none", ││ │ "switchover_on_low_disk_space": false, ││ │ "switchover_timeout": 90, ││ │ "user": "maxscalemon", ││ │ "verify_master_failure": true ││ │ } │├─────────────────────┼──────────────────────────────────────────────────────┤│ Monitor Diagnostics │ { ││ │ "master": "server1", ││ │ "master_gtid_domain_id": null, ││ │ "primary": null, ││ │ "server_info": [ ││ │ { ││ │ "gtid_binlog_pos": null, ││ │ "last_sql_error": "", ││ │ "master_host": "192.168.26.153", ││ │ "master_port": 3306, ││ │ "master_server_id": 153, ││ │ "seconds_behind_master": 0, ││ │ "slave_io_running": "Yes", ││ │ "slave_sql_running": "Yes" ││ │ } ││ │ ] ││ │ } ││ │ ], ││ │ "state": "Idle" ││ │ } │└─────────────────────┴──────────────────────────────────────────────────────┘┌──[root@vms152.liruilongs.github.io]-[~]└─$检查服务配置
使用maxctrl list services和maxctrl show service命令查看已配置的路由服务 。
获取路由服务的完整列表:
┌──[root@vms152.liruilongs.github.io]-[~]└─$maxctrl list services┌────────────────────┬────────────────┬─────────────┬───────────────────┬──────────────────┐│ Service │ Router │ Connections │ Total Connections │ Targets │├────────────────────┼────────────────┼─────────────┼───────────────────┼──────────────────┤│ Read-Write-Service │ readwritesplit │ 0 │ 0 │ server1, server2 │└────────────────────┴────────────────┴─────────────┴───────────────────┴──────────────────┘
查看详细信息


推荐阅读