# Filebeat dashboard : No results found

**URL:** https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524
**Category:** Kibana
**Created:** [August 18, 2017, 7:33am UTC](https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524 "2017-08-18T07:33:36Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Durgaprasad](https://avatars.discourse-cdn.com/v4/letter/d/e19b73/32.png) [@Durgaprasad](https://discuss.elastic.co/u/Durgaprasad)
#### Post date: [August 18, 2017, 7:33am UTC](https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524/1 "2017-08-18T07:33:36Z")

</div>

Hi Team,  
I have a 2 Servers ( one is EL and other is Kibana and filebeat ) both are Ubuntu Server 16.04 LTS.  
I have installed Elasticsearch, Logstash in 1st Server. & Kibana, filebeat, metricbeat and packetbeat in the 2nd server, for “version’s = 5.0.2 DEB installation”.  
I can see the log index in my Kibana discovery but when I switch to the tab filebeat-\* it is showing me (No results found).

when i restart the filebeat service at that time for 5 to 10 min it is working fine, and later it is showing me (No results found).  
Please help out on this issue.

Thanks,  
Durgaprasad

---

<div class="post-metadata">

### Author: ![tsullivan](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/tsullivan/32/31077_2.png) [@tsullivan](https://discuss.elastic.co/u/tsullivan)
#### Post date: [August 18, 2017, 11:38pm UTC](https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524/2 "2017-08-18T23:38:23Z")

</div>

How often is Filebeat sending data to Elasticsearch? Can you verify the continuity of data by doing a search in Dev tools such as:

```auto
POST filebeat-*/_search
{
  "size": 10,
  "query": {
    "match_all": {}
  },
  "sort": [
    {
      "@timestamp": {
        "order": "desc"
      }
    }
  ]
}

```

And then look at the timestamps in the results.

---

<div class="post-metadata">

### Author: ![Durgaprasad](https://avatars.discourse-cdn.com/v4/letter/d/e19b73/32.png) [@Durgaprasad](https://discuss.elastic.co/u/Durgaprasad)
#### Post date: [August 20, 2017, 1:34am UTC](https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524/3 "2017-08-20T01:34:03Z")

</div>

Thank you for a reply.

Filebeat Issue is resolved there is a problem with my configurations, filebeat data do not sync with logstash, getting errors, I was checked log file issue is founded.

After I changed the below of configuration in logstash conf file issue is resolved.

* * *

sudo vi /etc/logstash/conf.d/logstash.conf

input {  
beats {  
port =\> "5044"  
}  
}

output {  
elasticsearch {  
hosts =\> "192.168.1.17:9200"  
manage\_template =\> false  
index =\> "%{[@metadata][beat]}-%{+YYYY.MM.dd}"  
document\_type =\> "%{[@metadata][type]}"  
}  
}

* * *

> <https://stackoverflow.com/questions/35733265/elk-stack-elasticsearch-index-creation-logstash>

---

<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: [September 17, 2017, 1:34am UTC](https://discuss.elastic.co/t/filebeat-dashboard-no-results-found/97524/4 "2017-09-17T01:34:07Z")

</div>

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