Commit 8e9f2eaf authored by Waleed Akbar's avatar Waleed Akbar
Browse files

changes in Analyzer proto file.

- Assignement number was incorrect, 5 was assigned twice.
parent 93fe4ea7
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -42,10 +42,10 @@ message 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
  float                      batch_max_duration_s = 6; // ..., max duration collected to execute the batch
  uint64                     batch_min_size       = 7; // ..., min number of samples to collect before executing batch
  uint64                     batch_max_size       = 8; // ..., max number of samples collected to execute the batch
  float                      batch_min_duration_s = 6; // ..., min duration to collect before executing batch
  float                      batch_max_duration_s = 7; // ..., max duration collected to execute the batch
  uint64                     batch_min_size       = 8; // ..., min number of samples to collect before executing batch
  uint64                     batch_max_size       = 9; // ..., max number of samples collected to execute the batch
}

message AnalyzerFilter {