Metric libbeat.output.write.bytes does not change for type elasticsearch #20752
Closed
Description
- Version: 7.7.0+
- Operating System: Debian 9.12
- Discuss Forum URLs:
- Steps to Reproduce:
- Update from Filebeat 7.6.2 to 7.7.0 +
- Configure sending logs to Elasticsearch
- Enable http Endpoint for gathering internal Filebeat metrics
- Make sure logs are successfully sent to ES
- Make a request to
curl -s -XGET 'localhost:5066/stats?pretty'
- Make sure the metric libbeat.output.write.bytes doesn't change
"libbeat": {
"config": {
"module": {
"running": 0,
"starts": 0,
"stops": 0
},
"reloads": 1,
"scans": 1
},
"output": {
"events": {
"acked": 803127,
"active": 0,
"batches": 58574,
"dropped": 0,
"duplicates": 0,
"failed": 0,
"toomany": 0,
"total": 803127
},
"read": {
"bytes": 0,
"errors": 0
},
"type": "elasticsearch",
"write": {
"bytes": 0,
"errors": 0
}
},
Activity