A dashboard includes a table panel that shows recent errors. The analyst wants users to click on an error message and be taken to a search showing all events containing that error message within the same time range. Which configuration should be applied to the table panel?
Link to search with tokens maintains the time range and passes clicked value.
Why this answer
Setting 'Drilldown' to 'Link to search' allows you to configure a target search URL that includes a token for the clicked error message. When a user clicks a cell in the table, the token (e.g., `$click.value$`) is replaced with the actual value from that cell, and Splunk opens a new search using the same time range as the original dashboard, fulfilling the requirement exactly.
Exam trap
The trap here is that candidates confuse 'Drilldown' to 'Search' (which requires manual time range handling) with 'Link to search' (which automatically preserves the dashboard's time range), leading them to pick Option D incorrectly.
How to eliminate wrong answers
Option B is wrong because adding a token to the table panel and setting drilldown to 'Token' with value '$row.error_message$' is not a valid drilldown configuration; tokens are used for passing values between panels, not for navigating to a search. Option C is wrong because 'Custom' drilldown with JavaScript is deprecated and not recommended for simple navigation; it also bypasses Splunk's built-in time range preservation. Option D is wrong because setting 'Drilldown' to 'Search' with 'error_message="$click.value$"' does not automatically carry over the dashboard's time range; the search would run with the default time range unless explicitly configured, and the syntax should use `$click.value$` without quotes around the field name.