We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 207ed14 commit b98ccdbCopy full SHA for b98ccdb
docs/filters/eval.md
@@ -12,8 +12,9 @@ Config using logstash format:
12
````
13
filter {
14
eval {
15
- field => delay
16
- operation => "x * 1000"
+ source_field => message
+ target_field => message
17
+ operation => "x * 100"
18
}
19
20
`````
@@ -32,6 +33,6 @@ filter {
32
33
34
Parameters:
35
-* ``field``: which field to work on.
36
-* ``operation``: javascript code to execute. The input field is in the ``x`` variable.
+* ``source_field``: which field to work on.
37
* ``target_field``: field to store the result. Default : source field.
38
+* ``operation``: javascript code to execute. The input field is in the ``x`` variable.
0 commit comments