docs: rephrase some settings description

This commit is contained in:
Alexis Métaireau 2024-04-05 15:08:53 +02:00 committed by Luc Didry
parent 5e757f1861
commit 5c4d8299bc
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C

View file

@ -34,14 +34,14 @@ ARGOS_DATABASE_URL = "postgresql://argos:argos@localhost/argos"
#### DB_POOL_SIZE
#### DB_MAX_OVERFLOW
These two help you configure the size of the pool, and the max overflow (until when do we accept a new connection ?) These are documented [in the SQLAlchemy docs in greater details](https://docs.sqlalchemy.org/en/20/core/pooling.html#sqlalchemy.pool.QueuePool.params.pool_size)
You configure the size of the database pool of connection, and the max overflow (until when new connections are accepted ?) These are documented [in the SQLAlchemy docs in greater details](https://docs.sqlalchemy.org/en/20/core/pooling.html#sqlalchemy.pool.QueuePool.params.pool_size)
```bash
DB_POOL_SIZE = 10
DB_MAX_OVERFLOW = 20
```
## Checks configuration
## Argos "checks" configuration
Argos uses a YAML configuration file to define the websites to monitor and the checks to run on these websites.