fluent-plugin-prometheus icon indicating copy to clipboard operation
fluent-plugin-prometheus copied to clipboard

Option to serve compressed responses

Open Lusitaniae opened this issue 2 years ago • 0 comments

I'm currently using fluentd to generate a giant amount of metrics which have already passed 50Mb response sizes in some of our nodes

I can bump limits and timeouts on the scraping side of things, but compressing the response would probably be very useful here!

$ curl -s http://node1:9106/metrics | wc -c
37420840
$ curl -s http://node1:9106/metrics | gzip -c | wc -c
1877477

Lusitaniae avatar Dec 13 '23 06:12 Lusitaniae