Hi all,
One of the panels in my dashboard will display events based on input token (tkn.folder), I called this panel as panel_A.
In panel_A, token setting is
Token=tkn.folder
Token Prefix=Folder like "
Token Suffix="
I hope to use this token value which is the input for panel_A into another panel, named as panel_B in the same dashboard as a subsearch. However, it didn't work.
I use these code in panel_B as subsearch to restrict the LOG_ID I need to analyze.
[| search index=my_index
| lookup folder_list.csv LOG_ID OUTPUT Folder
| where ($tkn.folder$)
| fields + LOG_ID]
After I input a string for that token in panel_A, although panel_A works normally and can generate its output based on the input.
The panel_B keeps displaying
Searching is waiting for input..
Is there any way to make panel_B or more panels to capture the input for panel_A?
Thank you very much.