As Kibana requires prefix underscores in the field keys- link (this issue seems unresolved), I am not able to process the field key values that come with default starting underscores (eg-journald logs for docker) in Kiabana. I am using logstash currently to push the logs to elasticsearch. I read this answer that uses ruby filter to remvove all underscores, but I guess this method would make my consumer very slow.
Is there a way to remove the prefix underscores from all the field names using the power of regex in logstash?
For example -
_HELO: World
should now change to be:
HELLO: World
probably by using a different pluggin than ruby