简体   繁体   中英

Using Splunk Dashboard how to create a filter for each column of a table

I have a table that I saved as a report and created a dashboard that displays the table. I want to add inputs for each field on the table to be able to filter the table data. This is the table在此处输入图像描述

I added a text box as the first input在此处输入图像描述

How do I link the text box that has a token called purchCostReferenceToken to the purchCostReference column on the table?

Strictly speaking, the input and the table are not related. The input controls the search and the table is one way to represent the results of the search.

To control the search, use the input token in it. Use dollar signs to denote the token. For example,

index=foo purchCostReference=$purchCostReferenceToken$ | ...

You will need a default value for the token to make this work when no input is provided. Usually, that value is * .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM