Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Make observability optional #12

Merged
merged 2 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,6 @@ services:
- "127.0.0.1:8547:8547"
- "127.0.0.1:8548:8548"
- "127.0.0.1:9642:9642"
- "127.0.0.1:6070:6070"
- "127.0.0.1:6071:6071"
volumes:
- "seqdata:/home/user/.arbitrum/local/nitro"
- "l1keystore:/home/user/l1keystore"
Expand Down Expand Up @@ -236,8 +234,6 @@ services:
ports:
- "127.0.0.1:8147:8547"
- "127.0.0.1:8148:8548"
- "127.0.0.1:6170:6070"
- "127.0.0.1:6171:6071"
volumes:
- "poster-data:/home/user/.arbitrum/local/nitro"
- "l1keystore:/home/user/l1keystore"
Expand Down Expand Up @@ -286,8 +282,6 @@ services:
ports:
- "127.0.0.1:8247:8547"
- "127.0.0.1:8248:8548"
- "127.0.0.1:6270:6070"
- "127.0.0.1:6271:6071"
volumes:
- "validator-data:/home/user/.arbitrum/local/nitro"
- "l1keystore:/home/user/l1keystore"
Expand Down Expand Up @@ -319,8 +313,6 @@ services:
entrypoint: /usr/local/bin/nitro-val
ports:
- "127.0.0.1:8949:8549"
- "127.0.0.1:6370:6070"
- "127.0.0.1:6371:6071"
volumes:
- "config:/config"
command: --conf.file /config/validation_node_config.json --metrics --pprof --metrics-server.addr 0.0.0.0 --pprof-cfg.addr 0.0.0.0
Expand Down
2 changes: 1 addition & 1 deletion test-node.bash
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ batchposters=1
devprivkey=b6b15c8cb491557369f3c7d2c287b053eb229daa9c22138887752191c9520659
l1chainid=1337
simple=true
monitor=true
monitor=false
while [[ $# -gt 0 ]]; do
case $1 in
--init)
Expand Down
Loading