From bb558decb1688fb1fce99ea85e21396e30447edc Mon Sep 17 00:00:00 2001 From: fbarbu15 Date: Wed, 3 Sep 2025 09:47:57 +0300 Subject: [PATCH 1/2] chore: fix waku_connected_peers_per_shard metric (#136) --- src/test_data.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test_data.py b/src/test_data.py index 95dbca9f..b94a8ba2 100644 --- a/src/test_data.py +++ b/src/test_data.py @@ -391,7 +391,6 @@ METRICS_WITH_INITIAL_VALUE_ZERO = [ 'waku_filter_handle_message_duration_seconds_bucket{le="20.0"}', 'waku_filter_handle_message_duration_seconds_bucket{le="30.0"}', "total_messages_cached", - 'waku_connected_peers_per_shard{shard="0"}', "waku_legacy_store_queries_total", "waku_store_queries_total", ] From 966830acc2cde93b6cd16668cb6ffa4ec0bf1b3d Mon Sep 17 00:00:00 2001 From: fbarbu15 Date: Wed, 17 Sep 2025 11:49:01 +0300 Subject: [PATCH 2/2] chore: maintenance (#137) --- src/test_data.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test_data.py b/src/test_data.py index b94a8ba2..4a8befe5 100644 --- a/src/test_data.py +++ b/src/test_data.py @@ -22,12 +22,12 @@ SAMPLE_INPUTS = [ {"description": "Email format", "value": "user@example.com"}, {"description": "URL format", "value": "http://example.com"}, {"description": "Date and time in ISO format", "value": "2023-11-01T12:00:00Z"}, - {"description": "String with escaped quotes", "value": '"Escaped" \\"quotes\\"'}, + # {"description": "String with escaped quotes", "value": '"Escaped" \\"quotes\\"'}, # https://github.com/waku-org/nwaku/issues/3572 {"description": "A regular expression", "value": "Regular expression: ^[a-z0-9_-]{3,16}$"}, {"description": "A very long string", "value": "x" * 1000}, {"description": "A JSON string", "value": '{"name": "John", "age": 30, "city": "New York"}'}, {"description": "A Unix path", "value": "/usr/local/bin"}, - {"description": "A Windows path", "value": "C:\\Windows\\System32"}, + # {"description": "A Windows path", "value": "C:\\Windows\\System32"}, # https://github.com/waku-org/nwaku/issues/3572 {"description": "An SQL query", "value": "SELECT * FROM users WHERE id = 1;"}, {"description": "JavaScript code snippet", "value": "function test() { console.log('Hello World'); }"}, {"description": "A CSS snippet", "value": "body { background-color: #fff; }"}, @@ -393,4 +393,6 @@ METRICS_WITH_INITIAL_VALUE_ZERO = [ "total_messages_cached", "waku_legacy_store_queries_total", "waku_store_queries_total", + "mix_pool_size", + "libp2p_gossipsub_imreceiving_saved_messages_total", ]