mirror of
https://github.com/dj-wasabi/ansible-telegraf.git
synced 2025-07-17 08:46:37 +00:00
Migrate from io to diskio (#173)
Telegraf throws following deprecation warning: ``` W! DeprecationWarning: Plugin "inputs.io" deprecated since version 0.10.0 and will be removed in 2.0.0: use 'inputs.diskio' instead ``` As far as I can tell this is simple rename and the output of these plugins should not change. I've also tried comparing the output locally and it seems to be the same. ``` # The following command outputs two sets of identical data: telegraf --test --config telegraf.conf --input-filter io:diskio ```
This commit is contained in:
@ -55,7 +55,7 @@ telegraf_plugins_default:
|
|||||||
config:
|
config:
|
||||||
- percpu = true
|
- percpu = true
|
||||||
- plugin: disk
|
- plugin: disk
|
||||||
- plugin: io
|
- plugin: diskio
|
||||||
- plugin: mem
|
- plugin: mem
|
||||||
- plugin: net
|
- plugin: net
|
||||||
- plugin: system
|
- plugin: system
|
||||||
|
Reference in New Issue
Block a user