Hi, Please help,
I have been struggling with this for a few days.
How can I match a numeric field against a long list of numbers?
Would it be best to use grok or ruby?
I can do it for one but there must be a more elegant way than this.
My match list is non linear so I cannot use greater than or any of the other operators.
if [filed] == 9991 {
...
} else if [field] == 5678 {
...
}
} else if [field] == 91011 {
...
}
} else if [field] == 121314 {
...
} else {
...
}