Skip to content

Latest commit

 

History

History
56 lines (48 loc) · 1.8 KB

information-schema-inspection-rules.md

File metadata and controls

56 lines (48 loc) · 1.8 KB
title summary aliases
INSPECTION_RULES
了解 information_schema 表 `INSPECTION_RULES`。
/docs-cn/dev/information-schema/information-schema-inspection-rules/

INSPECTION_RULES

INSPECTION_RULES 表提供在检查结果中运行哪些诊断测试的信息,示例用法参见inspection-result

{{< copyable "sql" >}}

USE information_schema;
DESC inspection_rules;
+---------+--------------+------+------+---------+-------+
| Field   | Type         | Null | Key  | Default | Extra |
+---------+--------------+------+------+---------+-------+
| NAME    | varchar(64)  | YES  |      | NULL    |       |
| TYPE    | varchar(64)  | YES  |      | NULL    |       |
| COMMENT | varchar(256) | YES  |      | NULL    |       |
+---------+--------------+------+------+---------+-------+
3 rows in set (0.00 sec)

{{< copyable "sql" >}}

SELECT * FROM inspection_rules;
+-----------------+------------+---------+
| NAME            | TYPE       | COMMENT |
+-----------------+------------+---------+
| config          | inspection |         |
| version         | inspection |         |
| node-load       | inspection |         |
| critical-error  | inspection |         |
| threshold-check | inspection |         |
| ddl             | summary    |         |
| gc              | summary    |         |
| pd              | summary    |         |
| query-summary   | summary    |         |
| raftstore       | summary    |         |
| read-link       | summary    |         |
| rocksdb         | summary    |         |
| stats           | summary    |         |
| wait-events     | summary    |         |
| write-link      | summary    |         |
+-----------------+------------+---------+
15 rows in set (0.00 sec)