SHOW DB_DISCOVERY RULES [FROM schemaName]
SHOW DB_DISCOVERY TYPES [FROM schemaName]
SHOW DB_DISCOVERY HEARTBEATS [FROM schemaName]
| 列 | 说明 | 
|---|---|
| group_name | 规则名称 | 
| data_source_names | 数据源名称列表 | 
| primary_data_source_name | 主数据源名称 | 
| discovery_type | 数据库发现服务类型 | 
| discovery_heartbeat | 数据库发现服务心跳 | 
| 列 | 说明 | 
|---|---|
| name | 类型名称 | 
| type | 类型种类 | 
| props | 类型参数 | 
| 列 | 说明 | 
|---|---|
| name | 心跳名称 | 
| props | 心跳参数 | 
DB Discovery Rule
mysql> show db_discovery rules;
+----------------------+-------------------+--------------------------+-----------------------------------------------------------------------------+------------------------------------------------------------------------------+
| group_name           | data_source_names | primary_data_source_name | discovery_type                                                              | discovery_heartbeat                                                          |
+----------------------+-------------------+--------------------------+-----------------------------------------------------------------------------+------------------------------------------------------------------------------+
| db_discovery_group_0 | ds_0,ds_1,ds_2    |        ds_0              | {name=db_discovery_group_0_mgr, type=mgr, props={group-name=92504d5b-6dec}} | {name=db_discovery_group_0_heartbeat, props={keep-alive-cron=0/5 * * * * ?}} |
+----------------------+-------------------+--------------------------+------------------------------------------------------------------------------+-----------------------------------------------------------------------------+
1 row in set (0.20 sec)
DB Discovery Type
mysql> show db_discovery types;
+--------------------------+------+----------------------------+
| name                     | type | props                      |
+--------------------------+------+----------------------------+
| db_discovery_group_0_mgr | mgr  | {group-name=92504d5b-6dec} |
+--------------------------+------+----------------------------+
1 row in set (0.01 sec)
DB Discovery Heartbeat
mysql> show db_discovery heartbeats;
+--------------------------------+---------------------------------+
| name                           | props                           |
+--------------------------------+---------------------------------+
| db_discovery_group_0_heartbeat | {keep-alive-cron=0/5 * * * * ?} |
+---------------------------------+---------------------------------+
1 row in set (0.01 sec)
