Steve Simpson
Steve Simpson
Coming back to this one very late - apologies. I have noticed these errors in one of our dev environments at Grafana, which we deploy using Helm, however whilst they...
Yep, I'll clean it up shortly. Just doing some testing internally before merging.
I recently discovered another issue with this, though I'm unsure whether it's an immediate cause for concern - conntrack table utilization. These short lived connections live on in conntrack for...
I don't know if using non-blocking writes will help - I believe we create and [close](https://github.com/grafana/dskit/blob/ead3f9308bb7b413ce997182dd4d7c6e038bc68f/kv/memberlist/tcp_transport.go#L506) a connection for every `WriteTo`. I don't know off the top of my head...
Ah I see - the connect/disconnect is async too. It would be more efficient to use UDP when possible, opening a new connection for every packet is quite wasteful. If...
This is looking really nice. I discussed with @konrad147 already but repeating here: - Because GMA returns the folder path in the "file" field, not the folder UID. There we...
I believe this is because the Prometheus code that the Ruler uses hard coded 5 minute idle timeout: https://github.com/prometheus/common/blob/6b9921f9eba2cd74f2caca0d713bb0a6eb7ef1b9/config/http_config.go#L55 ``` idleConnTimeout: 5 * time.Minute, ``` But the default timeout for...