# Logstash internal monitoring not sending any info

**URL:** https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388
**Category:** Logstash
**Tags:** elastic-stack-monitoring
**Created:** [December 30, 2019, 11:15pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388 "2019-12-30T23:15:59Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Vincent\_Maury](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vincent_maury/32/59973_2.png) [@Vincent\_Maury](https://discuss.elastic.co/u/Vincent_Maury)
#### Post date: [December 30, 2019, 11:15pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/1 "2019-12-30T23:15:59Z")

</div>

Hi,  
I've setup Elasticsearch, Kibana and Logstash using [https://www.elastic.co/guide/en/elastic-stack/current/installing-elastic-stack.html](https://www.elastic.co/guide/en/elastic-stack/current/installing-elastic-stack.html)  
I activated monitoring from Kibana monitoring UI.  
then I tried configuring the logstash internal collection of monitoring data ([https://www.elastic.co/guide/en/logstash/current/monitoring-internal-collection.html](https://www.elastic.co/guide/en/logstash/current/monitoring-internal-collection.html)) by adding the `xpack.monitoring.collection.enabled: true` in elasticsearch.yml config, then the `xpack.monitoring.enabled: true`and `xpack.monitoring.elasticsearch.hosts: ["http://localhost:9200"]` in logstash.yml  
But there is no logstash monitoring index created in Elasticsearch, and no data displayed in Kibana monitoring...  
Any clue please?  
Thanks a lot in advance!

---

<div class="post-metadata">

### Author: ![rugenl](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rugenl/32/12887_2.png) [@rugenl](https://discuss.elastic.co/u/rugenl)
#### Post date: [December 31, 2019, 12:47am UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/2 "2019-12-31T00:47:49Z")

</div>

Did you secure elasticsearch? If so, you will need to add security to the logstash elasticsearch output.

---

<div class="post-metadata">

### Author: ![Vincent\_Maury](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vincent_maury/32/59973_2.png) [@Vincent\_Maury](https://discuss.elastic.co/u/Vincent_Maury)
#### Post date: [December 31, 2019, 8:41am UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/3 "2019-12-31T08:41:03Z")

</div>

No, in the simple installation guide there is no security  
So I didn't set any  
It's supposed to work as well without authentication right?

---

<div class="post-metadata">

### Author: ![chrisronline](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/chrisronline/32/28230_2.png) [@chrisronline](https://discuss.elastic.co/u/chrisronline)
#### Post date: [December 31, 2019, 11:51am UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/4 "2019-12-31T11:51:17Z")

</div>

Do you have any defined pipelines? The stack monitoring UI will not show any logstash monitoring data if it does not detect any pipelines.

---

<div class="post-metadata">

### Author: ![Vincent\_Maury](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/vincent_maury/32/59973_2.png) [@Vincent\_Maury](https://discuss.elastic.co/u/Vincent_Maury)
#### Post date: [December 31, 2019, 3:07pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/5 "2019-12-31T15:07:15Z")

</div>

Hi Chris,  
I do have a "main" pipeline, but I'm running logstash with a -f file.conf  
not using multiple pipelines, not using central management either

---

<div class="post-metadata">

### Author: ![rugenl](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/rugenl/32/12887_2.png) [@rugenl](https://discuss.elastic.co/u/rugenl)
#### Post date: [December 31, 2019, 6:55pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/6 "2019-12-31T18:55:12Z")

</div>

Ok, you can do this to see if get stats:

`curl -XGET 'localhost:9600/_node/stats/events?pretty'`

Any errors in logstash or elastic logs? Is logstash processing events that are getting to elasticsearch?

---

<div class="post-metadata">

### Author: ![chrisronline](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/chrisronline/32/28230_2.png) [@chrisronline](https://discuss.elastic.co/u/chrisronline)
#### Post date: [December 31, 2019, 7:28pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/7 "2019-12-31T19:28:18Z")

</div>

Try running this query against the monitoring cluster and return the results:

```auto
POST .monitoring-logstash-*/_search
{
  "size": 1,
  "sort": [
    {
      "timestamp": {
        "order": "desc"
      }
    }
  ],
  "query": {
    "term": {
      "type": {
        "value": "logstash_stats"
      }
    }
  },
  "collapse": {
    "field": "cluster_uuid"
  }
}

```

---

<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: [January 28, 2020, 7:29pm UTC](https://discuss.elastic.co/t/logstash-internal-monitoring-not-sending-any-info/213388/8 "2020-01-28T19:29:06Z")

</div>

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