Hi All,
I have a issues in mapping the geo ip location to geo point.Could anyone please help me on this.Iam trying to analyse our cisco netflow data .When i tried to create tile map its resulting in no results found.
my logstash configuration is like this
filter {
if [type] == "netflow_cisco_asa" {
geoip {
source => "[netflow][ipv4_src_addr]"
target => "src_geoip"
database => "/opt/logstashGeo/GeoLiteCity.dat"
add_field => [ "[geoip][coordinates]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][coordinates]", "%{[geoip][latitude]}" ]
}
geoip {
source => "[netflow][ipv4_dst_addr]"
target => "dst_geoip"
database => "/opt/logstashGeo/GeoLiteCity.dat"
add_field => [ "[geoip][coordinates]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][coordinates]", "%{[geoip][latitude]}" ]
}
mutate {
convert => [ "[geoip][coordinates]", "float"]
}
}
}
This how my fields look like,
Can any one please help me getting the tile map working for me ,it would be really helpful.
Thanks,
Raj