You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* initial v1 api routes except AM
Signed-off-by: Jacob Lisi <[email protected]>
* all modules registered using API
Signed-off-by: Jacob Lisi <[email protected]>
* update vendor directory and remove unused handlers
Signed-off-by: Jacob Lisi <[email protected]>
* disable single binary alertmanager & ruler
Signed-off-by: Jacob Lisi <[email protected]>
* add logging to api package
Signed-off-by: Jacob Lisi <[email protected]>
* remove unused auth setup in initAPI
Signed-off-by: Jacob Lisi <[email protected]>
* revert gorilla mux to current version
Signed-off-by: Jacob Lisi <[email protected]>
* remove unneeded vendored import
Signed-off-by: Jacob Lisi <[email protected]>
* revert go.sum
Signed-off-by: Jacob Lisi <[email protected]>
* remove unused field
Signed-off-by: Jacob Lisi <[email protected]>
* update docs
Signed-off-by: Jacob Lisi <[email protected]>
* ensure legacy prefix is propagated to API module
Signed-off-by: Jacob Lisi <[email protected]>
* goimports for handlers.go
Signed-off-by: Jacob Lisi <[email protected]>
* ensure prom wrapped with fakeAddr
Signed-off-by: Jacob Lisi <[email protected]>
* fix prefix for promrouter
Signed-off-by: Jacob Lisi <[email protected]>
* use single util function for route registration
Signed-off-by: Jacob Lisi <[email protected]>
* ensure correct methods are used for prometheus API calls
Signed-off-by: Jacob Lisi <[email protected]>
* remove unused prometheuRouter
Signed-off-by: Jacob Lisi <[email protected]>
* Update pkg/api/api.go
Co-Authored-By: Marco Pracucci <[email protected]>
Signed-off-by: Jacob Lisi <[email protected]>
* address straight forward PR feedback
Signed-off-by: Jacob Lisi <[email protected]>
* remove ingester specific health check
Signed-off-by: Jacob Lisi <[email protected]>
* fix import error introduced in rebase
Signed-off-by: Jacob Lisi <[email protected]>
* fix alertmanager routing and update docs
Signed-off-by: Jacob Lisi <[email protected]>
* fix typo
Signed-off-by: Jacob Lisi <[email protected]>
* update docs to fix typo
Signed-off-by: Jacob Lisi <[email protected]>
* add bugfix to changelog
Signed-off-by: Jacob Lisi <[email protected]>
* add http prefix config to changelog
Signed-off-by: Jacob Lisi <[email protected]>
* clarify changelog
Signed-off-by: Jacob Lisi <[email protected]>
Co-authored-by: Marco Pracucci <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,11 @@
2
2
3
3
## master / unreleased
4
4
5
+
*[CHANGE] Added v1 API routes documented in #2327. #2372
6
+
* Added `-http.alertmanager-http-prefix` flag which allows the configuration of the path where the Alertmanager API and UI can be reached. The default is set to `/alertmanager`.
7
+
* Added `-http.prometheus-http-prefix` flag which allows the configuration of the path where the Prometheus API and UI can be reached. The default is set to `/prometheus`.
8
+
* Updated the index hosted at the root prefix to point to the updated routes.
9
+
* Legacy routes hardcoded with the `/api/prom` prefix now respect the `-http.prefix` flag.
5
10
*[CHANGE] The metrics `cortex_distributor_ingester_appends_total` and `distributor_ingester_append_failures_total` now includes a `type` label to differentiate between `samples` and `metadata`. #2336
6
11
*[CHANGE] Experimental TSDB: renamed blocks meta fetcher metrics: #2375
*[ENHANCEMENT] Experimental TSDB: Added `cortex_querier_blocks_meta_synced`, which reflects current state of synced blocks over all tenants. #2392
16
21
*[ENHANCEMENT] Added `cortex_distributor_latest_seen_sample_timestamp_seconds` metric to see how far behind Prometheus servers are in sending data. #2371
17
22
*[ENHANCEMENT] FIFO cache to support eviction based on memory usage. The `-<prefix>.fifocache.size` CLI flag has been renamed to `-<prefix>.fifocache.max-size-items` as well as its YAML config option `size` renamed to `max_size_items`. Added `-<prefix>.fifocache.max-size-bytes` CLI flag and YAML config option `max_size_bytes` to specify memory limit of the cache. #2319
23
+
*[BUGFIX] Fixes #2411, Ensure requests are properly routed to the prometheus api embedded in the query if `-server.path-prefix` is set. #2372
18
24
*[BUGFIX] Experimental TSDB: fixed chunk data corruption when querying back series using the experimental blocks storage. #2400
*[BUGFIX] Experimental TSDB: fixed response status code from `422` to `500` when an error occurs while iterating chunks with the experimental blocks storage. #2402
0 commit comments