Hello, everyone.
I added 2 custom fields in "metricbeat.yml" like following:
fields: {xaxis: 1, yaxis: 1}
After data store in ES, those 2 fields are defined as "String" type in the mapping definition:
{
"fields": {
"path_match": "fields.*",
"match_mapping_type": "string",
"mapping": {
"type": "keyword"
}
}
}
So, may I know if there is a configuration item to let me modify the type from "String" to "Long" for custom fields?
Thanks in advance!