Im trying to parse a dynamic text using logstash and i encounter this problem:
For example, take a look at this text:
number(s) 1
In case i have only one number i can easily put it into a variable and the parsing would look like this:
grok {
match => [ "message", "number(s) %{NUMBER:NumberValue}" ]
}
But how can i dynamically parse more than one number into the same variable(as a list of integers)? for example:
number(s) 1 2 3