diff --git a/docs/configuration.md b/docs/configuration.md index e6014f4..38aeef4 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -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.