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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,7 +88,11 @@
88
88
*[ENHANCEMENT] Flusher: Added `-flusher.exit-after-flush` option (defaults to true) to control whether Cortex should stop completely after Flusher has finished its work. #2877
89
89
*[ENHANCEMENT] Added metrics `cortex_config_hash` and `cortex_runtime_config_hash` to expose hash of the currently active config file. #2874
90
90
*[ENHANCEMENT] Logger: added JSON logging support, configured via the `-log.format=json` CLI flag or its respective YAML config option. #2386
91
+
<<<<<<< HEAD
91
92
*[ENHANCEMENT] Added new flags `-bigtable.grpc-compression`, `-ingester.client.grpc-compression`, `-querier.frontend-client.grpc-compression` to configure compression used by gRPC. Valid values are `gzip`, `snappy`, or empty string (no compression, default). #2940
93
+
=======
94
+
*[ENHANCEMENT] Clarify limitations of the `/api/v1/series`, `/api/v1/labels` and `/api/v1/label/{name}/values` endpoints. #2953
95
+
>>>>>>> master
92
96
*[BUGFIX] Fixed a bug in the index intersect code causing storage to return more chunks/series than required. #2796
93
97
*[BUGFIX] Fixed the number of reported keys in the background cache queue. #2764
94
98
*[BUGFIX] Fix race in processing of headers in sharded queries. #2762
@@ -103,6 +107,7 @@
103
107
*[BUGFIX] Query-frontend: Fix passing HTTP `Host` header if `-frontend.downstream-url` is configured. #2880
104
108
*[BUGFIX] Ingester: Improve time-series distribution when `-experimental.distributor.user-subring-size` is enabled. #2887
105
109
*[BUGFIX] Set content type to `application/x-protobuf` for remote_read responses. #2915
110
+
*[BUGFIX] Fixed ruler and store-gateway instance registration in the ring (when sharding is enabled) when a new instance replaces abruptly terminated one, and the only difference between the two instances is the address. #2954
Copy file name to clipboardExpand all lines: docs/configuration/v1-guarantees.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,8 @@ The Cortex maintainers commit to ensuring future version of Cortex can read data
23
23
24
24
Cortex strives to be 100% API compatible with Prometheus (under `/api/prom/*`); any deviation from this is considered a bug, except:
25
25
26
-
- Requiring the `__name__` label on queries.
26
+
- Requiring the `__name__` label on queries when querying the chunks storage (queries to ingesters or clusters running the blocks storage are not affected).
27
+
- For queries to the `/api/v1/series`, `/api/v1/labels` and `/api/v1/label/{name}/values` endpoints, query's time range is ignored and the data is always fetched from ingesters.
27
28
- Additional API endpoints for creating, removing and modifying alerts and recording rules.
28
29
- Additional API around pushing metrics (under `/api/push`).
29
30
- Additional API endpoints for management of Cortex itself, such as the ring. These APIs are not part of the any compatibility guarantees.
0 commit comments