From 3746a02d312f19ee074d796f3ab4ef4710258953 Mon Sep 17 00:00:00 2001 From: madumas Date: Fri, 4 Nov 2022 11:27:04 -0400 Subject: [PATCH] docs: log db instead of graph-node db Signed-off-by: madumas --- README.md | 8 ++++---- autoagora_processor/main.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7f1d909..782b07f 100644 --- a/README.md +++ b/README.md @@ -83,13 +83,13 @@ options: --rabbitmq-password RABBITMQ_PASSWORD Password to use for the GQL logs RabbitMQ queue. [env var: RABBITMQ_PASSWORD] (default: guest) --postgres-host POSTGRES_HOST - URL of the postgres instance use by the graph-nodes. [env var: POSTGRES_HOST] (default: None) + Host of the postgres instance storing the logs. [env var: POSTGRES_HOST] (default: None) --postgres-database POSTGRES_DATABASE - Name of the graph-node database. [env var: POSTGRES_DATABASE] (default: None) + Name of the logs database. [env var: POSTGRES_DATABASE] (default: None) --postgres-username POSTGRES_USERNAME - Username for the graph-node databse. [env var: POSTGRES_USERNAME] (default: None) + Username for the logs databse. [env var: POSTGRES_USERNAME] (default: None) --postgres-password POSTGRES_PASSWORD - Password for the graph-node database. [env var: POSTGRES_PASSWORD] (default: None) + Password for the logs database. [env var: POSTGRES_PASSWORD] (default: None) --log-level {DEBUG,INFO,WARNING,ERROR,CRITICAL} [env var: LOG_LEVEL] (default: WARNING) ``` diff --git a/autoagora_processor/main.py b/autoagora_processor/main.py index 09b7693..ec89b68 100644 --- a/autoagora_processor/main.py +++ b/autoagora_processor/main.py @@ -85,25 +85,25 @@ "--postgres-host", env_var="POSTGRES_HOST", required=True, - help="URL of the postgres instance use by the graph-nodes.", + help="Host of the postgres instance storing the logs.", ) argsparser.add_argument( "--postgres-database", env_var="POSTGRES_DATABASE", required=True, - help="Name of the graph-node database.", + help="Name of the logs database.", ) argsparser.add_argument( "--postgres-username", env_var="POSTGRES_USERNAME", required=True, - help="Username for the graph-node databse.", + help="Username for the logs database.", ) argsparser.add_argument( "--postgres-password", env_var="POSTGRES_PASSWORD", required=True, - help="Password for the graph-node database.", + help="Password for the logs database.", ) argsparser.add_argument( "--log-level",