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

Nethermind set metrics host #1761

Merged
merged 2 commits into from
Feb 21, 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
6 changes: 5 additions & 1 deletion ethd
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,11 @@ nag_os_version() {


pull_and_build() {
dodocker system prune --force
if [[ "${__source_ver}" -lt "9" ]]; then # Aggressive prune to work around Docker grabbing old clients
dodocker system prune --force -a
else
dodocker system prune --force
fi
docompose --profile tools pull
source_build
docompose --profile tools build --pull
Expand Down
2 changes: 2 additions & 0 deletions nethermind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ services:
- "true"
- --Metrics.PushGatewayUrl
- ""
- --Metrics.ExposeHost
- 0.0.0.0
- --Metrics.ExposePort
- "6060"
- --Pruning.FullPruningCompletionBehavior
Expand Down