OR filter on dashboard in Kibana 4

前端 未结 4 1686
滥情空心
滥情空心 2021-02-08 04:57

I want to create a dashboard which shows information about a limited set of request values :

request:(\"/path1\" OR \"/path2\" OR \"/path3\")

W

4条回答
  •  别那么骄傲
    2021-02-08 05:28

    Definitely you can add OR filters in your dashboard. As dashboard is created from saved visualizations, In your visualization you can add filter containing OR which will reflect such data.

    As per my understanding of your question I am posting my answer (Feel free to correct me):-

    1. Clicking on pie chart under visualize tab (Create a new visualization).
    2. Selecting a search source - From a new search
    3. Go to Split Slices, select aggregation as filters. Under Query1 enter the filter you want to apply such as request:("/path1" OR "/path2") Click on add Filter and add Query2 as: request:("/path2" OR "/path3")
      1. Click on Apply to view the changed pie chart as per filters.
      2. Save Visualization by selecting it from toolbar (2nd option beside search bar).
      3. Go to Dashboard & Click on Add Dashboard & select your saved visualization which will reflect your pie chart.

    Hope it answers your question :)

提交回复
热议问题