Passing multiple values in Kibana - ‘add filter’ - ‘is one of’

The is one of field doesn't support copy pasting values. But I have some suggestions.

  1. In the search bar, you can use:
    • Lucene syntax: <field name>:(value1 OR value2 OR value3 ...), e.g. City:(Tokyo OR Barcelona)
    • KQL: <field name>:(value1 or value2), e.g. City:(Tokyo or Barcelona)
  2. Use Add filter, then Edit as Query DSL and use:
    {
      "query": {
        "terms": {
          "field name": [ "value1", "value2", "value3" ... ]
        }
      }
    }
    

You could open a Github issue with your suggestion to enhance the usability, to ask the support of copy/paste of comma or space separated values in the is one of filter.

1 Like