Path of query

This is one of my filter in my watcher

"filter": [
                {
                  "range": {
                    "@timestamp": {
                      "gte": "now-30m"
                    }
                  }
                },
                {
                  "term": {
                    "log.file.path.tree_reversed": "channel_server.log"
                  }
                }
              ]

if I want to set several path of "log.file.path.tree_reversed" how can I do?
after I finish it how can I check it?

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