# Logstash GeoIP Kibana point-to-point maps problems

**URL:** https://discuss.elastic.co/t/logstash-geoip-kibana-point-to-point-maps-problems/276783
**Category:** Logstash
**Created:** [June 23, 2021, 11:32am UTC](https://discuss.elastic.co/t/logstash-geoip-kibana-point-to-point-maps-problems/276783 "2021-06-23T11:32:01Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Michael\_Dylan\_McAloo](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/michael_dylan_mcaloo/32/80928_2.png) [@Michael\_Dylan\_McAloo](https://discuss.elastic.co/u/Michael_Dylan_McAloo)
#### Post date: [June 23, 2021, 11:32am UTC](https://discuss.elastic.co/t/logstash-geoip-kibana-point-to-point-maps-problems/276783/1 "2021-06-23T11:32:01Z")

</div>

I have Logstash with Geoip enabled and even having everything correctly it tells me that I don't have the correct index selected for the creation of map Point to point, as you can see:

![image](https://us1.discourse-cdn.com/elastic/original/3X/e/d/ede696aae8458fa8e35a1449979ed1b478cbb7b5.png)

Code:

```auto
input {
    file {
        path => "/var/log/snort/alert_fast.txt"
        start_position => "beginning"
    }
}

filter {
  dissect { mapping => { "message" => '%{ts} [%{trash}] [%{fd1}] "%{alert}" [%{fd2}} %{ip_ori}:%{port_ori} %{fd3} %{ip_dest}:%{port_dest}' }>
  geoip { source => "ip_ori" }
}

output {
    elasticsearch {
        hosts => "http://10.200.0.29:9200"
        index => "logstash-snort3a"
    }
    stdout { codec => rubydebug }
}

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [July 21, 2021, 11:32am UTC](https://discuss.elastic.co/t/logstash-geoip-kibana-point-to-point-maps-problems/276783/2 "2021-07-21T11:32:50Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
