- collector.performance_schema.eventswaits - collector.performance_schema.file_events - collector.performance_schema.indexiowaits - collector.performance_schema.tableiowaits - collector.performance_schema.tablelocks这几参数都需要等号吗
时间: 2024-03-10 10:49:20 浏览: 56
Python库 | infi.logs_collector-0.1.2.tar.gz
这几个参数都不需要等号,因为它们是在一个列表中列出的。在yaml格式的配置文件中,如果需要列出多个参数,可以使用列表的方式进行配置,每个列表元素之间使用短横线"-"进行分隔。
例如,在mysqld_exporter的配置文件中,您可以将这几个参数配置为一个列表,如下所示:
```
collectors:
- performance_schema.eventswaits
- performance_schema.file_events
- performance_schema.indexiowaits
- performance_schema.tableiowaits
- performance_schema.tablelocks
```
在这个配置中,您可以看到每个参数都使用短横线"-"进行分隔,并且不需要等号分隔符。只有在单个参数的配置中,才需要使用"键=值"的格式进行配置,并在键值对之间使用换行符进行分隔。
阅读全文