From f5c4d38a7ac4cd25eae9aeb0c873fb951e2a13e4 Mon Sep 17 00:00:00 2001 From: vitor-aignosi Date: Fri, 29 Aug 2025 16:28:49 -0300 Subject: [PATCH] SIENTIAPDE-1084 Refactor README.md to streamline the Scouter Workflow Architecture section by consolidating the flowchart into a single line format for improved readability and clarity. --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 84437a2..d2fd466 100644 --- a/README.md +++ b/README.md @@ -72,15 +72,11 @@ The **Scouter** workflow is the main entry point for data processing pipelines. } ``` -## Scouter Workflow Architecture - -## Fluxo do Scouter Workflow +#### Architecture ```mermaid -flowchart TD - A[1. get_last_data_timestamp] --> B[2. load_latest_data] - B --> C[3. put_last_data_timestamp] - C --> D[4. core_scouter ⬛] +flowchart LR + A[1. get_last_data_timestamp] --> B[2. load_latest_data] --> C[3. put_last_data_timestamp] --> D[4. core_scouter ⬛] A -.-> Redis[(Redis)] B -.-> MongoDB[(MongoDB)]