Skip to content

Commit

Permalink
modify extension
Browse files Browse the repository at this point in the history
  • Loading branch information
salmanaslam25 committed Nov 12, 2024
1 parent adde534 commit c856385
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import org.apache.streampipes.processors.enricher.jvm.processor.limitsalert.SensorLimitAlertProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.limitsenrichment.QualityControlLimitsEnrichmentProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.math.MathOpProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.math.SigmaOpProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.math.staticmathop.StaticMathOpProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.trigonometry.TrigonometryProcessor;
import org.apache.streampipes.processors.enricher.jvm.processor.valuechange.ValueChangeProcessor;
Expand All @@ -50,7 +51,9 @@ public List<IStreamPipesPipelineElement<?>> pipelineElements() {
new StaticMathOpProcessor(),
new TrigonometryProcessor(),
new ValueChangeProcessor(),
new MathExpressionProcessor()
new MathExpressionProcessor(),
// New processor added to perform sigma operation
new SigmaOpProcessor()
);
}

Expand Down

0 comments on commit c856385

Please sign in to comment.