Marco Pracucci

Results 427 comments of Marco Pracucci

When you use the blocks storage it's already configurable via `cortex_ingester_data_disk_class` (ingester pvc is overridden in `tsdb.libsonnet`). If you're using the chunks storage, then yes, you can open a PR...

> The field does not exist in config.libsonnet and I don't see where tsdb.libsonnet is called from cortex.libsonnet If you run the blocks storage, then you have to import `tsdb.libsonnet`...

I assumed it would have used these defaults: https://github.com/grafana/cortex-jsonnet/blob/56cb5e3d73950b977ba2e4bfd7e46e2acb0b77b2/cortex-mixin/config.libsonnet#L5-L9 But I guess there's an issue somewhere.

May you confirm we can't query the last time (seconds) a metric has increased, right? On Wed, Apr 21, 2021 at 11:19 PM Björn Rabenstein ***@***.***> wrote: > Are you...

What we typically do is to override CLI flags in `_args` (eg. `distributor_args+:: { ... }`) and not `distributorConfig`, as you already pointed out. > On a semi-related note, the...

> gateway For the sake of clarity, this issue is about the auth cortex-gateway (`cortex-gw` in dashboards) and not the store-gateway (which is open-source and a required service by the...

Have you tried wrapping the registerer with `prometheus.WrapRegistererWith()` ([doc](https://github.com/prometheus/client_golang/blob/main/prometheus/wrap.go#L47))? The idea is that you can wrap the registerer adding a constant label to differentiate the component. In other projects we...

We also need to come up with a migration plan. I think that to migrate we need to expose `GossipVerifyIncoming` and `GossipVerifyOutgoing`. I'm not sure we need to expose both...

Would listening on `127.0.0.1` instead of `0.0.0.0` fix the issue?

## Looking at timer_memberlist_gossip metric The duration of `gossip()` execution is tracked by `timer_memberlist_gossip` summary metric. Since it's configured with a [max age of 10s](https://github.com/armon/go-metrics/blob/129ee86de65934631a7fdbeb8c5aa0ec08bfdb6c/prometheus/prometheus.go#L337-L342), but in our infrastructure we...