Fully Synced Cardano Node, But Mempool Always Empty (Mainnet Node)

I’m running a fully synced Cardano node, but my mempool remains completely empty at all times even during peak traffic periods. This is unexpected, since I know Cardano’s mainnet usually has a steady stream of pending transactions.

Node Details:

  • Cardano Node Version: : 10.1.4
docker exec cardano-node cardano-cli query tip --mainnet --socket-path /socket/node.socket
{
    "block": 11537807,
    "epoch": 542,
    "era": "Conway",
    "hash": "088df620cd09bdb640b0e2f31762ef203468841240ee6c23b897f24412ec7d57",
    "slot": 149079482,
    "slotInEpoch": 298682,
    "slotsToEpochEnd": 133318,
    "syncProgress": "100.00"

docker exec cardano-node cardano-cli query tx-mempool --mainnet --cardano-mode --socket-path /socket/node.socket info
{
    "capacityInBytes": 178176,
    "numberOfTxs": 0,
    "sizeInBytes": 0,
    "slot": 149079433

config.json

{
  "AlonzoGenesisFile": "alonzo-genesis.json",
  "AlonzoGenesisHash": "7e94a15f55d1e82d10f09203fa1d40f8eede58fd8066542cf6566008068ed874",
  "ByronGenesisFile": "byron-genesis.json",
  "ByronGenesisHash": "5f20df933584822601f9e3f8c024eb5eb252fe8cefb24d1317dc3d432e940ebb",
  "ConwayGenesisFile": "conway-genesis.json",
  "ConwayGenesisHash": "15a199f895e461ec0ffc6dd4e4028af28a492ab4e806d39cb674c88f7643ef62",
  "EnableP2P": true,
  "LastKnownBlockVersion-Alt": 0,
  "LastKnownBlockVersion-Major": 3,
  "LastKnownBlockVersion-Minor": 0,
  "MaxKnownMajorProtocolVersion": 2,
  "MinNodeVersion": "10.1.4",
  "PeerSharing": true,
  "Protocol": "Cardano",
  "RequiresNetworkMagic": "RequiresNoMagic",
  "ShelleyGenesisFile": "shelley-genesis.json",
  "ShelleyGenesisHash": "1a3be38bcbb7911969283716ad7aa550250226b76a61fc51cc9a9a35d9276d81",
  "TargetNumberOfActivePeers": 20,
  "TargetNumberOfEstablishedPeers": 40,
  "TargetNumberOfKnownPeers": 150,
  "TargetNumberOfRootPeers": 60,
  "TraceAcceptPolicy": true,
  "TraceBlockFetchClient": false,
  "TraceBlockFetchDecisions": false,
  "TraceBlockFetchProtocol": false,
  "TraceBlockFetchProtocolSerialised": false,
  "TraceBlockFetchServer": false,
  "TraceChainDb": true,
  "TraceChainSyncBlockServer": false,
  "TraceChainSyncClient": false,
  "TraceChainSyncHeaderServer": false,
  "TraceChainSyncProtocol": false,
  "TraceConnectionManager": true,
  "TraceDNSResolver": true,
  "TraceDNSSubscription": true,
  "TraceDiffusionInitialization": true,
  "TraceErrorPolicy": true,
  "TraceForge": true,
  "TraceHandshake": true,
  "TraceInboundGovernor": true,
  "TraceIpSubscription": true,
  "TraceLedgerPeers": true,
  "TraceLocalChainSyncProtocol": false,
  "TraceLocalConnectionManager": true,
  "TraceLocalErrorPolicy": true,
  "TraceLocalHandshake": true,
  "TraceLocalRootPeers": true,
  "TraceLocalTxSubmissionProtocol": false,
  "TraceLocalTxSubmissionServer": false,
  "TraceMempool": false,
  "TraceMux": false,
  "TracePeerSelection": true,
  "TracePeerSelectionActions": true,
  "TracePublicRootPeers": true,
  "TraceServer": true,
  "TraceTxInbound": false,
  "TraceTxOutbound": false,
  "TraceTxSubmissionProtocol": false,
  "TracingVerbosity": "NormalVerbosity",
  "TurnOnLogMetrics": true,
  "TurnOnLogging": true,
  "UseTraceDispatcher": false,
  "defaultBackends": [
    "KatipBK"
  ],
  "defaultScribes": [
    [
      "StdoutSK",
      "stdout"
    ]
  ],
  "hasEKG": 12788,
  "hasPrometheus": [
    "0.0.0.0",
    12798
  ],
  "minSeverity": "Info",
  "options": {
    "mapBackends": {
      "cardano.node.metrics": [
        "EKGViewBK"
      ],
      "cardano.node.resources": [
        "EKGViewBK"
      ]
    },
    "mapSubtrace": {
      "cardano.node.metrics": {
        "subtrace": "Neutral"
      }
    }
  },
  "rotation": {
    "rpKeepFilesNum": 10,
    "rpLogLimitBytes": 5000000,
    "rpMaxAgeHours": 24
  },
  "setupBackends": [
    "KatipBK"
  ],
  "setupScribes": [
    {
      "scFormat": "ScText",
      "scKind": "StdoutSK",
      "scName": "stdout",
      "scRotation": null
    }
  ]
}

topology.json

{
  "bootstrapPeers": [
    {
      "address": "backbone.cardano.iog.io",
      "port": 3001
    },
    {
      "address": "backbone.mainnet.cardanofoundation.org",
      "port": 3001
    },
    {
      "address": "backbone.mainnet.emurgornd.com",
      "port": 3001
    }
  ],
  "localRoots": [
    {
      "accessPoints": [],
      "advertise": false,
      "trustable": false,
      "valency": 1
    }
  ],
  "publicRoots": [
    {
      "accessPoints": [],
      "advertise": false
    }
  ],
  "useLedgerAfterSlot": 128908821
}

docker-compose.yml

services:
  cardano-node:
    image: ghcr.io/intersectmbo/cardano-node:10.1.4
    container_name: cardano-node
    restart: always
    ports:
      - "3001:3001"
      - "12798:12798"
    volumes:
      - ./config:/config
      - ./db:/db
      - ./scripts:/scripts
      - ./socket:/socket
    command: >
      run
      --topology /config/topology.json
      --database-path /db
      --socket-path /socket/node.socket
      --host-addr 0.0.0.0
      --port 3001
      --config /config/config.json
    networks:
      - cardano-network

change this tracer to true.

2 Likes

I am still facing the same issue, after changing it and restarting the docker instance

I am attaching the docker logs for your reference

[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.13 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 23, idlePeersRemote = 20, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.24 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.24 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 206.189.255.225:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.24 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 24, idlePeersRemote = 19, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.25 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.25 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 54.224.10.3:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.25 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 25, idlePeersRemote = 18, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.25 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.25 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 44.216.181.156:6000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.25 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 26, idlePeersRemote = 17, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.26 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.26 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 138.197.134.197:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.26 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 27, idlePeersRemote = 16, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.27 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.27 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.23.88.7:3000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.27 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 28, idlePeersRemote = 15, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.29 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.29 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 64.25.109.171:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.29 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 29, idlePeersRemote = 14, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.30 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.30 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 91.242.214.33:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.30 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 30, idlePeersRemote = 13, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.30 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.30 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 85.215.114.14:6000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.30 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 31, idlePeersRemote = 12, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.31 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.31 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 173.67.34.69:7001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.31 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 32, idlePeersRemote = 11, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.32 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 92.118.59.28:6000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 33, idlePeersRemote = 10, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.32 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 13.232.25.170:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 34, idlePeersRemote = 9, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.32 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 154.38.173.238:8376}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.32 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 35, idlePeersRemote = 8, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.33 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.33 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 47.196.44.4:5000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.33 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 36, idlePeersRemote = 7, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.37 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.37 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 143.110.152.90:3201}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.37 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 37, idlePeersRemote = 6, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.41 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.41 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 103.147.114.194:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.41 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 38, idlePeersRemote = 5, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.53 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.53 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 3.112.223.227:1338}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.53 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 39, idlePeersRemote = 4, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.59 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.59 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.92.222.93:1338}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.59 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 40, idlePeersRemote = 3, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:55.82 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.82 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.85.223.188:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:55.82 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 41, idlePeersRemote = 2, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:56.48 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 3, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:56.48 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 15.164.112.189:30800}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:56.48 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 42, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.Handshake:Info:853] [2025-02-27 08:49:57.51 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 52.177.36.96:3000}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool True,TInt 0,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:853] [2025-02-27 08:49:57.51 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 52.177.36.96:3000}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorOnlyDiffusionMode, peerSharing = PeerSharingDisabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:379] [2025-02-27 08:49:57.51 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionActions:Info:379] [2025-02-27 08:49:57.51 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 52.177.36.96:3000)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:49:57.51 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 3, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:49:57.51 UTC] TracePromoteColdDone 40 37 52.177.36.96:3000
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:49:58.15 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:58.15 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 149.102.152.63:6000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:49:58.15 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 43, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:49:59.11 UTC] Chain extended, new tip: a2ceeb460c861c1ef1653152f224099e60bd374c5e16ded45036749d052e38ab at slot 149079908
[4a500528:cardano.node.ConnectionManager:Notice:377] [2025-02-27 08:50:00.05 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) (TrHandshakeClientError (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.ConnectionManager:Info:371] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionActions:Error:371] [2025-02-27 08:50:00.05 UTC] PeerStatusChangeFailure (ColdToWarm Nothing 51.195.5.14:1000) (HandshakeClientFailure (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.ConnectionManager:Info:377] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.05 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 57, viewColdPeersPromotions = 2, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.05 UTC] TracePromoteColdFailed 40 37 51.195.5.14:1000 4.070502426373s ClientException (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm))
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.05 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 57, viewColdPeersPromotions = 3, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.05 UTC] TracePromoteColdPeers 40 37 (fromList [57.128.184.32:3001])
[4a500528:cardano.node.ConnectionManager:Info:861] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 48})
[4a500528:cardano.node.ConnectionManager:Notice:397] [2025-02-27 08:50:00.05 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 91.134.22.6:3001}) (TrHandshakeClientError (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.ConnectionManager:Info:397] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 47})
[4a500528:cardano.node.ConnectionManager:Info:381] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 47})
[4a500528:cardano.node.PeerSelectionActions:Error:381] [2025-02-27 08:50:00.05 UTC] PeerStatusChangeFailure (ColdToWarm Nothing 91.134.22.6:3001) (HandshakeClientFailure (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.05 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 2, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.05 UTC] TracePromoteColdFailed 40 37 91.134.22.6:3001 5.45969149741s ClientException (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm))
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.05 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 3, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.05 UTC] TracePromoteColdPeers 40 37 (fromList [35.211.17.86:3000])
[4a500528:cardano.node.ConnectionManager:Info:863] [2025-02-27 08:50:00.05 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 47})
[4a500528:cardano.node.ConnectionManager:Info:861] [2025-02-27 08:50:00.06 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 43, unidirectionalConns = 4, inboundConns = 0, outboundConns = 48})
[4a500528:cardano.node.Handshake:Info:864] [2025-02-27 08:50:00.06 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 57.128.184.32:3001}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:864] [2025-02-27 08:50:00.08 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 57.128.184.32:3001}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 1,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:864] [2025-02-27 08:50:00.08 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 57.128.184.32:3001}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingEnabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:861] [2025-02-27 08:50:00.08 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 44, unidirectionalConns = 4, inboundConns = 0, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionActions:Info:861] [2025-02-27 08:50:00.08 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 57.128.184.32:3001)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.08 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 2, viewEstablishedPeers = 38, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.08 UTC] TracePromoteColdDone 40 38 57.128.184.32:3001
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:00.08 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 43, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:863] [2025-02-27 08:50:00.15 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 44, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.Handshake:Info:870] [2025-02-27 08:50:00.16 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 35.211.17.86:3000}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:870] [2025-02-27 08:50:00.26 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 35.211.17.86:3000}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 1,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:870] [2025-02-27 08:50:00.26 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 35.211.17.86:3000}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingEnabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:863] [2025-02-27 08:50:00.26 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionActions:Info:863] [2025-02-27 08:50:00.26 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 35.211.17.86:3000)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:50:00.27 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 1, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:50:00.27 UTC] TracePromoteColdDone 40 39 35.211.17.86:3000
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:00.27 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 43, idlePeersRemote = 2, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.LocalConnectionManager:Info:876] [2025-02-27 08:50:01.76 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalHandshake:Info:877] [2025-02-27 08:50:01.76 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"}) Recv (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToClientV_9,TInt 764824073),(NodeToClientV_10,TInt 764824073),(NodeToClientV_11,TInt 764824073),(NodeToClientV_12,TInt 764824073),(NodeToClientV_13,TInt 764824073),(NodeToClientV_14,TInt 764824073),(NodeToClientV_15,TList [TInt 764824073,TBool False]),(NodeToClientV_16,TList [TInt 764824073,TBool False]),(NodeToClientV_17,TList [TInt 764824073,TBool False]),(NodeToClientV_18,TList [TInt 764824073,TBool False])]))
[4a500528:cardano.node.LocalHandshake:Info:877] [2025-02-27 08:50:01.76 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"}) Send (ServerAgency TokConfirm,MsgAcceptVersion NodeToClientV_18 (TList [TInt 764824073,TBool False]))
[4a500528:cardano.node.LocalConnectionManager:Info:877] [2025-02-27 08:50:01.76 UTC] TrConnectionHandler (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"}) (TrHandshakeSuccess NodeToClientV_18 (NodeToClientVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, query = False}))
[4a500528:cardano.node.LocalConnectionManager:Info:876] [2025-02-27 08:50:01.76 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:01.76 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrPromotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"}) (OperationSuccess (InboundIdleSt Unidirectional))
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrPromotedToHotRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 4})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrDemotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@3"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:01.76 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:01.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:02.76 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:877] [2025-02-27 08:50:02.76 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 3, outboundConns = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:50:05.08 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:05.08 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 57.128.184.32:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:05.08 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 44, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:50:05.22 UTC] Chain extended, new tip: 55fe05b96e891851a13b89074290fe75239ac311e9619d8ab18b751016f6b170 at slot 149079914
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:50:05.27 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:05.27 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 35.211.17.86:3000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:50:05.27 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 45, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:50:25.14 UTC] Chain extended, new tip: 97ea8d512a9a79fe476577f7893dd6b9c457ec3d3e52a8af2db789454c65df85 at slot 149079934
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:50:27.64 UTC] Chain extended, new tip: 461926b9c90a51d9170dfaaa1661e9d7c1295429c853818c0d6bce7c3b55fdda at slot 149079936
[4a500528:cardano.node.LocalConnectionManager:Info:885] [2025-02-27 08:50:38.00 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalHandshake:Info:886] [2025-02-27 08:50:38.00 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"}) Recv (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToClientV_9,TInt 764824073),(NodeToClientV_10,TInt 764824073),(NodeToClientV_11,TInt 764824073),(NodeToClientV_12,TInt 764824073),(NodeToClientV_13,TInt 764824073),(NodeToClientV_14,TInt 764824073),(NodeToClientV_15,TList [TInt 764824073,TBool False]),(NodeToClientV_16,TList [TInt 764824073,TBool False]),(NodeToClientV_17,TList [TInt 764824073,TBool False]),(NodeToClientV_18,TList [TInt 764824073,TBool False])]))
[4a500528:cardano.node.LocalHandshake:Info:886] [2025-02-27 08:50:38.00 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"}) Send (ServerAgency TokConfirm,MsgAcceptVersion NodeToClientV_18 (TList [TInt 764824073,TBool False]))
[4a500528:cardano.node.LocalConnectionManager:Info:886] [2025-02-27 08:50:38.00 UTC] TrConnectionHandler (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"}) (TrHandshakeSuccess NodeToClientV_18 (NodeToClientVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, query = False}))
[4a500528:cardano.node.LocalConnectionManager:Info:885] [2025-02-27 08:50:38.00 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.00 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:38.00 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.00 UTC] TrPromotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"}) (OperationSuccess (InboundIdleSt Unidirectional))
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.00 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.00 UTC] TrPromotedToHotRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.00 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 4})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.01 UTC] TrDemotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@4"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.01 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:38.01 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:38.01 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:886] [2025-02-27 08:50:39.01 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 3, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:39.01 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:890] [2025-02-27 08:50:40.66 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalHandshake:Info:891] [2025-02-27 08:50:40.66 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"}) Recv (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToClientV_9,TInt 764824073),(NodeToClientV_10,TInt 764824073),(NodeToClientV_11,TInt 764824073),(NodeToClientV_12,TInt 764824073),(NodeToClientV_13,TInt 764824073),(NodeToClientV_14,TInt 764824073),(NodeToClientV_15,TList [TInt 764824073,TBool False]),(NodeToClientV_16,TList [TInt 764824073,TBool False]),(NodeToClientV_17,TList [TInt 764824073,TBool False]),(NodeToClientV_18,TList [TInt 764824073,TBool False])]))
[4a500528:cardano.node.LocalHandshake:Info:891] [2025-02-27 08:50:40.66 UTC] WithMuxBearer (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"}) Send (ServerAgency TokConfirm,MsgAcceptVersion NodeToClientV_18 (TList [TInt 764824073,TBool False]))
[4a500528:cardano.node.LocalConnectionManager:Info:891] [2025-02-27 08:50:40.66 UTC] TrConnectionHandler (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"}) (TrHandshakeSuccess NodeToClientV_18 (NodeToClientVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, query = False}))
[4a500528:cardano.node.LocalConnectionManager:Info:890] [2025-02-27 08:50:40.66 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.66 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:40.66 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.66 UTC] TrPromotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"}) (OperationSuccess (InboundIdleSt Unidirectional))
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.66 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.66 UTC] TrPromotedToHotRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.66 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 4})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.67 UTC] TrDemotedToWarmRemote (ConnectionId {localAddress = LocalAddress "/socket/node.socket", remoteAddress = LocalAddress "/socket/node.socket@5"})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.67 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 1, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:161] [2025-02-27 08:50:40.67 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 4, inboundConns = 4, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:40.67 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.LocalConnectionManager:Info:891] [2025-02-27 08:50:41.67 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 0, unidirectionalConns = 3, inboundConns = 3, outboundConns = 0})
[4a500528:cardano.node.LocalInboundGovernor:Info:161] [2025-02-27 08:50:41.67 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 0, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 3})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:50:43.16 UTC] Chain extended, new tip: d33394adb3801859294e6934305d1fb3216e93eac885419ea802a4207478f37b at slot 149079952
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:51:02.12 UTC] Chain extended, new tip: 0e00db5a2d3c752b585118059111f74aa9662d6279e083d2e0f05ca998f0c120 at slot 149079971
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:51:06.49 UTC] Chain extended, new tip: be164555434f118618aa2630ca2b0db35e830e5659c62f9e3bf7bc3f79ea3630 at slot 149079975
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:51:54.24 UTC] Chain extended, new tip: cf8f29e394de5cf14c76a4b4caf4f59f06998b58aa03ca6059fe6698bb1c3b48 at slot 149080023
[4a500528:cardano.node.ConnectionManager:Info:383] [2025-02-27 08:51:59.72 UTC] TrConnectError (Just 0.0.0.0:3001) 18.222.201.35:3001 Network.Socket.connect: <socket: 52>: timeout (Connection timed out)
[4a500528:cardano.node.ConnectionManager:Info:383] [2025-02-27 08:51:59.73 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:51:59.73 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 55, viewColdPeersPromotions = 0, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:51:59.73 UTC] TracePromoteColdFailed 40 39 18.222.201.35:3001 5.50983011647s Network.Socket.connect: <socket: 52>: timeout (Connection timed out)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:51:59.73 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 57, viewColdPeersPromotions = 1, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:51:59.73 UTC] TracePromoteColdPeers 40 39 (fromList [84.61.157.55:6000])
[4a500528:cardano.node.ConnectionManager:Info:900] [2025-02-27 08:51:59.73 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.ConnectionManager:Info:900] [2025-02-27 08:52:01.99 UTC] TrConnectError (Just 0.0.0.0:3001) 84.61.157.55:6000 Network.Socket.connect: <socket: 52>: does not exist (No route to host)
[4a500528:cardano.node.ConnectionManager:Info:900] [2025-02-27 08:52:01.99 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:52:02.00 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 0, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:52:02.00 UTC] TracePromoteColdFailed 40 39 84.61.157.55:6000 8.663061570401s Network.Socket.connect: <socket: 52>: does not exist (No route to host)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:52:02.00 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 1, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:52:02.00 UTC] TracePromoteColdPeers 40 39 (fromList [51.195.5.14:1000])
[4a500528:cardano.node.ConnectionManager:Info:901] [2025-02-27 08:52:02.00 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 49})
[4a500528:cardano.node.ConnectionManager:Info:901] [2025-02-27 08:52:02.00 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 45, unidirectionalConns = 4, inboundConns = 0, outboundConns = 50})
[4a500528:cardano.node.Handshake:Info:902] [2025-02-27 08:52:02.00 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:52:03.42 UTC] Chain extended, new tip: 4f75f6a3e65a66608972e855e6f70d4eb32bd61e9ae53f89ef4438052acbc095 at slot 149080032
[4a500528:cardano.node.Handshake:Info:902] [2025-02-27 08:52:06.48 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 0,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:902] [2025-02-27 08:52:06.48 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingDisabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:901] [2025-02-27 08:52:06.48 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 46, unidirectionalConns = 4, inboundConns = 0, outboundConns = 50})
[4a500528:cardano.node.PeerSelectionActions:Info:901] [2025-02-27 08:52:06.48 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 51.195.5.14:1000)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 08:52:06.49 UTC] PeerSelectionView {viewRootPeers = 73, viewKnownPeers = 58, viewAvailableToConnectPeers = 56, viewColdPeersPromotions = 0, viewEstablishedPeers = 40, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 0, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 0, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 0, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 08:52:06.49 UTC] TracePromoteColdDone 40 40 51.195.5.14:1000
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:52:06.49 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 45, idlePeersRemote = 1, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 08:52:11.49 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 46, unidirectionalConns = 4, inboundConns = 0, outboundConns = 50})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:52:11.49 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 08:52:11.49 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 46, idlePeersRemote = 0, warmPeersRemote = 0, hotPeersRemote = 0})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:52:23.14 UTC] Chain extended, new tip: 632ed0caa4cc68915e89502238b90e44f8b404cfdbb03e1c3384ba3800e6a383 at slot 149080052
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:53:18.17 UTC] Chain extended, new tip: 3e76a39f247189f4d88db72f913183e1e515c586788a7d7352cbffc12737ce53 at slot 149080107
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 08:53:25.25 UTC] Chain extended, new tip: 117d7a6261bf92be69393a9bacae75f6b7b6d3ac557e45572ebaeaef03060849 at slot 149080114

it randomly started working for an hour and I did not touch it, it has died once again

[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.21 UTC] TraceForgetColdPeers 128 139 (fromList [88.198.184.60:3001,51.89.192.69:3001,91.134.167.39:4001,51.89.40.126:6000])
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:15.34 UTC] PeerSelectionView {viewRootPeers = 59, viewKnownPeers = 148, viewAvailableToConnectPeers = 148, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 104, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.34 UTC] TracePeerShareResults [(108.129.152.71:1338,Right (PeerSharingResult [65.21.128.57:36335,13.209.200.144:12196,159.112.129.228:3001,52.50.25.141:13835,69.218.230.14:6000,44.197.103.138:3001,130.61.128.250:5001,148.251.238.189:3001,76.71.175.237:60671])),(188.245.78.98:6000,Right (PeerSharingResult [77.68.87.67:6000,109.199.124.106:6001,51.89.64.210:4600,157.173.194.106:6004,198.71.57.191:6000,5.161.57.109:5001,134.22.195.68:6000,51.222.244.229:3001,3.125.200.144:31574]))]
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.35 UTC] TracePeerShareRequests 150 148 (PeerSharingAmount {getAmount = 8}) (fromList [35.198.107.15:1338,35.242.239.68:1338,34.92.222.93:1338,3.253.118.129:1338,34.159.132.172:1338,34.150.57.222:1338,3.112.223.227:1338,35.211.17.86:3000,54.224.10.3:3001,74.208.75.29:3001,57.128.184.32:3001,91.242.214.33:3001,88.198.71.49:3001,89.58.46.139:3001,37.27.202.139:3001,34.85.223.188:3001,103.147.114.194:3001,86.80.128.65:3002,62.171.134.36:3008,47.196.44.4:5000,195.191.47.212:5001,92.118.59.28:6000,149.102.152.63:6000,66.94.103.119:6000,44.216.181.156:6000,158.69.119.202:6000,94.23.40.22:6001]) (fromList [35.198.107.15:1338,35.242.239.68:1338])
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.35 UTC] TracePeerShareResults [(35.198.107.15:1338,Right (PeerSharingResult [3.210.99.5:3001,68.183.198.1:3001,13.58.186.18:8081,61.69.254.98:18806,66.94.115.19:6000,192.99.21.131:21277,37.187.143.192:6000,143.110.217.207:6000])),(35.242.239.68:1338,Right (PeerSharingResult [88.198.86.63:6000,35.234.78.243:1338,206.189.57.15:6000,5.104.80.115:6000,34.159.25.126:1338,52.60.81.54:3001,161.34.35.39:6000,65.21.238.138:49867]))]
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.36 UTC] TracePeerShareRequests 150 148 (PeerSharingAmount {getAmount = 8}) (fromList [34.92.222.93:1338,3.253.118.129:1338,34.159.132.172:1338,34.150.57.222:1338,3.112.223.227:1338,35.211.17.86:3000,54.224.10.3:3001,74.208.75.29:3001,57.128.184.32:3001,91.242.214.33:3001,88.198.71.49:3001,89.58.46.139:3001,37.27.202.139:3001,34.85.223.188:3001,103.147.114.194:3001,86.80.128.65:3002,62.171.134.36:3008,47.196.44.4:5000,195.191.47.212:5001,92.118.59.28:6000,149.102.152.63:6000,66.94.103.119:6000,44.216.181.156:6000,158.69.119.202:6000,94.23.40.22:6001]) (fromList [35.211.17.86:3000,92.118.59.28:6000])
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:15.47 UTC] PeerSelectionView {viewRootPeers = 59, viewKnownPeers = 163, viewAvailableToConnectPeers = 163, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 119, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.47 UTC] TracePeerShareResults [(35.211.17.86:3000,Right (PeerSharingResult [139.99.133.43:3001,98.61.194.75:6000,144.6.112.28:8376,78.46.80.14:6000,64.25.109.175:3001,3.228.174.253:6000,139.59.146.37:7777,191.82.45.22:59146])),(92.118.59.28:6000,Right (PeerSharingResult [15.235.53.240:3001,65.109.82.84:6118,3.126.57.171:3001,95.217.115.232:6001,118.158.197.21:3001,35.214.114.7:6000,112.199.173.255:49802,3.109.88.104:3001]))]
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:15.47 UTC] PeerSelectionView {viewRootPeers = 59, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 106, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:15.47 UTC] TraceForgetColdPeers 150 163 (fromList [116.203.209.89:3001,85.239.240.193:3001,141.94.226.76:4002,51.89.64.210:4600,34.207.214.105:6000,198.71.57.191:6000,195.198.154.205:6000,20.110.250.160:6001,176.96.136.200:8084,144.6.112.28:8376,54.199.153.43:10910,65.21.128.57:36335,174.176.107.153:50407])
[4a500528:cardano.node.ConnectionManager:Info:1561] [2025-02-27 11:48:20.20 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 45})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:20.21 UTC] TrMuxErrored (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 213.66.90.204:3005}) AsyncCancelled
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:20.21 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 44, idlePeersRemote = 0, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.29 UTC] TraceGovernorWakeup
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.29 UTC] TracePublicRootsRequest 60 59
[4a500528:cardano.node.LedgerPeers:Info:167] [2025-02-27 11:48:20.29 UTC] [String "UseLedgerPeers",Number 1.28908821e8]
[4a500528:cardano.node.LedgerPeers:Info:167] [2025-02-27 11:48:20.29 UTC] [String "[RelayAccessDomain \"relay2.adaocean.com\" 6000]",Number 1.0,Number 1.0,String "PickedLedgerPeers"]
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:20.33 UTC] TraceChurnAction 5.118254351s IncreasedKnownPeers 23
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.33 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 151, viewAvailableToConnectPeers = 151, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 106, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.33 UTC] TracePublicRootsResults (PublicRootPeers {getPublicConfigPeers = fromList [], getBootstrapPeers = fromList [], getLedgerPeers = fromList [142.44.212.120:6000], getBigLedgerPeers = fromList []}) 0 5s
[4a500528:cardano.node.PeerSelection:Notice:169] [2025-02-27 11:48:20.33 UTC] TraceTargetsChanged (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 36, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5}) (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 36, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 14, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.33 UTC] PeerSelectionView {viewRootPeers = 59, viewKnownPeers = 151, viewAvailableToConnectPeers = 151, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 14, viewAvailableToConnectBigLedgerPeers = 14, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 106, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.33 UTC] TraceForgetBigLedgerPeers 14 15 (fromList [95.154.235.142:6000])
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.34 UTC] PeerSelectionView {viewRootPeers = 59, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 14, viewAvailableToConnectBigLedgerPeers = 14, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.34 UTC] TraceForgetColdPeers 150 151 (fromList [52.197.157.87:3001])
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:20.34 UTC] TraceChurnAction 0.009043779s DecreasedKnownBigLedgerPeers (-1)
[4a500528:cardano.node.PeerSelection:Notice:169] [2025-02-27 11:48:20.34 UTC] TraceTargetsChanged (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 36, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 14, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5}) (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 36, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5})
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.34 UTC] TraceBigLedgerPeersRequest 15 14
[4a500528:cardano.node.LedgerPeers:Info:167] [2025-02-27 11:48:20.34 UTC] [String "UseLedgerPeers",Number 1.28908821e8]
[4a500528:cardano.node.LedgerPeers:Info:167] [2025-02-27 11:48:20.34 UTC] [String "RelayAccessAddress \"133.167.33.31\" 6000",String "PickedBigLedgerPeer",Number 1.289789838780196e-3]
[4a500528:cardano.node.LedgerPeers:Info:167] [2025-02-27 11:48:20.34 UTC] [String "[RelayAccessAddress \"133.167.33.31\" 6000]",Number 1.0,Number 1.0,String "PickedBigLedgerPeers"]
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:20.35 UTC] TraceChurnAction 0.00816208s IncreasedKnownBigLedgerPeers 1
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.35 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 0, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.35 UTC] TraceBigLedgerPeersResults (fromList [133.167.33.31:6000]) 0 5s
[4a500528:cardano.node.PeerSelection:Notice:169] [2025-02-27 11:48:20.35 UTC] TraceTargetsChanged (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 36, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5}) (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 40, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.35 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 4, viewEstablishedPeers = 36, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 2, viewEstablishedNonRootPeers = 8, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.35 UTC] TracePromoteColdPeers 40 36 (fromList [51.195.5.14:1000,44.197.103.138:3001,185.161.193.92:6010,139.59.146.37:7777])
[4a500528:cardano.node.ConnectionManager:Info:2384] [2025-02-27 11:48:20.35 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 45})
[4a500528:cardano.node.ConnectionManager:Info:2382] [2025-02-27 11:48:20.35 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 45})
[4a500528:cardano.node.ConnectionManager:Info:2381] [2025-02-27 11:48:20.35 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 45})
[4a500528:cardano.node.ConnectionManager:Info:2383] [2025-02-27 11:48:20.35 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 45})
[4a500528:cardano.node.Handshake:Info:2385] [2025-02-27 11:48:20.36 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.ConnectionManager:Info:2381] [2025-02-27 11:48:20.36 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 46})
[4a500528:cardano.node.ConnectionManager:Info:2384] [2025-02-27 11:48:20.36 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 47})
[4a500528:cardano.node.Handshake:Info:2386] [2025-02-27 11:48:20.36 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 139.59.146.37:7777}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:2386] [2025-02-27 11:48:20.37 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 139.59.146.37:7777}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 0,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:2386] [2025-02-27 11:48:20.37 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 139.59.146.37:7777}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingDisabled, query = False}))
[4a500528:cardano.node.Handshake:Info:2387] [2025-02-27 11:48:20.37 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 185.161.193.92:6010}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.ConnectionManager:Info:2384] [2025-02-27 11:48:20.37 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 48, unidirectionalConns = 1, inboundConns = 3, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionActions:Info:2384] [2025-02-27 11:48:20.37 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 139.59.146.37:7777)
[4a500528:cardano.node.ConnectionManager:Info:2383] [2025-02-27 11:48:20.37 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 47, unidirectionalConns = 1, inboundConns = 3, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.38 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 3, viewEstablishedPeers = 37, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 1, viewEstablishedNonRootPeers = 9, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.38 UTC] TracePromoteColdDone 40 37 139.59.146.37:7777
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:20.41 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 44, idlePeersRemote = 1, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.ConnectionManager:Info:2382] [2025-02-27 11:48:20.44 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 48, unidirectionalConns = 1, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.Handshake:Info:2394] [2025-02-27 11:48:20.44 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 44.197.103.138:3001}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:2394] [2025-02-27 11:48:20.53 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 44.197.103.138:3001}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 1,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:2394] [2025-02-27 11:48:20.53 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 44.197.103.138:3001}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingEnabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:2382] [2025-02-27 11:48:20.53 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 1, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionActions:Info:2382] [2025-02-27 11:48:20.53 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 44.197.103.138:3001)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:20.54 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 44, idlePeersRemote = 2, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.54 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 2, viewEstablishedPeers = 38, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 10, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.54 UTC] TracePromoteColdDone 40 38 44.197.103.138:3001
[4a500528:cardano.node.Handshake:Info:2387] [2025-02-27 11:48:20.54 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 185.161.193.92:6010}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool True,TInt 0,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:2387] [2025-02-27 11:48:20.54 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 185.161.193.92:6010}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorOnlyDiffusionMode, peerSharing = PeerSharingDisabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:2383] [2025-02-27 11:48:20.54 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionActions:Info:2383] [2025-02-27 11:48:20.54 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 185.161.193.92:6010)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:20.54 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 150, viewColdPeersPromotions = 1, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 10, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:20.54 UTC] TracePromoteColdDone 40 39 185.161.193.92:6010
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 11:48:25.41 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:25.41 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 139.59.146.37:7777}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:25.41 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 45, idlePeersRemote = 1, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 11:48:25.54 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:25.54 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 44.197.103.138:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:25.54 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 46, idlePeersRemote = 0, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.ConnectionManager:Notice:2385] [2025-02-27 11:48:30.36 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 51.195.5.14:1000}) (TrHandshakeClientError (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.ConnectionManager:Info:2385] [2025-02-27 11:48:30.36 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 48})
[4a500528:cardano.node.ConnectionManager:Info:2381] [2025-02-27 11:48:30.36 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 48})
[4a500528:cardano.node.PeerSelectionActions:Error:2381] [2025-02-27 11:48:30.36 UTC] PeerStatusChangeFailure (ColdToWarm Nothing 51.195.5.14:1000) (HandshakeClientFailure (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm)))
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:30.36 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 149, viewColdPeersPromotions = 0, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 10, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:30.36 UTC] TracePromoteColdFailed 40 39 51.195.5.14:1000 5.971372716989s ClientException (HandshakeProtocolLimit ExceededTimeLimit (Handshake) (ServerAgency TokConfirm))
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:30.36 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 149, viewColdPeersPromotions = 1, viewEstablishedPeers = 39, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 1, viewEstablishedNonRootPeers = 10, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:30.36 UTC] TracePromoteColdPeers 40 39 (fromList [195.201.11.181:6001])
[4a500528:cardano.node.ConnectionManager:Info:2407] [2025-02-27 11:48:30.36 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 48})
[4a500528:cardano.node.ConnectionManager:Info:2407] [2025-02-27 11:48:30.37 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 49, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.Handshake:Info:2408] [2025-02-27 11:48:30.37 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 195.201.11.181:6001}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:2408] [2025-02-27 11:48:30.38 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 195.201.11.181:6001}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 0,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:2408] [2025-02-27 11:48:30.38 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 195.201.11.181:6001}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingDisabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:2407] [2025-02-27 11:48:30.38 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 50, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.PeerSelectionActions:Info:2407] [2025-02-27 11:48:30.38 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 195.201.11.181:6001)
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:30.38 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 149, viewColdPeersPromotions = 0, viewEstablishedPeers = 40, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 11, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:30.38 UTC] TracePromoteColdDone 40 40 195.201.11.181:6001
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:30.38 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 46, idlePeersRemote = 1, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:30.38 UTC] TraceChurnAction 10.03449636s IncreasedEstablishedPeers 4
[4a500528:cardano.node.PeerSelection:Notice:169] [2025-02-27 11:48:30.38 UTC] TraceTargetsChanged (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 40, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 9, targetNumberOfActiveBigLedgerPeers = 5}) (PeerSelectionTargets {targetNumberOfRootPeers = 60, targetNumberOfKnownPeers = 150, targetNumberOfEstablishedPeers = 40, targetNumberOfActivePeers = 20, targetNumberOfKnownBigLedgerPeers = 15, targetNumberOfEstablishedBigLedgerPeers = 10, targetNumberOfActiveBigLedgerPeers = 5})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:30.39 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 149, viewColdPeersPromotions = 0, viewEstablishedPeers = 40, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 1, viewEstablishedBigLedgerPeers = 9, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 11, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:30.39 UTC] TracePromoteColdBigLedgerPeers 10 9 (fromList [34.89.50.50:3001])
[4a500528:cardano.node.ConnectionManager:Info:2414] [2025-02-27 11:48:30.39 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 50, unidirectionalConns = 2, inboundConns = 3, outboundConns = 49})
[4a500528:cardano.node.ConnectionManager:Info:2414] [2025-02-27 11:48:30.40 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 50, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.Handshake:Info:2415] [2025-02-27 11:48:30.40 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.89.50.50:3001}) Send (ClientAgency TokPropose,MsgProposeVersions (fromList [(NodeToNodeV_13,TList [TInt 764824073,TBool False,TInt 1,TBool False]),(NodeToNodeV_14,TList [TInt 764824073,TBool False,TInt 1,TBool False])]))
[4a500528:cardano.node.Handshake:Info:2415] [2025-02-27 11:48:34.42 UTC] WithMuxBearer (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.89.50.50:3001}) Recv (ServerAgency TokConfirm,MsgAcceptVersion NodeToNodeV_14 (TList [TInt 764824073,TBool False,TInt 1,TBool False]))
[4a500528:cardano.node.ConnectionManager:Info:2415] [2025-02-27 11:48:34.42 UTC] TrConnectionHandler (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.89.50.50:3001}) (TrHandshakeSuccess NodeToNodeV_14 (NodeToNodeVersionData {networkMagic = NetworkMagic {unNetworkMagic = 764824073}, diffusionMode = InitiatorAndResponderDiffusionMode, peerSharing = PeerSharingEnabled, query = False}))
[4a500528:cardano.node.ConnectionManager:Info:2414] [2025-02-27 11:48:34.42 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.PeerSelectionActions:Info:2414] [2025-02-27 11:48:34.42 UTC] PeerStatusChanged (ColdToWarm (Just 172.18.0.2:3001) 34.89.50.50:3001)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:34.43 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 46, idlePeersRemote = 2, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.PeerSelectionCounters:Info:169] [2025-02-27 11:48:34.43 UTC] PeerSelectionView {viewRootPeers = 60, viewKnownPeers = 150, viewAvailableToConnectPeers = 149, viewColdPeersPromotions = 0, viewEstablishedPeers = 40, viewWarmPeersDemotions = 0, viewWarmPeersPromotions = 0, viewActivePeers = 20, viewActivePeersDemotions = 0, viewKnownBigLedgerPeers = 15, viewAvailableToConnectBigLedgerPeers = 15, viewColdBigLedgerPeersPromotions = 0, viewEstablishedBigLedgerPeers = 10, viewWarmBigLedgerPeersDemotions = 0, viewWarmBigLedgerPeersPromotions = 0, viewActiveBigLedgerPeers = 5, viewActiveBigLedgerPeersDemotions = 0, viewKnownLocalRootPeers = 0, viewAvailableToConnectLocalRootPeers = 0, viewColdLocalRootPeersPromotions = 0, viewEstablishedLocalRootPeers = 0, viewWarmLocalRootPeersPromotions = 0, viewActiveLocalRootPeers = 0, viewActiveLocalRootPeersDemotions = 0, viewKnownNonRootPeers = 105, viewColdNonRootPeersPromotions = 0, viewEstablishedNonRootPeers = 11, viewWarmNonRootPeersDemotions = 0, viewWarmNonRootPeersPromotions = 0, viewActiveNonRootPeers = 3, viewActiveNonRootPeersDemotions = 0, viewKnownBootstrapPeers = 0, viewColdBootstrapPeersPromotions = 0, viewEstablishedBootstrapPeers = 0, viewWarmBootstrapPeersDemotions = 0, viewWarmBootstrapPeersPromotions = 0, viewActiveBootstrapPeers = 0, viewActiveBootstrapPeersDemotions = 0}
[4a500528:cardano.node.PeerSelection:Info:169] [2025-02-27 11:48:34.43 UTC] TracePromoteColdBigLedgerPeerDone 10 10 34.89.50.50:3001
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:34.43 UTC] TraceChurnAction 4.04807969s IncreasedEstablishedBigLedgerPeers 1
[4a500528:cardano.node.PeerSelection:Info:173] [2025-02-27 11:48:34.43 UTC] TraceChurnWait 3259.094390861558s
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 11:48:35.38 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:35.38 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 195.201.11.181:6001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:35.38 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 47, idlePeersRemote = 1, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:48:37.33 UTC] Chain extended, new tip: 6fad87e652f7563534b523d42d3df27e9cb571d52eee545172a923869bf09fb7 at slot 149090626
[4a500528:cardano.node.ConnectionManager:Info:165] [2025-02-27 11:48:39.43 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:39.43 UTC] TrDemotedToColdRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 34.89.50.50:3001}) (OperationSuccess KeepTr)
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:48:39.43 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 48, idlePeersRemote = 0, warmPeersRemote = 2, hotPeersRemote = 1})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:48:56.18 UTC] Chain extended, new tip: af097b4ffaadd8fd2e1071e33b866be45833dc3238df9354f17a256a74cc4e23 at slot 149090645
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:49:03.21 UTC] Chain extended, new tip: 6b016f1437d5082543cbf47583aa241673305b947f28f7bb67e53450666c91b7 at slot 149090652
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:49:07.10 UTC] Chain extended, new tip: 8c4e9e95547e6a8bc7cb15ee4e832832c5c23fc1df80eac97a502e6740e82432 at slot 149090656
[4a500528:cardano.node.ConnectionManager:Info:421] [2025-02-27 11:49:15.20 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.PeerSelectionActions:Info:492] [2025-02-27 11:49:15.20 UTC] PeerStatusChanged (CoolingToCold (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 31.3.245.20:3000}))
[4a500528:cardano.node.ConnectionManager:Info:656] [2025-02-27 11:49:15.20 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.ConnectionManager:Info:1556] [2025-02-27 11:49:20.20 UTC] TrConnectionManagerCounters (ConnectionManagerCounters {fullDuplexConns = 0, duplexConns = 51, unidirectionalConns = 2, inboundConns = 3, outboundConns = 50})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:49:42.30 UTC] Chain extended, new tip: 903e8d7c73dcb75f64c3a77a8f1150097a2fd652a7a835d6dcb768de4813daa7 at slot 149090691
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:50:16.43 UTC] Chain extended, new tip: c95ad093c6e842224d1f09de4dbc4ba30c0a42743db66dfaa889a34bc828f3e2 at slot 149090725
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:50:20.13 UTC] Chain extended, new tip: f801a6f2eee033981ffdee294cc492f9afeade95f9fffa6bf600b600a173f573 at slot 149090729
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:50:59.23 UTC] Chain extended, new tip: f7ec0ad336cb04cf1762edfc25ba20f29c25c16352580463f7b7500e043fd598 at slot 149090768
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:51:02.13 UTC] Chain extended, new tip: 5e1f2726f4bef1b36ac0fb7f860162dec2a60743927285752e332244287bb77e at slot 149090771
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:51:22.23 UTC] Chain extended, new tip: 9c7449a9ff3da953f7e671652305ac6a196469c6fc5f6c6eda33ffd382a349ad at slot 149090791
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:51:25.21 UTC] Chain extended, new tip: 3a6de8d7f2b0cdaf8973484d2ae581ab90dd24d2c5ad8427940ab05a71aab725 at slot 149090794
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:51:50.41 UTC] Chain extended, new tip: ce3f9d5e2fda906841a5f47b24083f1ae5b70a4fbf509294c991fdb7c9f86069 at slot 149090819
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:52:00.26 UTC] Chain extended, new tip: 304aeecbccb6ec071c04944748ea131ac289aef83eceed0735953b89965ff852 at slot 149090829
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:52:11.12 UTC] Chain extended, new tip: 4de03c9cd91a0cd348dec1ca04bb8f4d0fb65a8449c1081ca3cc743f2e568940 at slot 149090840
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:52:38.11 UTC] Chain extended, new tip: c3aff02b38d044630b4b85c7f44aa3e3d4aff7fe416a8701242ab976e484496f at slot 149090867
[4a500528:cardano.node.ChainDB:Info:139] [2025-02-27 11:54:08.18 UTC] Valid candidate bf8bd2e069507f6591479806e0dbc5d04404f4aefa2026e9bacff842d1bbd5f6 at slot 149090957
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:54:08.18 UTC] Chain extended, new tip: bf8bd2e069507f6591479806e0dbc5d04404f4aefa2026e9bacff842d1bbd5f6 at slot 149090957
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:54:18.34 UTC] Chain extended, new tip: b1f653a255347d21460c2fc297128e8cce10d7caf2005c80dfbdfea7102d5a48 at slot 149090967
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:54:21.53 UTC] Chain extended, new tip: 1efdb7ddc04076ee7fb30c29e36720dba7b5de9294cf9185c169fb92573d0fd5 at slot 149090970
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:54:23.11 UTC] Chain extended, new tip: c3d91de33a33c9d2b66b81d321f0c17a5d4d2745a00ab9fcfdee74e0d6ab943c at slot 149090972
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:54:33.27 UTC] Chain extended, new tip: f1bef84ceb8ae81d0e5f246c5530c64c3c55af08ff0b18d3bfbb461c5326d9f7 at slot 149090982
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:55:04.26 UTC] Chain extended, new tip: c89102fe2a93f9303d3ffc4e504e2a8fcf01ea31b5de4b4b3f76493057df3652 at slot 149091013
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:55:07.12 UTC] Chain extended, new tip: de5c07c5d4859905c679e4d4eb0a36b2adaa6a3dd5c59c49bb128b11d5dc9219 at slot 149091016
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:56:31.73 UTC] Chain extended, new tip: d9a2c910c1dcd1076ab7b13d191643dfc85d8fcc7a90356a45cdce2539b56a80 at slot 149091100
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:56:39.09 UTC] Chain extended, new tip: 03671485cc54c15b596f0f2af845a9cfeaca52af8ce2dee40b2a674d9afc0eb6 at slot 149091108
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:56:53.14 UTC] Chain extended, new tip: e1fa997cb495a9f3cfde724858863a7f030b2cdbe6b51e155601b66262a0c125 at slot 149091122
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:58:00.49 UTC] Chain extended, new tip: 1832ca64a2f59b65c1343b7fb22e36856ed1c78773eb0ac9ab8f3f0c8b1bb492 at slot 149091189
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:58:13.15 UTC] Chain extended, new tip: ec989505e2ab3be0c4c1ea6d280fb58c0e0bc24e8c3859314c72263f2ca429a1 at slot 149091202
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:58:54.49 UTC] Chain extended, new tip: 69526bd3e13eb2d7039fe5d8aaf0f87714e8e01617eb0cd6d5778929fbcd8ec5 at slot 149091243
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:58:56.09 UTC] Chain extended, new tip: e629702bc2febd5ac61ace1f5ec3d101f72d1bcdb9ebb6a8ec162ad8bb7fe16e at slot 149091245
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:59:00.25 UTC] Chain extended, new tip: a51790fe8b5c082d4f0c8dca9af15b7d95a03a9fcdc426b0f809ae71d44a2dd5 at slot 149091249
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:59:19.19 UTC] Chain extended, new tip: 454b5f10d2e33165b29a09ffcb9589eaf3d4d8088597b05824999f943fd6a64b at slot 149091268
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:59:32.25 UTC] Chain extended, new tip: a1fdabf925f33c47a85e5de45c82d86768fe3e41a9f529c95bf876a4e124f3a2 at slot 149091281
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 11:59:51.53 UTC] Chain extended, new tip: a2c82a596c87db9a0e57ff75358081d083e6b6a51424a87a1889bd16d69dbc9c at slot 149091300
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:59:51.56 UTC] TrDemotedToWarmRemote (ConnectionId {localAddress = 172.18.0.2:3001, remoteAddress = 65.21.34.30:39213})
[4a500528:cardano.node.InboundGovernor:Info:165] [2025-02-27 11:59:51.56 UTC] TrInboundGovernorCounters (InboundGovernorCounters {coldPeersRemote = 48, idlePeersRemote = 0, warmPeersRemote = 3, hotPeersRemote = 0})
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:00:18.19 UTC] Chain extended, new tip: ef307a14ed7c2ba04a6db1b28d66c71978073a5e6b8b935f35e8f766e0508318 at slot 149091327
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:00:42.23 UTC] Chain extended, new tip: 60ae9cbc08caaf1b918431fcf94a8a1a792a349dc321566158a2bd42d2b43d2b at slot 149091351
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:01:00.36 UTC] Chain extended, new tip: 40954a905889d6efc1d8922dabd54068e393df5b8a9811ae968528bd3e475579 at slot 149091369
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:01:17.24 UTC] Chain extended, new tip: 7e19695051284ee6f2d8486bceb87779292dfbce896ef62817d8ff3850f36f0d at slot 149091386
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:01:29.18 UTC] Chain extended, new tip: 523a11b7aa1c5f2c3dfda023a0ae6795c15182ce10c583d0b0c785e2e18e5359 at slot 149091398
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:01:47.27 UTC] Chain extended, new tip: d57755e291f18fd4e4feaa1623de70efe69c4454184a54e5d715286243905b8f at slot 149091416
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:01:52.66 UTC] Chain extended, new tip: f8021ad7e62c2f8944e02a928c3ceddb71f2d2891ee84d482738f908dc208a80 at slot 149091421
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:02:13.19 UTC] Chain extended, new tip: 6757c6c2cb7ed4db84b49b252007086070dd48dd2e559060d71a9861d2ec8911 at slot 149091442
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:02:16.56 UTC] Chain extended, new tip: 5c1b81ee9b13be0ded5ff5a6d5c472475f428810d32817152ed452bfcdafb695 at slot 149091445
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:02:26.12 UTC] Chain extended, new tip: 6114f9f6167b1f8f7eff506a44fc0f94e2fc164eeed7740216556790262e07dd at slot 149091455
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:02:29.29 UTC] Chain extended, new tip: 84019fc25920e1fdc62996e5b5cd02d2bb45db555aa23a330137fa873900e3f8 at slot 149091458
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:02:42.10 UTC] Chain extended, new tip: 3053e60cc3e85b61fc248ebcddba62a9263113d248542a61049da131f6b2229e at slot 149091471
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:03:04.55 UTC] Chain extended, new tip: 8db564820eb62f459172818a0f38c07a9e0ee8b5d34ecec2c1773db1a4aadb56 at slot 149091493
[4a500528:cardano.node.ChainDB:Notice:139] [2025-02-27 12:03:16.10 UTC] Chain extended, new tip: 8bf427dae1285300784b6635d1bb86e06eeee0acd09c97330938c92724cf9ba7 at slot 149091505

There will only be transactions in your mempool if other nodes submit transactions to your node, if they choose your node as one of their upstream nodes.

For a node that is not the relay of a pool and not advertised at all, that is rather unlikely. Maybe, it worked for a limited amount of time due to some peer to peer stuff, but I would not expect it.

The mempool is local to each individual node and it is not the same across the network at all. (If it would be possible to get a consensus on what a global mempool should look like, we wouldn’t have to do all the effort to get a consensus on what the chain looks like.)

4 Likes

Thanks for the explanation! That makes a lot of sense. I’m currently working on a wallet watcher, a tool that monitors transactions sent and received by specific wallets. To do this efficiently, I need real-time access to transactions.

I understand now that the mempool is local to each node and that my node will only see transactions if it’s chosen as an upstream peer. My goal was to use a custom node (instead of Blockfrost) to optimize transaction detection speed, but I realize now that most other tools use Blockfrost likely because a standalone node isn’t guaranteed to see all transactions.

A few questions:

  1. How can I advertise my relay? Right now, my node isn’t widely connected, and I assume that’s why it rarely sees transactions in its mempool. Is there a way to increase the chances of my node being chosen as an upstream peer?

  2. Node & Ogmios reliability – My setup works for about 2 days, but then my node (or Ogmios) randomly stops responding for a few hours before working again. Are there any configuration tweaks that might improve uptime and reduce the chance of missing transactions?

  3. Alternative approaches – Given my use case, is relying on a custom node even viable? Or should I be looking into a hybrid approach (e.g., using Blockfrost alongside my node)?

I’d appreciate any guidance from experienced Cardano devs. Thanks again for your insights!

1 Like

Not even Blockfrost is guaranteed to see all transactions that are submitted to some mempool. It probably is central enough to see most, but that’s not how it’s supposed to work.

Transactions that finally end up in a block may have taken an arbitrary path to the block producer that put them on-chain in the end.

So, I’d say it doesn’t make much sense to try to monitor the mempool of Cardano because that concept just does not exist at all.

2 Likes

So are there any changes in the configuration file I could make which can hopefully increase my chances at least and advertise to more? I understand it might miss but I would like to explore more with this node

I have purchased a powerful VPS already to host the node so I’d like to test how much I can make it work

I don’t think so. I’ve read conflicting information about how the nodes actually choose their hot peers – they either choose based on the stake associated with that node (which is only possible if it is the registered relay of a stake pool) or based on how often it delivers the newest blocks to them first. That’s both not something you can influence with just configuration.

What exactly is the use case? Why is it not enough to watch the transactions in the latest blocks that actually make it on-chain?

(If you want to actually track the state of those wallets, you’d still have to handle possible roll-backs, but if you use information from a mempool, you’d also have to handle transactions that never make it into a block.)

1 Like

Hey there!

I’m looking to optimize my Cardano node for catching as many unprocessed transactions as possible. I’ve noticed my node’s performance is inconsistent - it had 49 incoming connections for 4-5 days, but now it’s back down to just 4 connections and barely receiving any transactions.

I’ve already tried adding my friends’ nodes to the localRoots and accessPoints array, which initially seemed to help jumpstart the node. But now it’s become inactive again.

My primary goal is speed - I want to detect token mints and transactions as quickly as possible. I’m fine with missing some transactions, as I can always fall back to confirmed blocks. But I want to catch as much real-time activity as I can.

Any practical tips or configuration tweaks that could help me achieve this? I’m running a powerful VPS and really want to optimize my node’s performance.