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
* Add users stats http api to ingester
Signed-off-by: Daniel Deluiggi <[email protected]>
* Changelog
Signed-off-by: Daniel Deluiggi <[email protected]>
* Change name for loadedBlocks
Signed-off-by: Daniel Deluiggi <[email protected]>
---------
Signed-off-by: Daniel Deluiggi <[email protected]>
Signed-off-by: Daniel Blando <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
*[ENHANCEMENT] Ruler: Add new ruler metric `cortex_ruler_rule_groups_in_store` that is the total rule groups per tenant in store, which can be used to compare with `cortex_prometheus_rule_group_rules` to count the number of rule groups that are not loaded by a ruler. #5869
6
6
*[ENHANCEMENT] Ingester/Ring: New `READONLY` status on ring to be used by Ingester. New ingester API to change mode of ingester #6163
7
7
*[ENHANCEMENT] Ruler: Add query statistics metrics when --ruler.query-stats-enabled=true. #6173
8
+
*[ENHANCEMENT] Ingester: Add new API `/ingester/all_user_stats` which shows loaded blocks, active timeseries and ingestion rate for a specific ingester. #6178
8
9
*[ENHANCEMENT] Distributor: Add new `cortex_reduced_resolution_histogram_samples_total` metric to to track the number of histogram samples which resolution was reduced. #6182
@@ -242,7 +243,7 @@ GET /distributor/all_user_stats
242
243
GET /all_user_stats
243
244
```
244
245
245
-
Displays a web page with per-tenant statistics updated in realtime, including the total number of active series across all ingesters and the current ingestion rate (samples / sec).
246
+
Displays a web page with per-tenant statistics updated in realtime, including the total number of loaded blocks and active series across all ingesters as well as the current ingestion rate (samples / sec).
246
247
247
248
### HA tracker status
248
249
@@ -297,6 +298,15 @@ GET /ring
297
298
298
299
Displays a web page with the ingesters hash ring status, including the state, healthy and last heartbeat time of each ingester.
299
300
301
+
### Ingester tenants stats
302
+
303
+
```
304
+
GET /ingester/all_user_stats
305
+
306
+
```
307
+
308
+
Displays a web page with per-tenant statistics updated in realtime, including the total number of loaded blocks and active series from a specific ingester as well as the current ingestion rate (samples / sec).
0 commit comments