Visualize Library - Tools - Controls have wrong fields in filter section

Hello everyone.
I tried to add some filterthe s into visualization section and like you the see on screen I selecthe ted in controls panel on the right side Index patter apm-*-transaction and I tried to add in filter url.full : reportManager or url.fragment but those fields are not visible in drop down.

After those attempts I add a filter as a DSL query :

{
  "query": {
    "bool": {
      "filter": [
        {
          "bool": {
            "minimum_should_match": 1,
            "should": [
              {
                "query_string": {
                  "fields": [
                    "url.full"
                  ],
                  "query": "*reportManager*"
                }
              }
            ]
          }
        }
      ],
      "must": [],
      "must_not": [],
      "should": []
    }
  }
}

But this wasn't help to retrieve correct values in dropdown.
I checked the saved objects section and how it looks like there :


I followed those examples :

Can someone help me with this :slight_smile:
I am wondering if this is a bug ? or I missed something in configuration.

Thanks in advance.

I assume you are in Kibana 7.x. Check this issue and comments where the same behavior is described.

In the new version of the controls for 8.x you cannot specify filters for the controls visualization.

The ability to pre-filter the new Controls is being considered for phase III of the Controls project. The issue related to this enhancement request is here

1 Like

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