How to see if filebeat data is being sent to logstash

34,572

If you followed the official Filebeat getting started guide and are routing data from Filebeat -> Logstash -> Elasticearch, then the data produced by Filebeat is supposed to be contained in a filebeat-YYYY.MM.dd index. It uses the filebeat-* index instead of the logstash-* index so that it can use its own index template and have exclusive control over the data in that index.

So in Kibana you should configure a time based index pattern based on the filebeat-* index pattern instead of logstash-*. Alternatively you could run the import_dashboards script provided with Filebeat and it will install an index pattern into Kibana for you. The path to the import_dashboards script may vary based on how you installed Filebeat. This is for Linux when installed via RPM or deb.

/usr/share/filebeat/scripts/import_dashboards -es http://localhost:9200

You can check if data is contained in a filebeat-YYYY.MM.dd index in Elasticsearch using a curl command that will print the event count.

curl http://localhost:9200/filebeat-*/_count?pretty

And you can check the Filebeat logs for errors if you have no events in Elasticsearch. The logs are located at /var/log/filebeat/filebeat by default on Linux. You can increase verbosity by setting logging.level: debug in your config file.

Share:
34,572

Related videos on Youtube

Celi Manu
Author by

Celi Manu

Data Scientist, Programmer, Photographer

Updated on September 18, 2022

Comments

  • Celi Manu
    Celi Manu over 1 year

    When I open up Kibana interface, I get an error to configure index when logstash-* is entered as a query:

    kibana error: please specify a default index pattern

    How can I see if filebeat is sending logs to logstash? I followed the filebeat and ELK stack tutorials exactly. I can see data when I enter in filebeat-* into Kibana, but nothing when I enter in logstash-* into Kibana.

    • Admin
      Admin over 7 years
      If you post the actual error message, someone might be able to help you with that.
    • Admin
      Admin over 7 years
      @AlainCollins I inserted the message into my post
  • Celi Manu
    Celi Manu over 7 years
    Thanks Alain. How do I "crank up debugging" in filebeat?
  • Alain Collins
    Alain Collins over 7 years