From 93fe4ea718d7bffa7ca73d996c023a5a4a0e7a5a Mon Sep 17 00:00:00 2001
From: Waleed Akbar <wakbar@cttc.es>
Date: Tue, 27 Aug 2024 15:31:23 +0000
Subject: [PATCH] change in Analytics proto file.

- AnalyzerId is added in "Analyzer" message type.
---
 proto/analytics_frontend.proto | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/proto/analytics_frontend.proto b/proto/analytics_frontend.proto
index 096c1ee03..801fcdbc4 100644
--- a/proto/analytics_frontend.proto
+++ b/proto/analytics_frontend.proto
@@ -35,10 +35,11 @@ enum AnalyzerOperationMode {
 }
 
 message Analyzer {
-  string                     algorithm_name       = 1; // The algorithm to be executed
-  repeated kpi_manager.KpiId input_kpi_ids        = 2; // The KPI Ids to be processed by the analyzer
-  repeated kpi_manager.KpiId output_kpi_ids       = 3; // The KPI Ids produced by the analyzer
-  AnalyzerOperationMode      operation_mode       = 4; // Operation mode of the analyzer
+  AnalyzerId                 analyzer_id          = 1;
+  string                     algorithm_name       = 2; // The algorithm to be executed
+  repeated kpi_manager.KpiId input_kpi_ids        = 3; // The KPI Ids to be processed by the analyzer
+  repeated kpi_manager.KpiId output_kpi_ids       = 4; // The KPI Ids produced by the analyzer
+  AnalyzerOperationMode      operation_mode       = 5; // Operation mode of the analyzer
 
   // In batch mode...
   float                      batch_min_duration_s = 5; // ..., min duration to collect before executing batch
-- 
GitLab