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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# Changelog
2
2
3
3
## master / unreleased
4
+
*[CHANGE] AlertManager: include reason label in cortex_alertmanager_notifications_failed_total.#5409
4
5
*[CHANGE] Query: Set CORS Origin headers for Query API #5388
5
6
*[CHANGE] Updating prometheus/alertmanager from v0.25.0 to v0.25.1-0.20230505130626-263ca5c9438e. This includes the below changes. #5276
6
7
- Validating new fields on the Webhook AM config, PushOver AM Config and Telegram AM Config.
@@ -24,8 +25,11 @@
24
25
*[ENHANCEMENT] Improving Performance on the API Gzip Handler. #5347
25
26
*[ENHANCEMENT] Dynamodb: Add `puller-sync-time` to allow different pull time for ring. #5357
26
27
*[ENHANCEMENT] Emit querier `max_concurrent` as a metric. #5362
28
+
*[ENHANCEMENT] Avoid sort tokens on lifecycler autoJoin. #5394
27
29
*[ENHANCEMENT] Do not resync blocks in running store gateways during rollout deployment and container restart. #5363
28
30
*[ENHANCEMENT] Store Gateway: Add new metrics `cortex_bucket_store_sent_chunk_size_bytes`, `cortex_bucket_store_postings_size_bytes` and `cortex_bucket_store_empty_postings_total`. #5397
31
+
*[ENHANCEMENT] Add jitter to lifecycler heartbeat. #5404
32
+
*[ENHANCEMENT] Store Gateway: Add config `estimated_max_series_size_bytes` and `estimated_max_chunk_size_bytes` to address data overfetch. #5401
29
33
*[ENHANCEMENT] Store Gateway: Apply WaitStabilityMinDuration when syncing blocks #5406
30
34
*[BUGFIX] Ruler: Validate if rule group can be safely converted back to rule group yaml from protobuf message #5265
31
35
*[BUGFIX] Querier: Convert gRPC `ResourceExhausted` status code from store gateway to 422 limit error. #5286
require.NoError(t, storeGateways.WaitSumMetrics(e2e.Equals(2*2), "thanos_store_index_cache_items"))// 2 series both for postings and series cache
249
-
require.NoError(t, storeGateways.WaitSumMetrics(e2e.Equals(2*2), "thanos_store_index_cache_items_added_total"))// 2 series both for postings and series cache
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(0), "thanos_store_index_cache_hits_total")) // no cache hit cause the cache was empty
478
+
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64((5+5+2)*seriesReplicationFactor)), "thanos_store_index_cache_requests_total"))// 5 for expanded postings and postings, 2 for series
479
+
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(0), "thanos_store_index_cache_hits_total")) // no cache hit cause the cache was empty
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(2*2*seriesReplicationFactor)), "thanos_store_index_cache_items"))// 2 series both for postings and series cache
483
-
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(2*2*seriesReplicationFactor)), "thanos_store_index_cache_items_added_total"))// 2 series both for postings and series cache
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(2*seriesReplicationFactor)), "thanos_store_index_cache_hits_total")) // this time has used the index cache
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(2*2*seriesReplicationFactor)), "thanos_store_index_cache_items")) // as before
499
-
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(2*2*seriesReplicationFactor)), "thanos_store_index_cache_items_added_total")) // as before
498
+
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(9*seriesReplicationFactor)), "thanos_store_index_cache_items")) // as before
499
+
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64(9*seriesReplicationFactor)), "thanos_store_index_cache_items_added_total")) // as before
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64((11+2)*seriesReplicationFactor)), "thanos_memcached_operations_total")) // as before + 2 gets
501
+
require.NoError(t, cluster.WaitSumMetrics(e2e.Equals(float64((21+2)*seriesReplicationFactor)), "thanos_memcached_operations_total")) // as before + 2 gets
0 commit comments