Hi everybody,
I’m currently facing some issues around indexer :
a few seconds ago graylog_6 9c320b90-34f8-11e9-b27d-005056953e8f {“type”:“mapper_parsing_exception”,“reason”:“failed to parse [level]”,“caused_by”:{“type”:“number_format_exception”,“reason”:“For input string: "WARN"”}}
I’ve followed all the steps http://docs.graylog.org/en/2.4/pages/configuration/elasticsearch.html#custom-index-mappings around creating a new index template, by adding a new graylog-custom-mapping.json with content
{
“template”: “graylog_*”,
“mappings” : {
“message” : {
“properties” : {
“level” : {
“type” : “string”
}
}
}
}
}
The idea was to overwrite the default mapping. And after loading the custom mapping and checking the resultat, the ‘level’ field is still as a long type.
Any idea? please