You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/operators/operator-node/maintenance/troubleshooting.md
+19-18Lines changed: 19 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,8 @@ ssv-pulse:
95
95
# - '--network=holesky' # Add this if you run a Holesky Node
96
96
# - '--platform linux/arm64' # Add this if you run on an arm64 machine
97
97
networks:
98
-
- local-docker # Make sure network is the same as yours. Check with command docker network ls.
98
+
- host # This allows ssv-pulse to access any docker container hosted on the machine
99
+
# Alternatively, you can use your existing network instead. Check with docker network ls.
99
100
pull_policy: always
100
101
```
101
102
@@ -104,27 +105,29 @@ Then run `docker compose up ssv-pulse` to run the benchmark tool.
104
105
</TabItem>
105
106
<TabItem value="docker-run" label="docker run">
106
107
107
-
Use the following command to run the benchmark tool:
108
+
Use the following command to run the benchmark tool:
108
109
109
-
```bash
110
-
docker run --rm --pull=always --name ssv-pulse \
111
-
ghcr.io/ssvlabs/ssv-pulse:latest benchmark \
112
-
--consensus-addr=REPLACE_WITH_ADDR \
113
-
--execution-addr=REPLACE_WITH_ADDR \
114
-
--ssv-addr=REPLACE_WITH_ADDR \
115
-
--duration=60m
116
-
```
117
-
118
-
Replace the various addresses with the respective endpoints, e.g. http://lighthouse:5052, http://geth:8545, and SSV http://ssv_node:16000 (or your other SSVAPIPort).
119
-
120
-
If you run a Holesky Node you should add `--network=holesky` to the command.
110
+
```bash
111
+
docker run --rm --network=host --pull=always --name ssv-pulse \
112
+
ghcr.io/ssvlabs/ssv-pulse:latest benchmark \
113
+
--consensus-addr=REPLACE_WITH_ADDR \
114
+
--execution-addr=REPLACE_WITH_ADDR \
115
+
--ssv-addr=REPLACE_WITH_ADDR \
116
+
--duration=60m
117
+
```
121
118
122
-
If you run this on a arm64 machine you should add `--platform linux/arm64` to the command.
119
+
Replace the various addresses with the respective endpoints, e.g. `http://lighthouse:5052`, `http://geth:8545`, and SSV `http://ssv_node:16000` (or your other SSVAPIPort).
123
120
121
+
- If you run a Holesky Node you should add `--network=holesky` to the command.
122
+
- If you run this on a arm64 machine you should add `--platform linux/arm64` to the command.
124
123
</TabItem>
125
124
</Tabs>
126
125
127
-
The tool will run for 1 hour and provide you with results as a table. An example of output is below:
126
+
#### Benchmark results
127
+
128
+
The tool will run for 1 hour and provide you with results as a table.
129
+
130
+
On example below you can see low Peer connection on SSV Node, this most likely caused by closed 16000 port:
0 commit comments