chore: adding maximum of 5 retries on failure

This commit is contained in:
Gabriel Mermelstein 2023-10-03 15:34:52 +03:00
parent 9f2c78db50
commit da1baf8ca1
No known key found for this signature in database
GPG Key ID: 306734DDCE542DCD
2 changed files with 33 additions and 6 deletions

View File

@ -36,4 +36,31 @@ There are multiple environment variables you can configure to modify behaviour o
* `NWAKU_IMAGE` - the image you want to use for the nwaku container (e.g. `NWAKU_IMAGE=statusteam/nim-waku:v0.19.0-rc.0`)
* `DOMAIN` - domain name pointing to the IP address of your node, when configured the run script will request SSL certs from Let's Encrypt and run Waku node with WebSockets Secure (WSS) options enabled (e.g. `DOMAIN=waku.example.com`)
* `NODEKEY` - this env variable allows you to provide a node key as described in [operators documentation](https://github.com/waku-org/nwaku/blob/master/docs/operators/how-to/configure-key.md) (e.g. `NODEKEY=9f439983aa4851346cfe6e17585e426f482871a43626812e23490895cd602c11`)
* `EXTRA_ARGS` - this variable allows you to specify additional or overriding CLI option for the Waku node which will be appended to the `wakunode2` command. (e.g. `EXTRA_ARGS="--store=false --max-connections=3000`)
* `EXTRA_ARGS` - this variable allows you to specify additional or overriding CLI option for the Waku node which will be appended to the `wakunode2` command. (e.g. `EXTRA_ARGS="--store=false --max-connections=3000`)
## Log monitoring and troubleshooting
When running the container in detached mode, it's important to note that while notifications about successful container startup are received, any errors occurring during runtime won't be printed to the terminal.
To ensure the proper functioning of the container, it is strongly recommended to monitor the logs. Pay special attention during the first minute of runtime to confirm that the node has spun up successfully.
To check the status of the node, visit [http://localhost:8003/health](http://localhost:8003/health)
For real-time logs of the 'nwaku' service, use the following command:
```console
docker-compose logs nwaku -f
```
In general, to view logs of any service running on Docker Compose, execute:
```console
docker-compose logs <service> -f
```
To identify different services currently running, refer to the "SERVICE" column displayed when executing:
```console
docker-compose ps
```
![services](https://i.ibb.co/ZXG3Ld9/image.png)

View File

@ -42,7 +42,7 @@ services:
# github.com/waku-org/nwaku/releases
image: ${NWAKU_IMAGE:-statusteam/nim-waku:v0.20.0}
restart: on-failure
restart: on-failure:5 # Retry up to 5 times
ports:
- 30304:30304/tcp
- 30304:30304/udp
@ -75,7 +75,7 @@ services:
- --config.file=/etc/prometheus/prometheus.yml
ports:
- 127.0.0.1:9090:9090
restart: on-failure
restart: on-failure:5
depends_on:
- postgres-exporter
- nwaku
@ -94,7 +94,7 @@ services:
- ./monitoring/configuration/customizations/custom-logo.png:/usr/share/grafana/public/img/fav32.png:Z
ports:
- 127.0.0.1:3000:3000
restart: on-failure
restart: on-failure:5
depends_on:
- prometheus
@ -102,7 +102,7 @@ services:
# This service is used when the Waku node has the 'store' protocol enabled
# and the store-message-db-url is set to use Postgres
image: postgres:15.4-alpine3.18
restart: on-failure
restart: on-failure:5
environment:
<<: *pg_env
volumes:
@ -119,7 +119,7 @@ services:
postgres-exporter:
# Service aimed to scrape information from Postgres and post it to Prometeus
image: quay.io/prometheuscommunity/postgres-exporter:v0.12.0
restart: on-failure
restart: on-failure:5
<<: *pg_exp_env
volumes:
- ./monitoring/configuration/postgres-exporter.yml:/etc/pgexporter/postgres-exporter.yml:Z