Sebastian Rabenhorst
Sebastian Rabenhorst
If you came here because you want to deploy `metrics-server` to your kind cluster: ``` kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.6/components.yaml kubectl patch deployment metrics-server -n kube-system -p '{"spec":{"template":{"spec":{"containers":[{"name":"metrics-server","args":["--cert-dir=/tmp", "--secure-port=4443", "--kubelet-insecure-tls","--kubelet-preferred-address-types=InternalIP"]}]}}}}' ```...
> We get this feedback consistently that Thanos is hard to understand and we are adding quite new functionality here thus could you please add a paragraph to `docs/components/compact.md` about...
> This seems to be the last piece missing to fully support native histograms in Thanos. Can we help in any way so this can get merged? I don't had/have...
> IIUC, only query frontend, Compactor and Ruler needs to support Native histograms? > > I am wondering if we need to do anything specific in Ruler or it works...
Downsampling and compaction is blocked by a bug we hit in Prometheus regarding appending histograms to open chunks during compaction, which should be fixed by https://github.com/prometheus/prometheus/pull/12185. The bug needs to...
Ruler does not work with native histograms out of the box. `promclient` returns model representation of native histogram for queries, which we need to translate to `histogram.FloatHistograms`: https://github.com/thanos-io/thanos/blob/5d5d39a35ba62889aa759d60380fe43deee386e4/pkg/promclient/promclient.go#L483-L486 We will...
We have PRs now for all components. I just added the last one for rule.