Hi all,
I have a log field by default as string src_ip = 10.14.114.18 I am able to have it as ip datatype in kibana by running default mappings API.
But for visualization, I need this as geoip datatype so that it can be used in coordinate or region maps
I am ingesting data from logstash to elastic-search.
Can anyone help me on this to get src_ip field as geoip.i had also tried geoip processor as -
geoip {
source => "source_ip"
}
but it doesn't worked out this still as string datatype in kibana.