[logstash-filter-mutate](https://www.elastic.co/guide/en/logstash/7.14/plugins-filters-mutate.html#plugins-filters-mutate-convert) and [logstash-codec-csv ](https://www.elastic.co/guide/en/logstash/current/plugins-codecs-csv.html#plugins-codecs-csv-convert)have `convert` datatype function. To convert an integer, both require to set ``` convert => { "fieldname" => "integer" } ``` However, in logstash-filter-dissect, it uses "int" for integer and `convert_datatype` instead of `convert` ``` convert_datatype => { "fieldname" => "int" } ``` To improve user experience, this issue request dissect to support "integer" config and rename `convert_datatype` to `convert`