collector.performance_schema.eventswaits - collector.performance_schema.file_events - collector.performance_schema.indexiowaits - collector.performance_schema.tableiowaits - collector.performance_schema.tablelocks这几参数结尾都需要等号吗
时间: 2024-03-10 16:49:21 浏览: 88
Python库 | infi.logs_collector-0.1.2.tar.gz
这几个参数结尾都不需要等号。在mysqld_exporter的配置文件中,可以将这几个参数配置为一个列表,如下所示:
```
collectors:
- performance_schema.eventswaits
- performance_schema.file_events
- performance_schema.indexiowaits
- performance_schema.tableiowaits
- performance_schema.tablelocks
```
在这个配置中,每个列表元素之间使用短横线"-"进行分隔,表示需要采集的指标。这些指标将在指定的时间间隔内被采集,并通过Prometheus进行监控和告警。由于这些参数是在一个列表中列出的,因此在每个参数的结尾处都不需要加上等号。
阅读全文