diff --git a/pkg/messageProcessor/README.md b/pkg/messageProcessor/README.md index 07672bf..36ff8ed 100644 --- a/pkg/messageProcessor/README.md +++ b/pkg/messageProcessor/README.md @@ -22,6 +22,7 @@ New operations can be added to the message processor at runtime. Of course, they or some fields in a configuration file for the processing. The message processor uses the following configuration + ```json { "drop_messages": [ @@ -226,6 +227,7 @@ type MessageProcessor interface { } ``` + ### Syntax for evaluatable terms The message processor uses `gval` for evaluating the terms. It provides a basic set of operators like string comparison and arithmetic operations. @@ -254,9 +256,11 @@ Often the operations are written in JSON files for loading them at startup. In J - use `''` instead of `""` for strings - for the regexes, use `%` instead of `\` + For operations that should be applied on all messages, use the condition `true`. ### Overhead The operations taking conditions are pre-processed, which is commonly the time consuming part but, of course, with each added operation, the time to process a message -increases. Moreover, the processing creates a copy of the message. \ No newline at end of file +increases. Moreover, the processing creates a copy of the message. + diff --git a/pkg/messageProcessor/messageProcessor.go b/pkg/messageProcessor/messageProcessor.go index adfc0a3..9bcc54a 100644 --- a/pkg/messageProcessor/messageProcessor.go +++ b/pkg/messageProcessor/messageProcessor.go @@ -9,6 +9,7 @@ import ( lp "github.com/ClusterCockpit/cc-energy-manager/pkg/cc-message" cclog "github.com/ClusterCockpit/cc-metric-collector/pkg/ccLogger" lplegacy "github.com/ClusterCockpit/cc-metric-collector/pkg/ccMetric" + "github.com/expr-lang/expr" "github.com/expr-lang/expr/vm" )