cortex
cortex copied to clipboard
A horizontally scalable, highly available, multi-tenant, long term Prometheus.
Signed-off-by: Alvin Lin **What this PR does**: Upgrade build image to use Go 1.19 so we can start using new language features like generic. Example build workflow run using the...
**What this PR does**: Dropping support Prometheus 1.x rule format on configdb **Which issue(s) this PR fixes**: Fixes https://github.com/cortexproject/cortex/issues/4822 **Checklist** - [ ] Tests updated - [ ] Documentation added...
**Describe the bug** I'm seeing 500s from ingesters, mostly one of my ingesters:  The problem is, I see no errors or warnings - and my log level is at...
We keep an entire legacy [promql engine](https://github.com/cortexproject/cortex/tree/master/pkg/configs/legacy_promql) code on cortex just to support this old rule format and I think is time for it to retire! This is also only...
**What this PR does**: Adds support for custom implementations of pusher and queryable Example of custom implementation of pusher and queryable being used: ``` LoadConfig(configFile, expandENV, &cfg) cfg.ExternalQueryable = querier.NewQueryable(c)...
Signed-off-by: Mengmeng Yang **What this PR does**: Add few more logs to cache results file so that it's easier to figure out a request is skipped cache, cache hit, cache...
**Checklist** - [ ] Tests updated - [ ] Documentation added - [x] `CHANGELOG.md` updated - the order of entries should be `[CHANGE]`, `[FEATURE]`, `[ENHANCEMENT]`, `[BUGFIX]`
According to [Go's 1.18 release notes](https://go.dev/blog/go1.18) there are a lot of goodies, so we should upgrade. Sooner or later, there will be dependencies we want to use that requires Go...
After reading the documentation it is not clear for me, how the downgrade process should be performed over the solution. Could you please describe somewhere in the documentation: - How...
**What this PR does**: * Introduced lock file for every blocks are under compaction while using shuffle sharding grouper. The content of lock file is simply a timestamp when the...