Static field via pipeline

is there a way to set a static field value

e.x.
set_field(“logfile”,“asp_http”)

sonething liket that logically wont work, but how can sonething like this can be realized.

Yes, exactly that line in a rule which always applies.

Example:

rule "static-field"
when
  true
then
  set_field(“logfile”,“asp_http”);
end
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.