From 70dbd9dd27ecf324758b935804c2ecd3df714918 Mon Sep 17 00:00:00 2001 From: kant777 <61204489+kant777@users.noreply.github.com> Date: Thu, 21 Dec 2023 04:31:22 -0800 Subject: [PATCH] Update entrypoint.sh --- geth-poa/entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/geth-poa/entrypoint.sh b/geth-poa/entrypoint.sh index e0bd863beb44..1f760347ff93 100644 --- a/geth-poa/entrypoint.sh +++ b/geth-poa/entrypoint.sh @@ -73,6 +73,9 @@ if [ "$GETH_NODE_TYPE" = "bootnode" ]; then --metrics \ --metrics.addr=0.0.0.0 \ --metrics.port=6060 \ + --pprof \ + --pprof.addr=0.0.0.0 \ + --pprof.port=61601 \ --nodekey $GETH_DATA_DIR/boot.key \ --netrestrict $NET_RESTRICT \ --nat extip:$NODE_IP \ @@ -108,6 +111,9 @@ elif [ "$GETH_NODE_TYPE" = "signer" ]; then --metrics \ --metrics.addr=0.0.0.0 \ --metrics.port=6060 \ + --pprof \ + --pprof.addr=0.0.0.0 \ + --pprof.port=61601 \ --ws \ --ws.addr=0.0.0.0 \ --ws.port="$WS_PORT" \