Search code examples
elasticsearchlogstashkibanafilebeatelk

geo_ip kibana index and logstash filter


I created a logstash server with this filter

https://www.elastic.co/guide/en/logstash/6.7/logstash-config-for-filebeat-modules.html#parsing-apache2

but my problem is that the kibana map does not show anything. that's what I have in my kibana index patterns

enter image description here

do you have any idea what i missed. Thank you


Solution

  • thank you @Val I executed these 3 commands and it work :

    sudo filebeat setup --template -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
    
    Output
    Loaded index template
    

    and

    sudo filebeat setup -e -E output.logstash.enabled=false -E output.elasticsearch.hosts=['localhost:9200'] -E setup.kibana.host=localhost:5601
    
    sudo systemctl restart filebeat