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(website): fix run a node guide prover logs #13421

Merged
merged 1 commit into from
Mar 22, 2023
Merged
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
10 changes: 5 additions & 5 deletions packages/website/pages/docs/guides/run-a-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,26 +111,26 @@ docker compose pull

To view the Docker logs, the following commands can be ran:

**View all logs**
###### View all logs

```sh
docker compose logs -f
```

\*\*View the prover image's logs
###### View the prover image's logs

```sh
docker compose logs -f taiko_client_prover
```

**View the L2 execution engine logs**
###### View the L2 execution engine logs

```sh
docker compose logs -f l2_execution_engine
```

**View the live data streams of your running containers (CPU/MEM USAGE %), and consumption of your machine's resources (add prefix "`docker stats -a`" to display all containers)**

###### View the live data streams of your running containers
This shows the CPU/MEM USAGE % and consumption of your machine's resources (add prefix "`docker stats -a`" to display all containers)
```sh
docker stats
```
Expand Down