From 5c4d8299bc1b911bcb3c81ffbd50c45286bc26a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Fri, 5 Apr 2024 15:08:53 +0200 Subject: [PATCH] docs: rephrase some settings description --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.