2026-03-29 12:54:24 +00:00

1369 lines
250 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

WRN 2026-03-29 11:46:36.991+00:00 whether to mount storeSync is not specified, defaulting to not mounting topics="waku conf builder" tid=1 file=waku_conf_builder.nim:471
bSubscribeShards: some(@[0])
INF 2026-03-29 11:46:36.991+00:00 Sharding configuration: topics="waku conf builder" tid=1 file=waku_conf_builder.nim:506 shardingConf="(kind: AutoSharding, numShardsInCluster: 1)" subscribeShards=@[0]
INF 2026-03-29 11:46:36.992+00:00 Configuration: Enabled protocols topics="waku conf" tid=1 file=waku_conf.nim:157 relay=true rlnRelay=false store=true filter=false lightPush=false peerExchange=true rendezvous=true
INF 2026-03-29 11:46:36.992+00:00 Configuration. Network topics="waku conf" tid=1 file=waku_conf.nim:166 cluster=3
INF 2026-03-29 11:46:36.992+00:00 Configuration. Active Relay Shards topics="waku conf" tid=1 file=waku_conf.nim:169 shard=0
INF 2026-03-29 11:46:36.992+00:00 Setting up storage tid=1 file=node_factory.nim:532
INF 2026-03-29 11:46:36.992+00:00 Initializing node tid=1 file=node_factory.nim:541
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/ipfs/id/1.0.0]"
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/libp2p/autonat/1.0.0]"
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/libp2p/circuit/relay/0.2.0/hop, /libp2p/circuit/relay/0.1.0]"
TRC 2026-03-29 11:46:36.993+00:00 no peer storage found tid=1 file=peer_manager.nim:1219
INF 2026-03-29 11:46:36.993+00:00 Initializing networking tid=1 file=waku_node.nim:228 addrs="@[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:36.994+00:00 Mounting protocols tid=1 file=node_factory.nim:547
INF 2026-03-29 11:46:36.994+00:00 Created WakuMetadata protocol topics="waku node" tid=1 file=protocol.nim:107 clusterId=3 shards="[0]"
TRC 2026-03-29 11:46:36.994+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/metadata/1.0.0]"
INF 2026-03-29 11:46:36.996+00:00 sqlite database page stats tid=1 file=builder.nim:53 pageSize=4096 pages=1 freePages=0
INF 2026-03-29 11:46:36.997+00:00 starting message store's sqlite database migration topics="waku archive migration" tid=1 file=migrations.nim:57
INF 2026-03-29 11:46:36.997+00:00 Not considered schema version 7 topics="waku archive migration" tid=1 file=migrations.nim:45
INF 2026-03-29 11:46:36.997+00:00 database schema is outdated topics="sqlite" tid=1 file=db_sqlite.nim:447 userVersion=0 targetVersion=10
INF 2026-03-29 11:46:36.998+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.000+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.000+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.001+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.001+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message_backup SELECT id, timestamp, contentTopic, pubsubTopic, payload, version FROM Message;"
INF 2026-03-29 11:46:37.001+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message_backup SELECT id, timestamp, contentTopic, pubsubTopic, payload, version FROM Message;"
INF 2026-03-29 11:46:37.001+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.002+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.002+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.003+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.003+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, timestamp, contentTopic, pubsubTopic, payload, version, 0\n FROM Message_backup;"
INF 2026-03-29 11:46:37.003+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, timestamp, contentTopic, pubsubTopic, payload, version, 0\n FROM Message_backup;"
INF 2026-03-29 11:46:37.003+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.005+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.005+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.012+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.012+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message_backup SELECT id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp FROM Message;"
INF 2026-03-29 11:46:37.012+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message_backup SELECT id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp FROM Message;"
INF 2026-03-29 11:46:37.012+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.013+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.013+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.014+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.014+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, CAST(receiverTimestamp*1000000000 AS INTEGER), contentTopic, pubsubTopic, payload, version, CAST(senderTimestamp*1000000000 AS INTEGER)\n FROM Message_backup;"
INF 2026-03-29 11:46:37.014+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, CAST(receiverTimestamp*1000000000 AS INTEGER), contentTopic, pubsubTopic, payload, version, CAST(senderTimestamp*1000000000 AS INTEGER)\n FROM Message_backup;"
INF 2026-03-29 11:46:37.014+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.015+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.015+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE Message RENAME TO Message_backup;"
INF 2026-03-29 11:46:37.017+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE Message RENAME TO Message_backup;"
INF 2026-03-29 11:46:37.017+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (senderTimestamp, id, pubsubTopic)\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.018+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (senderTimestamp, id, pubsubTopic)\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.018+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message\n SELECT *\n FROM Message_backup;"
INF 2026-03-29 11:46:37.018+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message\n SELECT *\n FROM Message_backup;"
INF 2026-03-29 11:46:37.018+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.019+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.019+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_msg ON Message (contentTopic, pubsubTopic, senderTimestamp, id);"
INF 2026-03-29 11:46:37.020+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_msg ON Message (contentTopic, pubsubTopic, senderTimestamp, id);"
INF 2026-03-29 11:46:37.020+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME COLUMN receiverTimestamp TO storedAt;"
INF 2026-03-29 11:46:37.022+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME COLUMN receiverTimestamp TO storedAt;"
INF 2026-03-29 11:46:37.022+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP INDEX IF EXISTS i_msg;"
INF 2026-03-29 11:46:37.022+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP INDEX IF EXISTS i_msg;"
INF 2026-03-29 11:46:37.022+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_query ON message (contentTopic, pubsubTopic, storedAt, id);"
INF 2026-03-29 11:46:37.024+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_query ON message (contentTopic, pubsubTopic, storedAt, id);"
INF 2026-03-29 11:46:37.024+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP INDEX IF EXISTS i_rt;"
INF 2026-03-29 11:46:37.024+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP INDEX IF EXISTS i_rt;"
INF 2026-03-29 11:46:37.024+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_ts ON message (storedAt);"
INF 2026-03-29 11:46:37.025+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_ts ON message (storedAt);"
INF 2026-03-29 11:46:37.025+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.027+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.027+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS message(\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (storedAt, id, pubsubTopic)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.029+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS message(\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (storedAt, id, pubsubTopic)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.029+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT OR IGNORE INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, storedAt)\n SELECT pubsubTopic, contentTopic, payload, version, senderTimestamp, id, storedAt\n FROM message_backup;"
INF 2026-03-29 11:46:37.029+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT OR IGNORE INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, storedAt)\n SELECT pubsubTopic, contentTopic, payload, version, senderTimestamp, id, storedAt\n FROM message_backup;"
INF 2026-03-29 11:46:37.029+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.030+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.030+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.032+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.032+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS message (\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n messageHash BLOB, -- Newly added, this will be populated with a counter value\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (messageHash)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.033+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS message (\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n messageHash BLOB, -- Newly added, this will be populated with a counter value\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (messageHash)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.033+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, messageHash, storedAt)\nSELECT\n mb.pubsubTopic,\n mb.contentTopic,\n mb.payload,\n mb.version,\n mb.timestamp,\n mb.id,\n randomblob(32), -- to populate 32-byte random blob\n mb.storedAt\nFROM message_backup AS mb;"
INF 2026-03-29 11:46:37.033+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, messageHash, storedAt)\nSELECT\n mb.pubsubTopic,\n mb.contentTopic,\n mb.payload,\n mb.version,\n mb.timestamp,\n mb.id,\n randomblob(32), -- to populate 32-byte random blob\n mb.storedAt\nFROM message_backup AS mb;"
INF 2026-03-29 11:46:37.033+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.034+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.034+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message ADD COLUMN meta BLOB;"
INF 2026-03-29 11:46:37.035+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message ADD COLUMN meta BLOB;"
INF 2026-03-29 11:46:37.035+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message DROP COLUMN timestamp;"
INF 2026-03-29 11:46:37.037+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message DROP COLUMN timestamp;"
INF 2026-03-29 11:46:37.037+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME COLUMN storedAt TO timestamp;"
INF 2026-03-29 11:46:37.038+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME COLUMN storedAt TO timestamp;"
INF 2026-03-29 11:46:37.038+00:00 database user_version updated topics="sqlite" tid=1 file=db_sqlite.nim:481 userVersion=10
INF 2026-03-29 11:46:37.038+00:00 finished message store's sqlite database migration topics="waku archive migration" tid=1 file=migrations.nim:70
INF 2026-03-29 11:46:37.038+00:00 setting up sqlite waku archive driver tid=1 file=builder.nim:65
INF 2026-03-29 11:46:37.041+00:00 executing message retention policy topics="waku archive" tid=1 file=archive.nim:270 policy=time:172800
INF 2026-03-29 11:46:37.041+00:00 beginning of executing message retention policy - time topics="waku archive retention_policy" tid=1 file=retention_policy_time.nim:22
INF 2026-03-29 11:46:37.042+00:00 end of executing message retention policy - time topics="waku archive retention_policy" tid=1 file=retention_policy_time.nim:30
INF 2026-03-29 11:46:37.042+00:00 mounting waku store protocol topics="waku node store api" tid=1 file=store.nim:255
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/store-query/3.0.0]"
INF 2026-03-29 11:46:37.042+00:00 initial storage filling started topics="waku reconciliation" tid=1 file=reconciliation.nim:357
INF 2026-03-29 11:46:37.042+00:00 initial storage filling done topics="waku reconciliation" tid=1 file=reconciliation.nim:379 elements=0
INF 2026-03-29 11:46:37.042+00:00 Store Reconciliation protocol initialized topics="waku node" tid=1 file=reconciliation.nim:427 sync_range=2m sync_interval=10s relay_jitter=1m30s
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/reconciliation/1.0.0]"
INF 2026-03-29 11:46:37.042+00:00 Store Transfer protocol initialized topics="waku node" tid=1 file=transfer.nim:216
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/transfer/1.0.0]"
INF 2026-03-29 11:46:37.042+00:00 mounting store client topics="waku node store api" tid=1 file=store.nim:274
INF 2026-03-29 11:46:37.042+00:00 mounting legacy store client topics="waku node store api" tid=1 file=store.nim:145
INF 2026-03-29 11:46:37.042+00:00 mounting auto sharding topics="waku node" tid=1 file=waku_node.nim:305 clusterId=3 shardCount=1
INF 2026-03-29 11:46:37.042+00:00 Shards created from content topics tid=1 file=node_factory.nim:333 contentTopics=[] shards=[]
INF 2026-03-29 11:46:37.042+00:00 Setting max message size tid=1 file=node_factory.nim:342 num_bytes=153600
INF 2026-03-29 11:46:37.042+00:00 mounting relay protocol topics="waku node relay api" tid=1 file=relay.nim:259
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/relay/2.0.0, /meshsub/1.3.0, /meshsub/1.2.0, /meshsub/1.1.0, /meshsub/1.0.0, /meshsub/1.3.0, /meshsub/1.2.0, /meshsub/1.1.0, /meshsub/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 relay mounted successfully topics="waku node relay api" tid=1 file=relay.nim:276
INF 2026-03-29 11:46:37.043+00:00 adding validator to signed shards tid=1 file=validator_signed.nim:56 protectedShards=[] clusterId=3
INF 2026-03-29 11:46:37.043+00:00 mounting rendezvous discovery protocol topics="waku node" tid=1 file=waku_node.nim:432
INF 2026-03-29 11:46:37.043+00:00 waku rendezvous initialized topics="waku node" tid=1 file=protocol.nim:206 clusterId=3 shards="[0]" capabilities="[Relay, Store, Sync]" wakuPeerRecord="(peerId: 16U*xtkXbm, seqNo: 1774784797, addresses: [/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws], mixKey: )"
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/rendezvous/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 mounting rendezvous client topics="waku node" tid=1 file=waku_node.nim:418
INF 2026-03-29 11:46:37.043+00:00 waku rendezvous client initialized topics="waku node" tid=1 file=client.nim:130 clusterId=3
INF 2026-03-29 11:46:37.043+00:00 mounting libp2p ping protocol topics="waku node ping api" tid=1 file=ping.nim:20
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/ipfs/ping/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 mounting light push client topics="waku node lightpush api" tid=1 file=lightpush.nim:183
INF 2026-03-29 11:46:37.043+00:00 mounting legacy light push client topics="waku node lightpush api" tid=1 file=lightpush.nim:72
INF 2026-03-29 11:46:37.043+00:00 mounting filter client topics="waku node filter api" tid=1 file=filter.nim:81
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/filter-push/2.0.0-beta1]"
INF 2026-03-29 11:46:37.043+00:00 mounting waku peer exchange topics="waku node peerexchange api" tid=1 file=peer_exchange.nim:37
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/peer-exchange/2.0.0-alpha1]"
INF 2026-03-29 11:46:37.043+00:00 mounting waku peer exchange client topics="waku node peerexchange api" tid=1 file=peer_exchange.nim:54
NTC 2026-03-29 11:46:37.043+00:00 REST service started tid=1 file=server.nim:182 address=0.0.0.0:56070
INF 2026-03-29 11:46:37.043+00:00 Starting REST HTTP server tid=1 file=builder.nim:113 url=http://0.0.0.0:56070/
INF 2026-03-29 11:46:37.043+00:00 No external callbacks to be set topics="wakunode waku" tid=1 file=waku.nim:127
TRC 2026-03-29 11:46:37.044+00:00 Send processor chain topics="send service" tid=1 file=send_service.nim:94 index=1 processor=BaseSendProcessor
INF 2026-03-29 11:46:37.044+00:00 Retrieve dynamic bootstrap nodes topics="wakunode waku" tid=1 file=waku.nim:367
INF 2026-03-29 11:46:37.044+00:00 Running nwaku node tid=1 file=node_factory.nim:464 version=v0.38.0-rc.0-14-g5c335c
INF 2026-03-29 11:46:37.044+00:00 Starting Waku node topics="waku node" tid=1 file=waku_node.nim:625 version=v0.38.0-rc.0-14-g5c335c
INF 2026-03-29 11:46:37.044+00:00 starting relay protocol topics="waku node" tid=1 file=waku_node.nim:389
INF 2026-03-29 11:46:37.044+00:00 start topics="waku relay" tid=1 file=protocol.nim:519
TRC 2026-03-29 11:46:37.044+00:00 gossipsub start topics="libp2p gossipsub" tid=1 file=gossipsub.nim:1113
TRC 2026-03-29 11:46:37.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:37.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:37.044+00:00 running scoring heartbeat topics="libp2p gossipsub" tid=1 file=scoring.nim:312 instance=140065099141200
TRC 2026-03-29 11:46:37.044+00:00 updating scores topics="libp2p gossipsub" tid=1 file=scoring.nim:144 peers=0
TRC 2026-03-29 11:46:37.044+00:00 updated scores topics="libp2p gossipsub" tid=1 file=scoring.nim:308 peers=0
INF 2026-03-29 11:46:37.044+00:00 relay started successfully topics="waku node" tid=1 file=waku_node.nim:410
INF 2026-03-29 11:46:37.044+00:00 waku rendezvous periodic registration started topics="waku rendezvous" tid=1 file=protocol.nim:127 interval=10s
INF 2026-03-29 11:46:37.044+00:00 waku rendezvous discovery started topics="waku rendezvous" tid=1 file=protocol.nim:227
INF 2026-03-29 11:46:37.045+00:00 waku rendezvous periodic requests started topics="waku rendezvous client" tid=1 file=client.nim:80 interval=10s
INF 2026-03-29 11:46:37.045+00:00 waku rendezvous client started topics="waku rendezvous client" tid=1 file=client.nim:136
INF 2026-03-29 11:46:37.045+00:00 periodic sync initialized topics="waku reconciliation" tid=1 file=reconciliation.nim:433 interval=10s
INF 2026-03-29 11:46:37.045+00:00 periodic prune initialized topics="waku reconciliation" tid=1 file=reconciliation.nim:447 interval=10s
INF 2026-03-29 11:46:37.045+00:00 Store Sync Reconciliation protocol started topics="waku reconciliation" tid=1 file=reconciliation.nim:485
INF 2026-03-29 11:46:37.045+00:00 Store Sync Transfer protocol started topics="waku transfer" tid=1 file=transfer.nim:229
DBG 2026-03-29 11:46:37.045+00:00 starting switch for peer topics="libp2p switch" tid=1 file=switch.nim:363 peerInfo="(peerId: 16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm, listenAddrs: [/ip4/0.0.0.0/tcp/56072/ws, /ip4/0.0.0.0/tcp/56071], addrs: [], protocols: [/ipfs/id/1.0.0, /libp2p/autonat/1.0.0, /libp2p/circuit/relay/0.2.0/hop, /vac/waku/metadata/1.0.0, /vac/waku/store-query/3.0.0, /vac/waku/reconciliation/1.0.0, /vac/waku/transfer/1.0.0, /vac/waku/relay/2.0.0, /vac/waku/rendezvous/1.0.0, /ipfs/ping/1.0.0, /vac/waku/filter-push/2.0.0-beta1, /vac/waku/peer-exchange/2.0.0-alpha1], protoVersion: ipfs/0.1.0, agentVersion: logos-delivery-v0.38.0-rc.0-14-g5c335c)"
TRC 2026-03-29 11:46:37.045+00:00 Starting TCP transport topics="libp2p tcptransport" tid=1 file=tcptransport.nim:116
TRC 2026-03-29 11:46:37.045+00:00 Listening on topics="libp2p tcptransport" tid=1 file=tcptransport.nim:140 address=/ip4/0.0.0.0/tcp/56071
TRC 2026-03-29 11:46:37.045+00:00 starting transport on addrs topics="libp2p transport" tid=1 file=transport.nim:49 address=@[/ip4/0.0.0.0/tcp/56071]
DBG 2026-03-29 11:46:37.045+00:00 About to accept incoming connection topics="libp2p switch" tid=1 file=switch.nim:272
TRC 2026-03-29 11:46:37.046+00:00 Starting WS transport topics="libp2p wstransport" tid=1 file=wstransport.nim:154
TRC 2026-03-29 11:46:37.046+00:00 starting transport on addrs topics="libp2p transport" tid=1 file=transport.nim:49 address=@[/ip4/0.0.0.0/tcp/56072/ws]
TRC 2026-03-29 11:46:37.046+00:00 Created HTTP Server topics="libp2p wstransport" tid=1 file=server.nim:262 host=0.0.0.0:56072
TRC 2026-03-29 11:46:37.046+00:00 Listening on topics="libp2p wstransport" tid=1 file=wstransport.nim:204 addresses="[/ip4/0.0.0.0/tcp/56072/ws]"
INF 2026-03-29 11:46:37.046+00:00 Setting up AutonatService topics="libp2p autonatservice" tid=1 file=service.nim:207
TRC 2026-03-29 11:46:37.046+00:00 Running AutonatService topics="libp2p autonatservice" tid=1 file=service.nim:231
TRC 2026-03-29 11:46:37.046+00:00 Asking peers for reachability topics="libp2p autonatservice" tid=1 file=service.nim:160
DBG 2026-03-29 11:46:37.046+00:00 About to accept incoming connection topics="libp2p switch" tid=1 file=switch.nim:272
TRC 2026-03-29 11:46:37.046+00:00 WsTransport accept topics="libp2p wstransport" tid=1 file=wstransport.nim:279
TRC 2026-03-29 11:46:37.046+00:00 Awaiting new request topics="websock http-server" tid=1 file=server.nim:194
TRC 2026-03-29 11:46:37.047+00:00 gossipsub start topics="libp2p gossipsub" tid=1 file=gossipsub.nim:1113
WRN 2026-03-29 11:46:37.047+00:00 Starting gossipsub twice topics="libp2p gossipsub" tid=1 file=gossipsub.nim:1116
WRN 2026-03-29 11:46:37.047+00:00 Starting rendezvous twice topics="waku rendezvous" tid=1 file=rendezvous.nim:626
DBG 2026-03-29 11:46:37.047+00:00 Started libp2p node topics="libp2p switch" tid=1 file=switch.nim:403 peer="(peerId: 16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm, listenAddrs: [/ip4/0.0.0.0/tcp/56071, /ip4/0.0.0.0/tcp/56072/ws], addrs: [/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws], protocols: [/ipfs/id/1.0.0, /libp2p/autonat/1.0.0, /libp2p/circuit/relay/0.2.0/hop, /vac/waku/metadata/1.0.0, /vac/waku/store-query/3.0.0, /vac/waku/reconciliation/1.0.0, /vac/waku/transfer/1.0.0, /vac/waku/relay/2.0.0, /vac/waku/rendezvous/1.0.0, /ipfs/ping/1.0.0, /vac/waku/filter-push/2.0.0-beta1, /vac/waku/peer-exchange/2.0.0-alpha1], protoVersion: ipfs/0.1.0, agentVersion: logos-delivery-v0.38.0-rc.0-14-g5c335c)"
INF 2026-03-29 11:46:37.047+00:00 PeerInfo topics="waku node" tid=1 file=waku_node.nim:478 peerId=16U*xtkXbm addrs="[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:37.047+00:00 Listening on topics="waku node" tid=1 file=waku_node.nim:501 full=[/ip4/0.0.0.0/tcp/56071/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm][/ip4/0.0.0.0/tcp/56072/ws/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm] localIp=172.17.0.107 switchAddress="@[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:37.047+00:00 Announcing addresses topics="waku node" tid=1 file=waku_node.nim:503 full=[/ip4/172.18.107.126/tcp/56071/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm][/ip4/172.18.107.126/tcp/56072/ws/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm]
INF 2026-03-29 11:46:37.047+00:00 DNS: discoverable ENR topics="waku node" tid=1 file=waku_node.nim:504 enr=enr:-LO4QBJyAgIFziXt3y4987eeYlRCKLdZu9eaa1Eso1FwdA3FeWJz6n4HQkvZW6j1dyKYCiDvLWHQnXank-1CndFWCz4BgmlkgnY0gmlwhKwSa36KbXVsdGlhZGRyc4wACgSsEmt-BtsI3QOCcnOFAAMBAACJc2VjcDI1NmsxoQLYRGADVZHhwR0-AnSYYyUmw7u6Xyr8Dlmh5swWXZUsoIN0Y3CC2weDdWRwgtsJhXdha3UyEw
INF 2026-03-29 11:46:37.048+00:00 Node started successfully topics="waku node" tid=1 file=waku_node.nim:681
TRC 2026-03-29 11:46:37.048+00:00 Starting relay connectivity loop topics="waku node peer_manager" tid=1 file=peer_manager.nim:1069
TRC 2026-03-29 11:46:37.048+00:00 Starting prune peerstore loop topics="waku node peer_manager" tid=1 file=peer_manager.nim:1062
INF 2026-03-29 11:46:37.048+00:00 Relay peer connections topics="waku node peer_manager" tid=1 file=peer_manager.nim:843 inRelayConns=0/50 outRelayConns=0/25 totalConnections=0/150 notConnectedPeers=0 outsideBackoffPeers=0
INF 2026-03-29 11:46:37.048+00:00 PeerInfo topics="waku node" tid=1 file=waku_node.nim:478 peerId=16U*xtkXbm addrs="[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:37.048+00:00 Listening on topics="waku node" tid=1 file=waku_node.nim:501 full=[/ip4/0.0.0.0/tcp/56071/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm][/ip4/0.0.0.0/tcp/56072/ws/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm] localIp=172.17.0.107 switchAddress="@[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:37.048+00:00 Announcing addresses topics="waku node" tid=1 file=waku_node.nim:503 full=[/ip4/172.18.107.126/tcp/56071/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm][/ip4/172.18.107.126/tcp/56072/ws/p2p/16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm]
INF 2026-03-29 11:46:37.048+00:00 DNS: discoverable ENR topics="waku node" tid=1 file=waku_node.nim:504 enr=enr:-LO4QBJyAgIFziXt3y4987eeYlRCKLdZu9eaa1Eso1FwdA3FeWJz6n4HQkvZW6j1dyKYCiDvLWHQnXank-1CndFWCz4BgmlkgnY0gmlwhKwSa36KbXVsdGlhZGRyc4wACgSsEmt-BtsI3QOCcnOFAAMBAACJc2VjcDI1NmsxoQLYRGADVZHhwR0-AnSYYyUmw7u6Xyr8Dlmh5swWXZUsoIN0Y3CC2weDdWRwgtsJhXdha3UyEw
INF 2026-03-29 11:46:37.048+00:00 Waku node ENR updated successfully with new multiaddress topics="wakunode waku" tid=1 file=waku.nim:301 enr=enr:-L24QKY-Vxbynn7RTFNmFy8huIeWyt-Be3oEM78gAsGwJwqeKjjRmgWWbxAhtcLBOF5RRzCxGj1vyXbLd94b7r2BDpgCgmlkgnY0gmlwhKwSa36KbXVsdGlhZGRyc5YACASsEmt-BtsHAAoErBJrfgbbCN0DgnJzhQADAQAAiXNlY3AyNTZrMaEC2ERgA1WR4cEdPgJ0mGMlJsO7ul8q_A5ZoebMFl2VLKCDdGNwgtsHg3VkcILbCYV3YWt1MhM record="(2, id: \"v4\", ip: 172.18.107.126, multiaddrs: 0x000804AC126B7E06DB07000A04AC126B7E06DB08DD03, rs: 0x0003010000, secp256k1: 0x02D84460035591E1C11D3E027498632526C3BBBA5F2AFC0E59A1E6CC165D952CA0, tcp: 56071, udp: 56073, waku2: 0x13)"
INF 2026-03-29 11:46:37.048+00:00 peer filtering updated topics="waku discv5" tid=1 file=waku_discv5.nim:70
INF 2026-03-29 11:46:37.048+00:00 Starting discovery v5 service topics="waku discv5" tid=1 file=waku_discv5.nim:336
INF 2026-03-29 11:46:37.048+00:00 start listening on udp port topics="waku discv5" tid=1 file=waku_discv5.nim:338 address=0.0.0.0 port=56073
TRC 2026-03-29 11:46:37.049+00:00 start discv5 service topics="waku discv5" tid=1 file=waku_discv5.nim:346
INF 2026-03-29 11:46:37.049+00:00 Starting discovery v5 search topics="waku discv5" tid=1 file=waku_discv5.nim:258
TRC 2026-03-29 11:46:37.049+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:37.049+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:37.049+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
INF 2026-03-29 11:46:37.049+00:00 Successfully started discovery v5 service topics="waku discv5" tid=1 file=waku_discv5.nim:352
INF 2026-03-29 11:46:37.049+00:00 Discv5: discoverable ENR topics="waku discv5" tid=1 file=waku_discv5.nim:353 enrUri=enr:-L24QHJhTlE6roDH1TAd-LwF9OuGXq-rDEnugas9ADFvAwo-JledpDZXcly9pdXiGtnTPtZwYENit6G66aI2oIlQLTIDgmlkgnY0gmlwhKwSa36KbXVsdGlhZGRyc5YACASsEmt-BtsHAAoErBJrfgbbCN0DgnJzhQADAQAAiXNlY3AyNTZrMaEC2ERgA1WR4cEdPgJ0mGMlJsO7ul8q_A5ZoebMFl2VLKCDdGNwgtsHg3VkcILbCYV3YWt1MhM enr="(3, id: \"v4\", ip: 172.18.107.126, multiaddrs: 0x000804AC126B7E06DB07000A04AC126B7E06DB08DD03, rs: 0x0003010000, secp256k1: 0x02D84460035591E1C11D3E027498632526C3BBBA5F2AFC0E59A1E6CC165D952CA0, tcp: 56071, udp: 56073, waku2: 0x13)"
INF 2026-03-29 11:46:37.049+00:00 subscribe topics="waku relay" tid=1 file=protocol.nim:594 pubsubTopic=/waku/2/rs/3/0
TRC 2026-03-29 11:46:37.049+00:00 adding validator for topic topics="libp2p pubsub" tid=1 file=pubsub.nim:667 topic=/waku/2/rs/3/0
TRC 2026-03-29 11:46:37.049+00:00 subscribing to topic topics="libp2p pubsub" tid=1 file=pubsub.nim:625 name=/waku/2/rs/3/0
TRC 2026-03-29 11:46:37.049+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.049+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.049+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.049+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
WRN 2026-03-29 11:46:37.050+00:00 No-effect API call to subscribe. Already subscribed to topic topics="waku node relay api" tid=1 file=relay.nim:161 pubsubTopic=/waku/2/rs/3/0
TRC 2026-03-29 11:46:37.050+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
INF 2026-03-29 11:46:37.050+00:00 Health monitor loop start tid=1 file=node_health_monitor.nim:516
DBG 2026-03-29 11:46:37.050+00:00 calculateConnectionState tid=1 file=node_health_monitor.nim:408 relayCount=0 storeClientCount=0 lightpushCount=0 filterCount=0
INF 2026-03-29 11:46:37.050+00:00 starting keepalive tid=1 file=node_health_monitor.nim:678 randomPeersKeepalive=10s allPeersKeepalive=2m
TRC 2026-03-29 11:46:37.050+00:00 Running keepalive loop tid=1 file=node_health_monitor.nim:593
INF 2026-03-29 11:46:37.051+00:00 subscribe (was already subscribed in the mesh; appHandler set) topics="waku node relay api" tid=1 file=relay.nim:163 pubsubTopic=/waku/2/rs/3/0
INF 2026-03-29 11:46:37.052+00:00 REST services are installed tid=1 file=builder.nim:221
INF 2026-03-29 11:46:37.052+00:00 Starting metrics HTTP server topics="waku node metrics" tid=1 file=waku_metrics.nim:63 serverIp=0.0.0.0 serverPort=56074
INF 2026-03-29 11:46:37.052+00:00 getPubSubPeersInMesh - there is no mesh peer for the given pubsub topic topics="waku relay" tid=1 file=protocol.nim:419 pubsubTopic=/waku/2/rs/3/0
INF 2026-03-29 11:46:37.053+00:00 Metrics HTTP server started topics="waku node metrics" tid=1 file=waku_metrics.nim:73 serverIp=0.0.0.0 serverPort=56074
INF 2026-03-29 11:46:37.053+00:00 Setting up shutdown hooks topics="wakunode main" tid=1 file=wakunode2.nim:63
INF 2026-03-29 11:46:37.053+00:00 Node setup complete topics="wakunode main" tid=1 file=wakunode2.nim:102
DBG 2026-03-29 11:46:38.035+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55658 meth=GET uri=/health
DBG 2026-03-29 11:46:38.035+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55658 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.035+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55658 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:38.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:38.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:38.138+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55660 meth=GET uri=/health
DBG 2026-03-29 11:46:38.138+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55660 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.139+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55660 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.241+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55668 meth=GET uri=/health
DBG 2026-03-29 11:46:38.241+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55668 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.241+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55668 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.344+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55684 meth=GET uri=/health
DBG 2026-03-29 11:46:38.344+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55684 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.344+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55684 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.447+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55698 meth=GET uri=/health
DBG 2026-03-29 11:46:38.447+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55698 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.447+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55698 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.550+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55700 meth=GET uri=/health
DBG 2026-03-29 11:46:38.550+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55700 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.551+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55700 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.653+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55702 meth=GET uri=/health
DBG 2026-03-29 11:46:38.653+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55702 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.653+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55702 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.757+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55708 meth=GET uri=/health
DBG 2026-03-29 11:46:38.757+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55708 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.757+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55708 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.860+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55714 meth=GET uri=/health
DBG 2026-03-29 11:46:38.860+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55714 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.860+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55714 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:38.962+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55728 meth=GET uri=/health
DBG 2026-03-29 11:46:38.963+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55728 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:38.963+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55728 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:39.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:39.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.045+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.045+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:39.065+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55732 meth=GET uri=/health
DBG 2026-03-29 11:46:39.065+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55732 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.066+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55732 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.168+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55736 meth=GET uri=/health
DBG 2026-03-29 11:46:39.168+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55736 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.169+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55736 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.271+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55750 meth=GET uri=/health
DBG 2026-03-29 11:46:39.272+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55750 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.272+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55750 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.374+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55754 meth=GET uri=/health
DBG 2026-03-29 11:46:39.375+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55754 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.375+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55754 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.478+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55756 meth=GET uri=/health
DBG 2026-03-29 11:46:39.478+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55756 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.478+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55756 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.580+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55760 meth=GET uri=/health
DBG 2026-03-29 11:46:39.580+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55760 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.581+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55760 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.684+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55774 meth=GET uri=/health
DBG 2026-03-29 11:46:39.684+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55774 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.684+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55774 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.787+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55776 meth=GET uri=/health
DBG 2026-03-29 11:46:39.787+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55776 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.788+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55776 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.890+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55780 meth=GET uri=/health
DBG 2026-03-29 11:46:39.890+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55780 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.890+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55780 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:39.993+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55786 meth=GET uri=/health
DBG 2026-03-29 11:46:39.993+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55786 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:39.994+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55786 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:40.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:40.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:40.097+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55798 meth=GET uri=/health
DBG 2026-03-29 11:46:40.097+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55798 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.097+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55798 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.199+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55806 meth=GET uri=/health
DBG 2026-03-29 11:46:40.200+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55806 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.200+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55806 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.303+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55814 meth=GET uri=/health
DBG 2026-03-29 11:46:40.303+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55814 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.303+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55814 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.406+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55818 meth=GET uri=/health
DBG 2026-03-29 11:46:40.406+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55818 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.407+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55818 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.509+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55834 meth=GET uri=/health
DBG 2026-03-29 11:46:40.509+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55834 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.509+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55834 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.612+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55838 meth=GET uri=/health
DBG 2026-03-29 11:46:40.612+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55838 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.612+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55838 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.714+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55846 meth=GET uri=/health
DBG 2026-03-29 11:46:40.714+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55846 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.715+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55846 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.817+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55858 meth=GET uri=/health
DBG 2026-03-29 11:46:40.818+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55858 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.818+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55858 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:40.920+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55872 meth=GET uri=/health
DBG 2026-03-29 11:46:40.920+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55872 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:40.920+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55872 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.023+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55878 meth=GET uri=/health
DBG 2026-03-29 11:46:41.023+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55878 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.023+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55878 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:41.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:41.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:41.126+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55892 meth=GET uri=/health
DBG 2026-03-29 11:46:41.126+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55892 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.126+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55892 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.229+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55896 meth=GET uri=/health
DBG 2026-03-29 11:46:41.229+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55896 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.230+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55896 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.333+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55906 meth=GET uri=/health
DBG 2026-03-29 11:46:41.333+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55906 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.333+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55906 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.436+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55920 meth=GET uri=/health
DBG 2026-03-29 11:46:41.436+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55920 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.436+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55920 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.538+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55934 meth=GET uri=/health
DBG 2026-03-29 11:46:41.538+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55934 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.539+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55934 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.642+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55950 meth=GET uri=/health
DBG 2026-03-29 11:46:41.642+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55950 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.643+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55950 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.747+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55958 meth=GET uri=/health
DBG 2026-03-29 11:46:41.747+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55958 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.748+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55958 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.852+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55972 meth=GET uri=/health
DBG 2026-03-29 11:46:41.852+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55972 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.852+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55972 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:41.955+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55976 meth=GET uri=/health
DBG 2026-03-29 11:46:41.955+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55976 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:41.955+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55976 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:42.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:42.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:42.049+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:42.049+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:42.049+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
INF 2026-03-29 11:46:42.071+00:00 Failed to query DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:124 address=one.one.one.one error="DNS server timeout: Timeout exceeded!"
DBG 2026-03-29 11:46:42.072+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55978 meth=GET uri=/health
DBG 2026-03-29 11:46:42.072+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55978 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.072+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55978 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:42.074+00:00 Got IPs from DNS server topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:155 resolvedAddresses={"1.1.1.1", "1.0.0.1", "2606:4700:4700:0000:0000:0000:0000:1111", "2606:4700:4700:0000:0000:0000:0000:1001"} server=1.0.0.1:53
DBG 2026-03-29 11:46:42.175+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55980 meth=GET uri=/health
DBG 2026-03-29 11:46:42.175+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55980 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.175+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55980 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.278+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:55994 meth=GET uri=/health
DBG 2026-03-29 11:46:42.278+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:55994 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.278+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:55994 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.381+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:56004 meth=GET uri=/health
DBG 2026-03-29 11:46:42.381+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:56004 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.382+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:56004 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.484+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:56010 meth=GET uri=/health
DBG 2026-03-29 11:46:42.484+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:56010 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.484+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:56010 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.587+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49302 meth=GET uri=/health
DBG 2026-03-29 11:46:42.587+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49302 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.588+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49302 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.691+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49304 meth=GET uri=/health
DBG 2026-03-29 11:46:42.691+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49304 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.691+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49304 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.794+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49316 meth=GET uri=/health
DBG 2026-03-29 11:46:42.794+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49316 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.794+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49316 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.896+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49324 meth=GET uri=/health
DBG 2026-03-29 11:46:42.897+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49324 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:42.897+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49324 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:42.999+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49328 meth=GET uri=/health
DBG 2026-03-29 11:46:42.999+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49328 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.000+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49328 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:43.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:43.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:43.103+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49344 meth=GET uri=/health
DBG 2026-03-29 11:46:43.103+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49344 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.103+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49344 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.206+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49360 meth=GET uri=/health
DBG 2026-03-29 11:46:43.206+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49360 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.206+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49360 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.309+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49374 meth=GET uri=/health
DBG 2026-03-29 11:46:43.309+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49374 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.309+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49374 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.412+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49384 meth=GET uri=/health
DBG 2026-03-29 11:46:43.412+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49384 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.412+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49384 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.515+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49394 meth=GET uri=/health
DBG 2026-03-29 11:46:43.515+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49394 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.515+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49394 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.618+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49408 meth=GET uri=/health
DBG 2026-03-29 11:46:43.618+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49408 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.618+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49408 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.721+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49416 meth=GET uri=/health
DBG 2026-03-29 11:46:43.721+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49416 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.721+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49416 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.824+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49422 meth=GET uri=/health
DBG 2026-03-29 11:46:43.824+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49422 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.824+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49422 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:43.926+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49436 meth=GET uri=/health
DBG 2026-03-29 11:46:43.926+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49436 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:43.927+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49436 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.029+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49446 meth=GET uri=/health
DBG 2026-03-29 11:46:44.029+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49446 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.030+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49446 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:44.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:44.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:44.133+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49454 meth=GET uri=/health
DBG 2026-03-29 11:46:44.133+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49454 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.133+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49454 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.236+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49468 meth=GET uri=/health
DBG 2026-03-29 11:46:44.236+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49468 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.236+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49468 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.339+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49472 meth=GET uri=/health
DBG 2026-03-29 11:46:44.339+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49472 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.339+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49472 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.442+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49488 meth=GET uri=/health
DBG 2026-03-29 11:46:44.442+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49488 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.442+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49488 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.545+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49492 meth=GET uri=/health
DBG 2026-03-29 11:46:44.545+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49492 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.545+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49492 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.648+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49502 meth=GET uri=/health
DBG 2026-03-29 11:46:44.648+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49502 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.648+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49502 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.751+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49508 meth=GET uri=/health
DBG 2026-03-29 11:46:44.751+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49508 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.751+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49508 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.854+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49510 meth=GET uri=/health
DBG 2026-03-29 11:46:44.854+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49510 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.854+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49510 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:44.957+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49526 meth=GET uri=/health
DBG 2026-03-29 11:46:44.957+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49526 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:44.957+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49526 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:45.045+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:45.045+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.045+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.045+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.045+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.045+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:45.061+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49540 meth=GET uri=/health
DBG 2026-03-29 11:46:45.061+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49540 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.061+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49540 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.164+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49552 meth=GET uri=/health
DBG 2026-03-29 11:46:45.164+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49552 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.164+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49552 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.267+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49554 meth=GET uri=/health
DBG 2026-03-29 11:46:45.267+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49554 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.267+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49554 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.370+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49570 meth=GET uri=/health
DBG 2026-03-29 11:46:45.370+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49570 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.371+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49570 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.473+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49580 meth=GET uri=/health
DBG 2026-03-29 11:46:45.473+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49580 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.473+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49580 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.576+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49586 meth=GET uri=/health
DBG 2026-03-29 11:46:45.576+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49586 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.577+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49586 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.679+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49600 meth=GET uri=/health
DBG 2026-03-29 11:46:45.679+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49600 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.680+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49600 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.783+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49610 meth=GET uri=/health
DBG 2026-03-29 11:46:45.783+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49610 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.783+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49610 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.886+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49626 meth=GET uri=/health
DBG 2026-03-29 11:46:45.886+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49626 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.886+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49626 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:45.988+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49634 meth=GET uri=/health
DBG 2026-03-29 11:46:45.989+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49634 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:45.989+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49634 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:46.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:46.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.045+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.045+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:46.092+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49636 meth=GET uri=/health
DBG 2026-03-29 11:46:46.092+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49636 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.092+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49636 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.195+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49640 meth=GET uri=/health
DBG 2026-03-29 11:46:46.195+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49640 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.195+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49640 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.298+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49650 meth=GET uri=/health
DBG 2026-03-29 11:46:46.298+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49650 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.298+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49650 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.401+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49666 meth=GET uri=/health
DBG 2026-03-29 11:46:46.401+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49666 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.401+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49666 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.504+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49678 meth=GET uri=/health
DBG 2026-03-29 11:46:46.504+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49678 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.504+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49678 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.607+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49694 meth=GET uri=/health
DBG 2026-03-29 11:46:46.607+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49694 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.608+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49694 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.711+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49698 meth=GET uri=/health
DBG 2026-03-29 11:46:46.711+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49698 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.712+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49698 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.815+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49714 meth=GET uri=/health
DBG 2026-03-29 11:46:46.815+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49714 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.815+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49714 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:46.918+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49722 meth=GET uri=/health
DBG 2026-03-29 11:46:46.918+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49722 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:46.918+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49722 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.020+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49730 meth=GET uri=/health
DBG 2026-03-29 11:46:47.020+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49730 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.021+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49730 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:47.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:47.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.045+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:47.045+00:00 waku rendezvous advertisements started topics="waku rendezvous" tid=1 file=protocol.nim:112
TRC 2026-03-29 11:46:47.045+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:47.045+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
INF 2026-03-29 11:46:47.045+00:00 waku rendezvous advertisements failed topics="waku rendezvous" tid=1 file=protocol.nim:135 error="could not get a peer supporting RendezVousCodec"
TRC 2026-03-29 11:46:47.045+00:00 waku rendezvous client requests started topics="waku rendezvous client" tid=1 file=client.nim:43
TRC 2026-03-29 11:46:47.045+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:47.045+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
ERR 2026-03-29 11:46:47.045+00:00 waku rendezvous requests failed topics="waku rendezvous client" tid=1 file=client.nim:87 error="could not get a peer supporting WakuRendezVousCodec"
INF 2026-03-29 11:46:47.045+00:00 periodic sync started topics="waku reconciliation" tid=1 file=reconciliation.nim:438
TRC 2026-03-29 11:46:47.045+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/reconciliation/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:47.045+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/reconciliation/1.0.0
ERR 2026-03-29 11:46:47.045+00:00 periodic sync failed topics="waku reconciliation" tid=1 file=reconciliation.nim:441 err="no suitable peer found for sync"
TRC 2026-03-29 11:46:47.050+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:47.050+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:47.050+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
TRC 2026-03-29 11:46:47.050+00:00 Mesh peers for keepalive tid=1 file=node_health_monitor.nim:558 meshPeers=[]
TRC 2026-03-29 11:46:47.050+00:00 Selected peers for keepalive tid=1 file=node_health_monitor.nim:569 selected=[]
TRC 2026-03-29 11:46:47.050+00:00 Pinging random peers tid=1 file=node_health_monitor.nim:629 count=0 countdownToPingAll=11
TRC 2026-03-29 11:46:47.050+00:00 Keepalive results tid=1 file=node_health_monitor.nim:644 attemptedPings=0 successfulPings=0
TRC 2026-03-29 11:46:47.050+00:00 Running keepalive loop tid=1 file=node_health_monitor.nim:593
TRC 2026-03-29 11:46:47.075+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
TRC 2026-03-29 11:46:47.077+00:00 Got IPs from DNS server topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:155 resolvedAddresses={"1.0.0.1", "1.1.1.1", "2606:4700:4700:0000:0000:0000:0000:1001", "2606:4700:4700:0000:0000:0000:0000:1111"} server=1.1.1.1:53
DBG 2026-03-29 11:46:47.124+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49742 meth=GET uri=/health
DBG 2026-03-29 11:46:47.124+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49742 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.124+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49742 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.228+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49756 meth=GET uri=/health
DBG 2026-03-29 11:46:47.228+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49756 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.228+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49756 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.331+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49764 meth=GET uri=/health
DBG 2026-03-29 11:46:47.331+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49764 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.331+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49764 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.433+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49766 meth=GET uri=/health
DBG 2026-03-29 11:46:47.434+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49766 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.434+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49766 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.537+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49772 meth=GET uri=/health
DBG 2026-03-29 11:46:47.537+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49772 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.537+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49772 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.640+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49784 meth=GET uri=/health
DBG 2026-03-29 11:46:47.640+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49784 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.640+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49784 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.742+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49794 meth=GET uri=/health
DBG 2026-03-29 11:46:47.742+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49794 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.743+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49794 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.845+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49798 meth=GET uri=/health
DBG 2026-03-29 11:46:47.845+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49798 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.846+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49798 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:47.948+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49804 meth=GET uri=/health
DBG 2026-03-29 11:46:47.948+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49804 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:47.948+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49804 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:48.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:48.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:48.051+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49812 meth=GET uri=/health
DBG 2026-03-29 11:46:48.051+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49812 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.051+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49812 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.154+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49820 meth=GET uri=/health
DBG 2026-03-29 11:46:48.154+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49820 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.155+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49820 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.258+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49824 meth=GET uri=/health
DBG 2026-03-29 11:46:48.258+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49824 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.258+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49824 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.361+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49826 meth=GET uri=/health
DBG 2026-03-29 11:46:48.361+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49826 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.361+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49826 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.464+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49838 meth=GET uri=/health
DBG 2026-03-29 11:46:48.464+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49838 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.464+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49838 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.567+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49844 meth=GET uri=/health
DBG 2026-03-29 11:46:48.567+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49844 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.567+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49844 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.670+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49854 meth=GET uri=/health
DBG 2026-03-29 11:46:48.670+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49854 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.670+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49854 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.773+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49864 meth=GET uri=/health
DBG 2026-03-29 11:46:48.773+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49864 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.773+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49864 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.876+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49880 meth=GET uri=/health
DBG 2026-03-29 11:46:48.876+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49880 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.876+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49880 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:48.978+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49886 meth=GET uri=/health
DBG 2026-03-29 11:46:48.978+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49886 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:48.979+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49886 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:49.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:49.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:49.044+00:00 running scoring heartbeat topics="libp2p gossipsub" tid=1 file=scoring.nim:312 instance=140065099141200
TRC 2026-03-29 11:46:49.044+00:00 updating scores topics="libp2p gossipsub" tid=1 file=scoring.nim:144 peers=0
TRC 2026-03-29 11:46:49.044+00:00 updated scores topics="libp2p gossipsub" tid=1 file=scoring.nim:308 peers=0
DBG 2026-03-29 11:46:49.081+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49898 meth=GET uri=/health
DBG 2026-03-29 11:46:49.081+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49898 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.082+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49898 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.186+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49912 meth=GET uri=/health
DBG 2026-03-29 11:46:49.186+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49912 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.186+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49912 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.289+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49916 meth=GET uri=/health
DBG 2026-03-29 11:46:49.289+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49916 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.289+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49916 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.392+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49930 meth=GET uri=/health
DBG 2026-03-29 11:46:49.392+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49930 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.392+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49930 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.495+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49942 meth=GET uri=/health
DBG 2026-03-29 11:46:49.495+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49942 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.495+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49942 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.598+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49944 meth=GET uri=/health
DBG 2026-03-29 11:46:49.598+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49944 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.598+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49944 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.702+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49954 meth=GET uri=/health
DBG 2026-03-29 11:46:49.702+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49954 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.702+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49954 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.805+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49970 meth=GET uri=/health
DBG 2026-03-29 11:46:49.805+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49970 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.805+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49970 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:49.908+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49978 meth=GET uri=/health
DBG 2026-03-29 11:46:49.908+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49978 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:49.908+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49978 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.011+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49986 meth=GET uri=/health
DBG 2026-03-29 11:46:50.011+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49986 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.011+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49986 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:50.045+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:50.045+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.045+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.045+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.045+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.045+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:50.114+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:49998 meth=GET uri=/health
DBG 2026-03-29 11:46:50.114+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:49998 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.114+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:49998 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.217+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50010 meth=GET uri=/health
DBG 2026-03-29 11:46:50.217+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50010 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.217+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50010 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.320+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50022 meth=GET uri=/health
DBG 2026-03-29 11:46:50.320+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50022 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.320+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50022 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.423+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50032 meth=GET uri=/health
DBG 2026-03-29 11:46:50.423+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50032 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.423+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50032 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.526+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50044 meth=GET uri=/health
DBG 2026-03-29 11:46:50.526+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50044 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.526+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50044 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.629+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50046 meth=GET uri=/health
DBG 2026-03-29 11:46:50.629+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50046 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.629+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50046 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.732+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50056 meth=GET uri=/health
DBG 2026-03-29 11:46:50.732+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50056 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.732+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50056 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.834+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50062 meth=GET uri=/health
DBG 2026-03-29 11:46:50.834+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50062 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.835+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50062 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:50.937+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50078 meth=GET uri=/health
DBG 2026-03-29 11:46:50.937+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50078 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:50.937+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50078 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.040+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50082 meth=GET uri=/health
DBG 2026-03-29 11:46:51.040+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50082 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.040+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50082 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:51.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:51.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:51.143+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50098 meth=GET uri=/health
DBG 2026-03-29 11:46:51.143+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50098 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.144+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50098 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.246+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50102 meth=GET uri=/health
DBG 2026-03-29 11:46:51.246+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50102 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.246+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50102 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.349+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50108 meth=GET uri=/health
DBG 2026-03-29 11:46:51.350+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50108 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.350+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50108 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.453+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50110 meth=GET uri=/health
DBG 2026-03-29 11:46:51.453+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50110 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.453+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50110 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.556+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50120 meth=GET uri=/health
DBG 2026-03-29 11:46:51.556+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50120 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.556+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50120 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.660+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50130 meth=GET uri=/health
DBG 2026-03-29 11:46:51.660+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50130 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.660+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50130 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.763+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50140 meth=GET uri=/health
DBG 2026-03-29 11:46:51.763+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50140 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.763+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50140 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.866+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50144 meth=GET uri=/health
DBG 2026-03-29 11:46:51.866+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50144 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.867+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50144 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:51.970+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50150 meth=GET uri=/health
DBG 2026-03-29 11:46:51.970+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50150 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:51.971+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50150 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:52.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:52.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
INF 2026-03-29 11:46:52.045+00:00 periodic prune started topics="waku reconciliation" tid=1 file=reconciliation.nim:455
INF 2026-03-29 11:46:52.045+00:00 periodic prune done topics="waku reconciliation" tid=1 file=reconciliation.nim:463 elements_pruned=0
TRC 2026-03-29 11:46:52.051+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:52.051+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:52.051+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
DBG 2026-03-29 11:46:52.075+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50166 meth=GET uri=/health
DBG 2026-03-29 11:46:52.075+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50166 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.076+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50166 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:52.078+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
TRC 2026-03-29 11:46:52.081+00:00 Got IPs from DNS server topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:155 resolvedAddresses={"1.0.0.1", "1.1.1.1", "2606:4700:4700:0000:0000:0000:0000:1111", "2606:4700:4700:0000:0000:0000:0000:1001"} server=1.1.1.1:53
DBG 2026-03-29 11:46:52.179+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50178 meth=GET uri=/health
DBG 2026-03-29 11:46:52.179+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50178 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.179+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50178 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.282+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50184 meth=GET uri=/health
DBG 2026-03-29 11:46:52.282+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50184 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.283+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50184 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.385+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50188 meth=GET uri=/health
DBG 2026-03-29 11:46:52.385+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50188 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.386+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50188 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.489+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:50200 meth=GET uri=/health
DBG 2026-03-29 11:46:52.489+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:50200 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.489+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:50200 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.592+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32878 meth=GET uri=/health
DBG 2026-03-29 11:46:52.592+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32878 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.592+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32878 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.695+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32892 meth=GET uri=/health
DBG 2026-03-29 11:46:52.695+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32892 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.695+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32892 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.799+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32906 meth=GET uri=/health
DBG 2026-03-29 11:46:52.799+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32906 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.799+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32906 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:52.902+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32908 meth=GET uri=/health
DBG 2026-03-29 11:46:52.902+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32908 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:52.902+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32908 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.005+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32918 meth=GET uri=/health
DBG 2026-03-29 11:46:53.005+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32918 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.005+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32918 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:53.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:53.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:53.109+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32924 meth=GET uri=/health
DBG 2026-03-29 11:46:53.109+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32924 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.109+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32924 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.212+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32928 meth=GET uri=/health
DBG 2026-03-29 11:46:53.212+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32928 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.212+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32928 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.315+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32938 meth=GET uri=/health
DBG 2026-03-29 11:46:53.315+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32938 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.315+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32938 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.418+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32944 meth=GET uri=/health
DBG 2026-03-29 11:46:53.418+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32944 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.418+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32944 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.521+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32950 meth=GET uri=/health
DBG 2026-03-29 11:46:53.522+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32950 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.522+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32950 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.625+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32964 meth=GET uri=/health
DBG 2026-03-29 11:46:53.625+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32964 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.625+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32964 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.728+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32970 meth=GET uri=/health
DBG 2026-03-29 11:46:53.728+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32970 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.729+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32970 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.831+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32976 meth=GET uri=/health
DBG 2026-03-29 11:46:53.831+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32976 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.832+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32976 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:53.934+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32984 meth=GET uri=/health
DBG 2026-03-29 11:46:53.934+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32984 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:53.934+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32984 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.037+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32986 meth=GET uri=/health
DBG 2026-03-29 11:46:54.037+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32986 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.037+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32986 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:54.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:54.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:54.140+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32992 meth=GET uri=/health
DBG 2026-03-29 11:46:54.140+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32992 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.140+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32992 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.244+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:32996 meth=GET uri=/health
DBG 2026-03-29 11:46:54.244+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:32996 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.245+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:32996 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.347+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33006 meth=GET uri=/health
DBG 2026-03-29 11:46:54.347+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33006 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.348+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33006 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.450+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33020 meth=GET uri=/health
DBG 2026-03-29 11:46:54.450+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33020 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.450+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33020 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.553+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33036 meth=GET uri=/health
DBG 2026-03-29 11:46:54.553+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33036 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.553+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33036 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.656+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33052 meth=GET uri=/health
DBG 2026-03-29 11:46:54.656+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33052 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.656+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33052 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.760+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33058 meth=GET uri=/health
DBG 2026-03-29 11:46:54.760+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33058 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.760+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33058 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.862+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33062 meth=GET uri=/health
DBG 2026-03-29 11:46:54.863+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33062 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.863+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33062 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:54.965+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33076 meth=GET uri=/health
DBG 2026-03-29 11:46:54.965+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33076 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:54.966+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33076 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:55.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:55.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:55.068+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33086 meth=GET uri=/health
DBG 2026-03-29 11:46:55.069+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33086 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.069+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33086 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.171+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33102 meth=GET uri=/health
DBG 2026-03-29 11:46:55.172+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33102 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.172+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33102 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.275+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33118 meth=GET uri=/health
DBG 2026-03-29 11:46:55.275+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33118 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.275+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33118 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.378+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33126 meth=GET uri=/health
DBG 2026-03-29 11:46:55.378+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33126 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.378+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33126 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.480+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33142 meth=GET uri=/health
DBG 2026-03-29 11:46:55.480+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33142 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.481+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33142 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.583+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33158 meth=GET uri=/health
DBG 2026-03-29 11:46:55.583+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33158 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.583+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33158 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.685+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33174 meth=GET uri=/health
DBG 2026-03-29 11:46:55.685+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33174 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.685+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33174 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.788+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33180 meth=GET uri=/health
DBG 2026-03-29 11:46:55.788+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33180 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.788+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33180 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.893+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33184 meth=GET uri=/health
DBG 2026-03-29 11:46:55.893+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33184 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.893+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33184 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:55.995+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33196 meth=GET uri=/health
DBG 2026-03-29 11:46:55.995+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33196 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:55.995+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33196 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:56.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:56.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:56.099+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33198 meth=GET uri=/health
DBG 2026-03-29 11:46:56.099+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33198 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.099+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33198 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.201+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33212 meth=GET uri=/health
DBG 2026-03-29 11:46:56.201+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33212 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.202+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33212 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.304+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33216 meth=GET uri=/health
DBG 2026-03-29 11:46:56.305+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33216 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.305+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33216 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.408+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33232 meth=GET uri=/health
DBG 2026-03-29 11:46:56.408+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33232 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.408+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33232 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.510+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33246 meth=GET uri=/health
DBG 2026-03-29 11:46:56.511+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33246 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.511+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33246 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.615+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33260 meth=GET uri=/health
DBG 2026-03-29 11:46:56.615+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33260 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.615+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33260 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.718+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33266 meth=GET uri=/health
DBG 2026-03-29 11:46:56.718+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33266 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.718+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33266 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.821+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33276 meth=GET uri=/health
DBG 2026-03-29 11:46:56.821+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33276 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.821+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33276 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:56.925+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33284 meth=GET uri=/health
DBG 2026-03-29 11:46:56.925+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33284 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:56.925+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33284 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.027+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33288 meth=GET uri=/health
DBG 2026-03-29 11:46:57.027+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33288 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.028+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33288 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:57.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:57.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:57.044+00:00 waku rendezvous advertisements started topics="waku rendezvous" tid=1 file=protocol.nim:112
TRC 2026-03-29 11:46:57.044+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:57.044+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
INF 2026-03-29 11:46:57.044+00:00 waku rendezvous advertisements failed topics="waku rendezvous" tid=1 file=protocol.nim:135 error="could not get a peer supporting RendezVousCodec"
TRC 2026-03-29 11:46:57.045+00:00 waku rendezvous client requests started topics="waku rendezvous client" tid=1 file=client.nim:43
TRC 2026-03-29 11:46:57.045+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:57.045+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
ERR 2026-03-29 11:46:57.045+00:00 waku rendezvous requests failed topics="waku rendezvous client" tid=1 file=client.nim:87 error="could not get a peer supporting WakuRendezVousCodec"
INF 2026-03-29 11:46:57.045+00:00 periodic sync started topics="waku reconciliation" tid=1 file=reconciliation.nim:438
TRC 2026-03-29 11:46:57.045+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/reconciliation/1.0.0 peers=[] address=140065099019984
TRC 2026-03-29 11:46:57.045+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/reconciliation/1.0.0
ERR 2026-03-29 11:46:57.045+00:00 periodic sync failed topics="waku reconciliation" tid=1 file=reconciliation.nim:441 err="no suitable peer found for sync"
TRC 2026-03-29 11:46:57.051+00:00 Mesh peers for keepalive tid=1 file=node_health_monitor.nim:558 meshPeers=[]
TRC 2026-03-29 11:46:57.051+00:00 Selected peers for keepalive tid=1 file=node_health_monitor.nim:569 selected=[]
TRC 2026-03-29 11:46:57.051+00:00 Pinging random peers tid=1 file=node_health_monitor.nim:629 count=0 countdownToPingAll=10
TRC 2026-03-29 11:46:57.051+00:00 Keepalive results tid=1 file=node_health_monitor.nim:644 attemptedPings=0 successfulPings=0
TRC 2026-03-29 11:46:57.051+00:00 Running keepalive loop tid=1 file=node_health_monitor.nim:593
TRC 2026-03-29 11:46:57.051+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:57.051+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:57.051+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
TRC 2026-03-29 11:46:57.082+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
TRC 2026-03-29 11:46:57.085+00:00 Got IPs from DNS server topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:155 resolvedAddresses={"1.1.1.1", "1.0.0.1", "2606:4700:4700:0000:0000:0000:0000:1001", "2606:4700:4700:0000:0000:0000:0000:1111"} server=1.1.1.1:53
DBG 2026-03-29 11:46:57.130+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33292 meth=GET uri=/health
DBG 2026-03-29 11:46:57.130+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33292 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.131+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33292 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.233+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33300 meth=GET uri=/health
DBG 2026-03-29 11:46:57.234+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33300 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.234+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33300 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.337+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33312 meth=GET uri=/health
DBG 2026-03-29 11:46:57.337+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33312 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.337+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33312 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.440+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33328 meth=GET uri=/health
DBG 2026-03-29 11:46:57.440+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33328 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.440+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33328 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.543+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33336 meth=GET uri=/health
DBG 2026-03-29 11:46:57.543+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33336 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.543+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33336 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.646+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33340 meth=GET uri=/health
DBG 2026-03-29 11:46:57.646+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33340 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.646+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33340 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.750+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33354 meth=GET uri=/health
DBG 2026-03-29 11:46:57.750+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33354 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.750+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33354 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.853+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33362 meth=GET uri=/health
DBG 2026-03-29 11:46:57.853+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33362 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.853+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33362 uri=/health content_type=application/json content_size=821
DBG 2026-03-29 11:46:57.956+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33378 meth=GET uri=/health
DBG 2026-03-29 11:46:57.956+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33378 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:57.956+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33378 uri=/health content_type=application/json content_size=821
TRC 2026-03-29 11:46:58.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:58.044+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.044+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.044+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.044+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
DBG 2026-03-29 11:46:58.059+00:00 Received request tid=1 file=serverprivate.nim:141 peer=172.17.0.1:33388 meth=GET uri=/health
DBG 2026-03-29 11:46:58.059+00:00 Serving API request tid=1 file=serverprivate.nim:202 peer=172.17.0.1:33388 meth=GET uri=/health path_params=[] query_params=[] content_body=(None)
DBG 2026-03-29 11:46:58.059+00:00 Received response from handler tid=1 file=serverprivate.nim:297 status=200 meth=GET peer=172.17.0.1:33388 uri=/health content_type=application/json content_size=821
NTC 2026-03-29 11:46:58.175+00:00 Shutting down after receiving SIGTERM topics="wakunode main" tid=1 file=wakunode2.nim:82
INF 2026-03-29 11:46:58.176+00:00 Stopping discovery v5 service topics="waku discv5" tid=1 file=waku_discv5.nim:362
TRC 2026-03-29 11:46:58.176+00:00 Stop listening on discv5 port topics="waku discv5" tid=1 file=waku_discv5.nim:365
INF 2026-03-29 11:46:58.176+00:00 Successfully stopped discovery v5 service topics="waku discv5" tid=1 file=waku_discv5.nim:368
TRC 2026-03-29 11:46:58.176+00:00 Stopping switch topics="libp2p switch" tid=1 file=switch.nim:328
INF 2026-03-29 11:46:58.176+00:00 Stopping AutonatService topics="libp2p autonatservice" tid=1 file=service.nim:237
TRC 2026-03-29 11:46:58.176+00:00 Closing ConnManager topics="libp2p connmanager" tid=1 file=connmanager.nim:434
TRC 2026-03-29 11:46:58.176+00:00 Closed ConnManager topics="libp2p connmanager" tid=1 file=connmanager.nim:448
TRC 2026-03-29 11:46:58.176+00:00 Stopping TCP transport topics="libp2p tcptransport" tid=1 file=tcptransport.nim:159
TRC 2026-03-29 11:46:58.176+00:00 stopping transport topics="libp2p transport" tid=1 file=transport.nim:59 address=@[/ip4/0.0.0.0/tcp/56071]
TRC 2026-03-29 11:46:58.176+00:00 Transport stopped topics="libp2p tcptransport" tid=1 file=tcptransport.nim:189
TRC 2026-03-29 11:46:58.176+00:00 Stopping WS transport topics="libp2p wstransport" tid=1 file=wstransport.nim:213
TRC 2026-03-29 11:46:58.176+00:00 stopping transport topics="libp2p transport" tid=1 file=transport.nim:59 address=@[/ip4/0.0.0.0/tcp/56072/ws]
TRC 2026-03-29 11:46:58.176+00:00 Transport stopped topics="libp2p wstransport" tid=1 file=wstransport.nim:235
TRC 2026-03-29 11:46:58.176+00:00 gossipsub stop topics="libp2p gossipsub" tid=1 file=gossipsub.nim:1131
TRC 2026-03-29 11:46:58.176+00:00 Switch stopped topics="libp2p switch" tid=1 file=switch.nim:354
INF 2026-03-29 11:46:58.177+00:00 Store Sync Reconciliation protocol stopped topics="waku reconciliation" tid=1 file=reconciliation.nim:496
INF 2026-03-29 11:46:58.177+00:00 Store Sync Transfer protocol stopped topics="waku transfer" tid=1 file=transfer.nim:237
WRN 2026-03-29 11:46:58.177+00:00 Stopping rendezvous without starting it topics="waku rendezvous" tid=1 file=rendezvous.nim:638
WRN 2026-03-29 11:46:58.177+00:00 Stopping rendezvous without starting it topics="waku rendezvous" tid=1 file=rendezvous.nim:638
INF 2026-03-29 11:46:58.177+00:00 waku rendezvous discovery stopped topics="waku rendezvous" tid=1 file=protocol.nim:239
INF 2026-03-29 11:46:58.177+00:00 waku rendezvous client stopped topics="waku rendezvous client" tid=1 file=client.nim:142
INF 2026-03-29 11:46:58.177+00:00 Health monitor loop end tid=1 file=node_health_monitor.nim:543
NTC 2026-03-29 11:46:58.177+00:00 REST service stopped tid=1 file=server.nim:187 address=0.0.0.0:56070
WRN 2026-03-29 11:46:36.991+00:00 whether to mount storeSync is not specified, defaulting to not mounting topics="waku conf builder" tid=1 file=waku_conf_builder.nim:471
bSubscribeShards: some(@[0])
INF 2026-03-29 11:46:36.991+00:00 Sharding configuration: topics="waku conf builder" tid=1 file=waku_conf_builder.nim:506 shardingConf="(kind: AutoSharding, numShardsInCluster: 1)" subscribeShards=@[0]
INF 2026-03-29 11:46:36.992+00:00 Configuration: Enabled protocols topics="waku conf" tid=1 file=waku_conf.nim:157 relay=true rlnRelay=false store=true filter=false lightPush=false peerExchange=true rendezvous=true
INF 2026-03-29 11:46:36.992+00:00 Configuration. Network topics="waku conf" tid=1 file=waku_conf.nim:166 cluster=3
INF 2026-03-29 11:46:36.992+00:00 Configuration. Active Relay Shards topics="waku conf" tid=1 file=waku_conf.nim:169 shard=0
INF 2026-03-29 11:46:36.992+00:00 Setting up storage tid=1 file=node_factory.nim:532
INF 2026-03-29 11:46:36.992+00:00 Initializing node tid=1 file=node_factory.nim:541
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/ipfs/id/1.0.0]"
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/libp2p/autonat/1.0.0]"
TRC 2026-03-29 11:46:36.993+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/libp2p/circuit/relay/0.2.0/hop, /libp2p/circuit/relay/0.1.0]"
TRC 2026-03-29 11:46:36.993+00:00 no peer storage found tid=1 file=peer_manager.nim:1219
INF 2026-03-29 11:46:36.993+00:00 Initializing networking tid=1 file=waku_node.nim:228 addrs="@[/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws]"
INF 2026-03-29 11:46:36.994+00:00 Mounting protocols tid=1 file=node_factory.nim:547
INF 2026-03-29 11:46:36.994+00:00 Created WakuMetadata protocol topics="waku node" tid=1 file=protocol.nim:107 clusterId=3 shards="[0]"
TRC 2026-03-29 11:46:36.994+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/metadata/1.0.0]"
INF 2026-03-29 11:46:36.996+00:00 sqlite database page stats tid=1 file=builder.nim:53 pageSize=4096 pages=1 freePages=0
INF 2026-03-29 11:46:36.997+00:00 starting message store's sqlite database migration topics="waku archive migration" tid=1 file=migrations.nim:57
INF 2026-03-29 11:46:36.997+00:00 Not considered schema version 7 topics="waku archive migration" tid=1 file=migrations.nim:45
INF 2026-03-29 11:46:36.997+00:00 database schema is outdated topics="sqlite" tid=1 file=db_sqlite.nim:447 userVersion=0 targetVersion=10
INF 2026-03-29 11:46:36.998+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.000+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.000+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.001+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n timestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.001+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message_backup SELECT id, timestamp, contentTopic, pubsubTopic, payload, version FROM Message;"
INF 2026-03-29 11:46:37.001+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message_backup SELECT id, timestamp, contentTopic, pubsubTopic, payload, version FROM Message;"
INF 2026-03-29 11:46:37.001+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.002+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.002+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.003+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.003+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, timestamp, contentTopic, pubsubTopic, payload, version, 0\n FROM Message_backup;"
INF 2026-03-29 11:46:37.003+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, timestamp, contentTopic, pubsubTopic, payload, version, 0\n FROM Message_backup;"
INF 2026-03-29 11:46:37.003+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.005+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.005+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.012+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message_backup (\n id BLOB PRIMARY KEY,\n receiverTimestamp REAL NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp REAL NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.012+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message_backup SELECT id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp FROM Message;"
INF 2026-03-29 11:46:37.012+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message_backup SELECT id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp FROM Message;"
INF 2026-03-29 11:46:37.012+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.013+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message;"
INF 2026-03-29 11:46:37.013+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.014+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB PRIMARY KEY,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.014+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, CAST(receiverTimestamp*1000000000 AS INTEGER), contentTopic, pubsubTopic, payload, version, CAST(senderTimestamp*1000000000 AS INTEGER)\n FROM Message_backup;"
INF 2026-03-29 11:46:37.014+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message (id, receiverTimestamp, contentTopic, pubsubTopic, payload, version, senderTimestamp)\n SELECT id, CAST(receiverTimestamp*1000000000 AS INTEGER), contentTopic, pubsubTopic, payload, version, CAST(senderTimestamp*1000000000 AS INTEGER)\n FROM Message_backup;"
INF 2026-03-29 11:46:37.014+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.015+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.015+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE Message RENAME TO Message_backup;"
INF 2026-03-29 11:46:37.017+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE Message RENAME TO Message_backup;"
INF 2026-03-29 11:46:37.017+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (senderTimestamp, id, pubsubTopic)\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.018+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS Message(\n id BLOB,\n receiverTimestamp INTEGER NOT NULL,\n contentTopic BLOB NOT NULL,\n pubsubTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n senderTimestamp INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (senderTimestamp, id, pubsubTopic)\n ) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.018+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO Message\n SELECT *\n FROM Message_backup;"
INF 2026-03-29 11:46:37.018+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO Message\n SELECT *\n FROM Message_backup;"
INF 2026-03-29 11:46:37.018+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.019+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE Message_backup;"
INF 2026-03-29 11:46:37.019+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_msg ON Message (contentTopic, pubsubTopic, senderTimestamp, id);"
INF 2026-03-29 11:46:37.020+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_msg ON Message (contentTopic, pubsubTopic, senderTimestamp, id);"
INF 2026-03-29 11:46:37.020+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME COLUMN receiverTimestamp TO storedAt;"
INF 2026-03-29 11:46:37.022+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME COLUMN receiverTimestamp TO storedAt;"
INF 2026-03-29 11:46:37.022+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP INDEX IF EXISTS i_msg;"
INF 2026-03-29 11:46:37.022+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP INDEX IF EXISTS i_msg;"
INF 2026-03-29 11:46:37.022+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_query ON message (contentTopic, pubsubTopic, storedAt, id);"
INF 2026-03-29 11:46:37.024+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_query ON message (contentTopic, pubsubTopic, storedAt, id);"
INF 2026-03-29 11:46:37.024+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP INDEX IF EXISTS i_rt;"
INF 2026-03-29 11:46:37.024+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP INDEX IF EXISTS i_rt;"
INF 2026-03-29 11:46:37.024+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE INDEX IF NOT EXISTS i_ts ON message (storedAt);"
INF 2026-03-29 11:46:37.025+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE INDEX IF NOT EXISTS i_ts ON message (storedAt);"
INF 2026-03-29 11:46:37.025+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.027+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.027+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS message(\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (storedAt, id, pubsubTopic)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.029+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS message(\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (storedAt, id, pubsubTopic)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.029+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT OR IGNORE INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, storedAt)\n SELECT pubsubTopic, contentTopic, payload, version, senderTimestamp, id, storedAt\n FROM message_backup;"
INF 2026-03-29 11:46:37.029+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT OR IGNORE INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, storedAt)\n SELECT pubsubTopic, contentTopic, payload, version, senderTimestamp, id, storedAt\n FROM message_backup;"
INF 2026-03-29 11:46:37.029+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.030+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.030+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.032+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME TO message_backup;"
INF 2026-03-29 11:46:37.032+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="CREATE TABLE IF NOT EXISTS message (\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n messageHash BLOB, -- Newly added, this will be populated with a counter value\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (messageHash)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.033+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="CREATE TABLE IF NOT EXISTS message (\n pubsubTopic BLOB NOT NULL,\n contentTopic BLOB NOT NULL,\n payload BLOB,\n version INTEGER NOT NULL,\n timestamp INTEGER NOT NULL,\n id BLOB,\n messageHash BLOB, -- Newly added, this will be populated with a counter value\n storedAt INTEGER NOT NULL,\n CONSTRAINT messageIndex PRIMARY KEY (messageHash)\n) WITHOUT ROWID;"
INF 2026-03-29 11:46:37.033+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="INSERT INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, messageHash, storedAt)\nSELECT\n mb.pubsubTopic,\n mb.contentTopic,\n mb.payload,\n mb.version,\n mb.timestamp,\n mb.id,\n randomblob(32), -- to populate 32-byte random blob\n mb.storedAt\nFROM message_backup AS mb;"
INF 2026-03-29 11:46:37.033+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="INSERT INTO message(pubsubTopic, contentTopic, payload, version, timestamp, id, messageHash, storedAt)\nSELECT\n mb.pubsubTopic,\n mb.contentTopic,\n mb.payload,\n mb.version,\n mb.timestamp,\n mb.id,\n randomblob(32), -- to populate 32-byte random blob\n mb.storedAt\nFROM message_backup AS mb;"
INF 2026-03-29 11:46:37.033+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.034+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="DROP TABLE message_backup;"
INF 2026-03-29 11:46:37.034+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message ADD COLUMN meta BLOB;"
INF 2026-03-29 11:46:37.035+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message ADD COLUMN meta BLOB;"
INF 2026-03-29 11:46:37.035+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message DROP COLUMN timestamp;"
INF 2026-03-29 11:46:37.037+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message DROP COLUMN timestamp;"
INF 2026-03-29 11:46:37.037+00:00 executing migration statement topics="sqlite" tid=1 file=db_sqlite.nim:469 statement="ALTER TABLE message RENAME COLUMN storedAt TO timestamp;"
INF 2026-03-29 11:46:37.038+00:00 migration statement executed succesfully topics="sqlite" tid=1 file=db_sqlite.nim:476 statement="ALTER TABLE message RENAME COLUMN storedAt TO timestamp;"
INF 2026-03-29 11:46:37.038+00:00 database user_version updated topics="sqlite" tid=1 file=db_sqlite.nim:481 userVersion=10
INF 2026-03-29 11:46:37.038+00:00 finished message store's sqlite database migration topics="waku archive migration" tid=1 file=migrations.nim:70
INF 2026-03-29 11:46:37.038+00:00 setting up sqlite waku archive driver tid=1 file=builder.nim:65
INF 2026-03-29 11:46:37.041+00:00 executing message retention policy topics="waku archive" tid=1 file=archive.nim:270 policy=time:172800
INF 2026-03-29 11:46:37.041+00:00 beginning of executing message retention policy - time topics="waku archive retention_policy" tid=1 file=retention_policy_time.nim:22
INF 2026-03-29 11:46:37.042+00:00 end of executing message retention policy - time topics="waku archive retention_policy" tid=1 file=retention_policy_time.nim:30
INF 2026-03-29 11:46:37.042+00:00 mounting waku store protocol topics="waku node store api" tid=1 file=store.nim:255
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/store-query/3.0.0]"
INF 2026-03-29 11:46:37.042+00:00 initial storage filling started topics="waku reconciliation" tid=1 file=reconciliation.nim:357
INF 2026-03-29 11:46:37.042+00:00 initial storage filling done topics="waku reconciliation" tid=1 file=reconciliation.nim:379 elements=0
INF 2026-03-29 11:46:37.042+00:00 Store Reconciliation protocol initialized topics="waku node" tid=1 file=reconciliation.nim:427 sync_range=2m sync_interval=10s relay_jitter=1m30s
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/reconciliation/1.0.0]"
INF 2026-03-29 11:46:37.042+00:00 Store Transfer protocol initialized topics="waku node" tid=1 file=transfer.nim:216
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/transfer/1.0.0]"
INF 2026-03-29 11:46:37.042+00:00 mounting store client topics="waku node store api" tid=1 file=store.nim:274
INF 2026-03-29 11:46:37.042+00:00 mounting legacy store client topics="waku node store api" tid=1 file=store.nim:145
INF 2026-03-29 11:46:37.042+00:00 mounting auto sharding topics="waku node" tid=1 file=waku_node.nim:305 clusterId=3 shardCount=1
INF 2026-03-29 11:46:37.042+00:00 Shards created from content topics tid=1 file=node_factory.nim:333 contentTopics=[] shards=[]
INF 2026-03-29 11:46:37.042+00:00 Setting max message size tid=1 file=node_factory.nim:342 num_bytes=153600
INF 2026-03-29 11:46:37.042+00:00 mounting relay protocol topics="waku node relay api" tid=1 file=relay.nim:259
TRC 2026-03-29 11:46:37.042+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/relay/2.0.0, /meshsub/1.3.0, /meshsub/1.2.0, /meshsub/1.1.0, /meshsub/1.0.0, /meshsub/1.3.0, /meshsub/1.2.0, /meshsub/1.1.0, /meshsub/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 relay mounted successfully topics="waku node relay api" tid=1 file=relay.nim:276
INF 2026-03-29 11:46:37.043+00:00 adding validator to signed shards tid=1 file=validator_signed.nim:56 protectedShards=[] clusterId=3
INF 2026-03-29 11:46:37.043+00:00 mounting rendezvous discovery protocol topics="waku node" tid=1 file=waku_node.nim:432
INF 2026-03-29 11:46:37.043+00:00 waku rendezvous initialized topics="waku node" tid=1 file=protocol.nim:206 clusterId=3 shards="[0]" capabilities="[Relay, Store, Sync]" wakuPeerRecord="(peerId: 16U*xtkXbm, seqNo: 1774784797, addresses: [/ip4/172.18.107.126/tcp/56071, /ip4/172.18.107.126/tcp/56072/ws], mixKey: )"
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/rendezvous/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 mounting rendezvous client topics="waku node" tid=1 file=waku_node.nim:418
INF 2026-03-29 11:46:37.043+00:00 waku rendezvous client initialized topics="waku node" tid=1 file=client.nim:130 clusterId=3
INF 2026-03-29 11:46:37.043+00:00 mounting libp2p ping protocol topics="waku node ping api" tid=1 file=ping.nim:20
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/ipfs/ping/1.0.0]"
INF 2026-03-29 11:46:37.043+00:00 mounting light push client topics="waku node lightpush api" tid=1 file=lightpush.nim:183
INF 2026-03-29 11:46:37.043+00:00 mounting legacy light push client topics="waku node lightpush api" tid=1 file=lightpush.nim:72
INF 2026-03-29 11:46:37.043+00:00 mounting filter client topics="waku node filter api" tid=1 file=filter.nim:81
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/filter-push/2.0.0-beta1]"
INF 2026-03-29 11:46:37.043+00:00 mounting waku peer exchange topics="waku node peerexchange api" tid=1 file=peer_exchange.nim:37
TRC 2026-03-29 11:46:37.043+00:00 registering protocols topics="libp2p multistream" tid=1 file=multistream.nim:221 protos="[/vac/waku/peer-exchange/2.0.0-alpha1]"
INF 2026-03-29 11:46:37.043+00:00 mounting waku peer exchange client topics="waku node peerexchange api" tid=1 file=peer_exchange.nim:54
NTC 2026-03-29 11:46:37.043+00:00 REST service started tid=1 file=server.nim:182 address=0.0.0.0:56070
INF 2026-03-29 11:46:37.043+00:00 Starting REST HTTP server tid=1 file=builder.nim:113 url=http://0.0.0.0:56070/
INF 2026-03-29 11:46:37.043+00:00 No external callbacks to be set topics="wakunode waku" tid=1 file=waku.nim:127
TRC 2026-03-29 11:46:37.044+00:00 Send processor chain topics="send service" tid=1 file=send_service.nim:94 index=1 processor=BaseSendProcessor
INF 2026-03-29 11:46:37.044+00:00 Retrieve dynamic bootstrap nodes topics="wakunode waku" tid=1 file=waku.nim:367
INF 2026-03-29 11:46:37.044+00:00 Running nwaku node tid=1 file=node_factory.nim:464 version=v0.38.0-rc.0-14-g5c335c
INF 2026-03-29 11:46:37.044+00:00 Starting Waku node topics="waku node" tid=1 file=waku_node.nim:625 version=v0.38.0-rc.0-14-g5c335c
INF 2026-03-29 11:46:37.044+00:00 starting relay protocol topics="waku node" tid=1 file=waku_node.nim:389
INF 2026-03-29 11:46:37.044+00:00 start topics="waku relay" tid=1 file=protocol.nim:519
TRC 2026-03-29 11:46:37.044+00:00 gossipsub start topics="libp2p gossipsub" tid=1 file=gossipsub.nim:1113
TRC 2026-03-29 11:46:37.044+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=140065099141200
TRC 2026-03-29 11:46:37.044+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:37.044+00:00 running scoring heartbeat topics="libp2p gossipsub" tid=1 file=scoring.nim:312 instance=140065099141200
TRC 2026-03-29 11:46:37.044+00:00 updating scores topics="libp2p gossipsub" tid=1 file=scoring.nim:144 peers=0
TRC 2026-03-29 11:46:37.044+00:00 updated scores topics="libp2p gossipsub" tid=1 file=scoring.nim:308 peers=0
INF 2026-03-29 11:46:37.044+00:00 relay started successfully topics="waku node" tid=1 file=waku_node.nim:410
INF 2026-03-29 11:46:37.044+00:00 waku rendezvous periodic registration started topics="waku rendezvous" tid=1 file=protocol.nim:127 interval=10s
INF 2026-03-29 11:46:37.044+00:00 waku rendezvous discovery started topics="waku rendezvous" tid=1 file=protocol.nim:227
INF 2026-03-29 11:46:37.045+00:00 waku rendezvous periodic requests started topics="waku rendezvous client" tid=1 file=client.nim:80 interval=10s
INF 2026-03-29 11:46:37.045+00:00 waku rendezvous client started topics="waku rendezvous client" tid=1 file=client.nim:136
INF 2026-03-29 11:46:37.045+00:00 periodic sync initialized topics="waku reconciliation" tid=1 file=reconciliation.nim:433 interval=10s
INF 2026-03-29 11:46:37.045+00:00 periodic prune initialized topics="waku reconciliation" tid=1 file=reconciliation.nim:447 interval=10s
INF 2026-03-29 11:46:37.045+00:00 Store Sync Reconciliation protocol started topics="waku reconciliation" tid=1 file=reconciliation.nim:485
INF 2026-03-29 11:46:37.045+00:00 Store Sync Transfer protocol started topics="waku transfer" tid=1 file=transfer.nim:229
DBG 2026-03-29 11:46:37.045+00:00 starting switch for peer topics="libp2p switch" tid=1 file=switch.nim:363 peerInfo="(peerId: 16Uiu2HAm9ytWmDGUZLweAS15bQveXLXg8cgBftkmqrUL2LxtkXbm, listenAddrs: [/ip4/0.0.0.0/tcp/56072/ws, /ip4/0.0.0.0/tcp/56071], addrs: [], protocols: [/ipfs/id/1.0.0, /libp2p/autonat/1.0.0, /libp2p/circuit/relay/0.2.0/hop, /vac/waku/metadata/1.0.0, /vac/waku/store-query/3.0.0, /vac/waku/reconciliation/1.0.0, /vac/waku/transfer/1.0.0, /vac/waku/relay/2.0.0, /vac/waku/rendezvous/1.0.0, /ipfs/ping/1.0.0, /vac/waku/filter-push/2.0.0-beta1, /vac/waku/peer-exchange/2.0.0-alpha1], protoVersion: ipfs/0.1.0, agentVersion: logos-delivery-v0.38.0-rc.0-14-g5c335c)"
TRC 2026-03-29 11:46:37.045+00:00 Starting TCP transport topics="libp2p tcptransport" tid=1 file=tcptransport.nim:116
cs="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:58.514+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:37.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:37.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:37.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:37.931+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:38.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:38.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:38.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
INF 2026-03-29 11:46:38.907+00:00 periodic prune started topics="waku reconciliation" tid=1 file=reconciliation.nim:455
INF 2026-03-29 11:46:38.907+00:00 periodic prune done topics="waku reconciliation" tid=1 file=reconciliation.nim:463 elements_pruned=0
TRC 2026-03-29 11:46:38.914+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:38.914+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:38.914+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
TRC 2026-03-29 11:46:38.931+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
ERR 2026-03-29 11:46:38.932+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:38.934+00:00 Got IPs from DNS server topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:155 resolvedAddresses={"1.0.0.1", "1.1.1.1", "2606:4700:4700:0000:0000:0000:0000:1111", "2606:4700:4700:0000:0000:0000:0000:1001"} server=1.1.1.1:53
TRC 2026-03-29 11:46:39.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:39.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:39.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:40.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:40.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:40.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:41.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:41.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:41.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:41.904+00:00 running scoring heartbeat topics="libp2p gossipsub" tid=1 file=scoring.nim:312 instance=139916951371856
TRC 2026-03-29 11:46:41.904+00:00 updating scores topics="libp2p gossipsub" tid=1 file=scoring.nim:144 peers=0
TRC 2026-03-29 11:46:41.904+00:00 updated scores topics="libp2p gossipsub" tid=1 file=scoring.nim:308 peers=0
TRC 2026-03-29 11:46:42.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:42.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:42.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:43.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:43.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:43.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:43.906+00:00 waku rendezvous advertisements started topics="waku rendezvous" tid=1 file=protocol.nim:112
TRC 2026-03-29 11:46:43.906+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:43.906+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
INF 2026-03-29 11:46:43.906+00:00 waku rendezvous advertisements failed topics="waku rendezvous" tid=1 file=protocol.nim:135 error="could not get a peer supporting RendezVousCodec"
TRC 2026-03-29 11:46:43.906+00:00 waku rendezvous client requests started topics="waku rendezvous client" tid=1 file=client.nim:43
TRC 2026-03-29 11:46:43.906+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:43.906+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
ERR 2026-03-29 11:46:43.906+00:00 waku rendezvous requests failed topics="waku rendezvous client" tid=1 file=client.nim:87 error="could not get a peer supporting WakuRendezVousCodec"
INF 2026-03-29 11:46:43.907+00:00 periodic sync started topics="waku reconciliation" tid=1 file=reconciliation.nim:438
TRC 2026-03-29 11:46:43.907+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/reconciliation/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:43.907+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/reconciliation/1.0.0
ERR 2026-03-29 11:46:43.907+00:00 periodic sync failed topics="waku reconciliation" tid=1 file=reconciliation.nim:441 err="no suitable peer found for sync"
TRC 2026-03-29 11:46:43.910+00:00 Mesh peers for keepalive tid=1 file=node_health_monitor.nim:558 meshPeers=[]
TRC 2026-03-29 11:46:43.910+00:00 Selected peers for keepalive tid=1 file=node_health_monitor.nim:569 selected=[]
TRC 2026-03-29 11:46:43.910+00:00 Pinging random peers tid=1 file=node_health_monitor.nim:629 count=0 countdownToPingAll=7
TRC 2026-03-29 11:46:43.910+00:00 Keepalive results tid=1 file=node_health_monitor.nim:644 attemptedPings=0 successfulPings=0
TRC 2026-03-29 11:46:43.910+00:00 Running keepalive loop tid=1 file=node_health_monitor.nim:593
TRC 2026-03-29 11:46:43.914+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:43.914+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:43.914+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
TRC 2026-03-29 11:46:43.935+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
TRC 2026-03-29 11:46:44.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:44.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:44.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:45.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:45.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:45.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:46.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:46.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:46.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:47.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:47.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:47.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:48.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:48.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:48.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
INF 2026-03-29 11:46:48.907+00:00 periodic prune started topics="waku reconciliation" tid=1 file=reconciliation.nim:455
INF 2026-03-29 11:46:48.907+00:00 periodic prune done topics="waku reconciliation" tid=1 file=reconciliation.nim:463 elements_pruned=0
TRC 2026-03-29 11:46:48.915+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:48.915+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:48.915+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
INF 2026-03-29 11:46:48.936+00:00 Failed to query DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:124 address=one.one.one.one error="DNS server timeout: Timeout exceeded!"
TRC 2026-03-29 11:46:49.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:49.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:49.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:50.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:50.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:50.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:51.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:51.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:51.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:52.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:52.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:52.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:53.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:53.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:53.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
TRC 2026-03-29 11:46:53.904+00:00 running scoring heartbeat topics="libp2p gossipsub" tid=1 file=scoring.nim:312 instance=139916951371856
TRC 2026-03-29 11:46:53.904+00:00 updating scores topics="libp2p gossipsub" tid=1 file=scoring.nim:144 peers=0
TRC 2026-03-29 11:46:53.904+00:00 updated scores topics="libp2p gossipsub" tid=1 file=scoring.nim:308 peers=0
TRC 2026-03-29 11:46:53.906+00:00 Running AutonatService topics="libp2p autonatservice" tid=1 file=service.nim:231
TRC 2026-03-29 11:46:53.906+00:00 Asking peers for reachability topics="libp2p autonatservice" tid=1 file=service.nim:160
TRC 2026-03-29 11:46:53.907+00:00 waku rendezvous advertisements started topics="waku rendezvous" tid=1 file=protocol.nim:112
TRC 2026-03-29 11:46:53.907+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:53.907+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
INF 2026-03-29 11:46:53.907+00:00 waku rendezvous advertisements failed topics="waku rendezvous" tid=1 file=protocol.nim:135 error="could not get a peer supporting RendezVousCodec"
TRC 2026-03-29 11:46:53.907+00:00 waku rendezvous client requests started topics="waku rendezvous client" tid=1 file=client.nim:43
TRC 2026-03-29 11:46:53.907+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/rendezvous/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:53.907+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/rendezvous/1.0.0
ERR 2026-03-29 11:46:53.907+00:00 waku rendezvous requests failed topics="waku rendezvous client" tid=1 file=client.nim:87 error="could not get a peer supporting WakuRendezVousCodec"
INF 2026-03-29 11:46:53.908+00:00 periodic sync started topics="waku reconciliation" tid=1 file=reconciliation.nim:438
TRC 2026-03-29 11:46:53.908+00:00 Selecting peer from peerstore topics="waku node peer_manager" tid=1 file=peer_manager.nim:224 protocol=/vac/waku/reconciliation/1.0.0 peers=[] address=139916951250640
TRC 2026-03-29 11:46:53.908+00:00 No peer found for protocol topics="waku node peer_manager" tid=1 file=peer_manager.nim:265 protocol=/vac/waku/reconciliation/1.0.0
ERR 2026-03-29 11:46:53.908+00:00 periodic sync failed topics="waku reconciliation" tid=1 file=reconciliation.nim:441 err="no suitable peer found for sync"
TRC 2026-03-29 11:46:53.911+00:00 Mesh peers for keepalive tid=1 file=node_health_monitor.nim:558 meshPeers=[]
TRC 2026-03-29 11:46:53.911+00:00 Selected peers for keepalive tid=1 file=node_health_monitor.nim:569 selected=[]
TRC 2026-03-29 11:46:53.911+00:00 Pinging random peers tid=1 file=node_health_monitor.nim:629 count=0 countdownToPingAll=6
TRC 2026-03-29 11:46:53.911+00:00 Keepalive results tid=1 file=node_health_monitor.nim:644 attemptedPings=0 successfulPings=0
TRC 2026-03-29 11:46:53.911+00:00 Running keepalive loop tid=1 file=node_health_monitor.nim:593
TRC 2026-03-29 11:46:53.915+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:53.915+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:53.915+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
INF 2026-03-29 11:46:53.937+00:00 Failed to query DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:124 address=one.one.one.one error="DNS server timeout: Timeout exceeded!"
DBG 2026-03-29 11:46:53.937+00:00 Failed to resolve address, returning empty set topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:158
ERR 2026-03-29 11:46:53.940+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:54.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:54.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:54.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:54.940+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:55.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:55.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:55.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:55.941+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:56.905+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:56.905+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.905+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.905+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.905+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:56.905+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:56.941+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:57.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:57.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:57.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
ERR 2026-03-29 11:46:57.942+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624
TRC 2026-03-29 11:46:58.904+00:00 running heartbeat topics="libp2p gossipsub" tid=1 file=behavior.nim:885 instance=139916951371856
TRC 2026-03-29 11:46:58.904+00:00 rebalancing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:466 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.904+00:00 replenishing mesh topics="libp2p gossipsub" tid=1 file=behavior.nim:478 peers=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.904+00:00 grafting topics="libp2p gossipsub" tid=1 file=behavior.nim:506 grafting=0 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.904+00:00 mesh balanced topics="libp2p gossipsub" tid=1 file=behavior.nim:688 topic=/waku/2/rs/3/0 mesh=0 gossipsub=0
TRC 2026-03-29 11:46:58.904+00:00 getting gossip peers (iHave) topics="libp2p gossipsub" tid=1 file=behavior.nim:751 ntopics=0
INF 2026-03-29 11:46:58.907+00:00 periodic prune started topics="waku reconciliation" tid=1 file=reconciliation.nim:455
INF 2026-03-29 11:46:58.907+00:00 periodic prune done topics="waku reconciliation" tid=1 file=reconciliation.nim:463 elements_pruned=0
TRC 2026-03-29 11:46:58.915+00:00 running discv5 discovery loop topics="waku discv5" tid=1 file=waku_discv5.nim:261
TRC 2026-03-29 11:46:58.915+00:00 discv5 discovered peers topics="waku discv5" tid=1 file=waku_discv5.nim:277 num_discovered_peers=0 peers=[]
TRC 2026-03-29 11:46:58.915+00:00 discv5 discarded wrong records topics="waku discv5" tid=1 file=waku_discv5.nim:281 wrong_records=[]
TRC 2026-03-29 11:46:58.937+00:00 Resolving IP using DNS topics="libp2p dnsresolver" tid=1 file=dnsresolver.nim:101 address=one.one.one.one servers="[1.1.1.1:53, 1.0.0.1:53]" domain=AF_UNSPEC
ERR 2026-03-29 11:46:58.941+00:00 connectToRelayPeers: won't attempt new connections - node is offline topics="waku node peer_manager" tid=1 file=peer_manager.nim:624