I want to use dashboard text input in custom search command.
Please tell me some tips such as how to use and sentences.
I have set up a text input field in the dashboard as "sysCableNAme_token", and I want to pass the value to a custom search command and use it.
Search with token and custom search commands are successful separately.
Thank you.
| yourCustomCommand $sysCableNAme_token$
Thank you jkat54 ♦ !
We received the value in the following Python.
import sys
args = sys.argv
print(args[0])
print(args[1])