From 070d3d9ff1c06dc98af800e7c091bd8703ad55da Mon Sep 17 00:00:00 2001 From: Piotr Konopka Date: Tue, 12 Nov 2024 09:49:49 +0100 Subject: [PATCH] Add missing "aggregators" key in the config documentation --- doc/Advanced.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/Advanced.md b/doc/Advanced.md index 9800958c16..bb70e6874e 100644 --- a/doc/Advanced.md +++ b/doc/Advanced.md @@ -1389,6 +1389,9 @@ This is the global structure of the configuration in QC. }, "checks": { + }, + "aggregators": { + }, "postprocessing": { @@ -1401,7 +1404,7 @@ This is the global structure of the configuration in QC. } ``` -There are four QC-related components: +There are six QC-related components: - "config" - contains global configuration of QC which apply to any component. It is required in any configuration file. - "tasks" - contains declarations of QC Tasks. It is mandatory for running topologies with Tasks and @@ -1409,6 +1412,7 @@ There are four QC-related components: - "externalTasks" - contains declarations of external devices which sends objects to the QC to be checked and stored. - "checks" - contains declarations of QC Checks. It is mandatory for running topologies with Tasks and Checks. +- "aggregators" - contains declarations of QC Aggregators. It is not mandatory. - "postprocessing" - contains declarations of PostProcessing Tasks. It is only needed only when Post-Processing is run.