Hello, I have developed a relatively simple dashboard that measures the sentiment of RSS feeds that are indexed into my Splunk web version. Currently I am not able to get my Drilldown capability to work. I want the dashboard panels to work as follows: initial panel displays overall sentiment of all articles in a timechart that has drilldown capability. If someone wishes to see each individual event from a specific moment in time (they may be curious as to why sentiment is unusually high or low) they click on that moment in time, then the chart below populates a column chart that displays the sentiment of each article in that moment of time (y-axis would be sentiment and x axis would be article titles). My first panel works perfectly but my second column chart panel doesn't seem to respond to clicking on a column in the first. I have drilldown capability enabled. Here is my source code:
<chart>
<title>Sentiment Over Time</title>
<searchString>index = rss_2 | dedup link | sentiment imdb title | timechart avg(sentiment)</searchString>
<earliestTime>0</earliestTime>
<latestTime>now</latestTime>
<drilldown>
<set token="clicked_earliest">$earliest$</set>
<set token="clicked_latest">$latest$</set>
</drilldown>
</chart>
<chart>
<title>Individual Article Sentiment</title>
<searchString>index = rss_2 | dedup link | sentiment imdb title | stats avg(sentiment)</searchString>
<earliestTime>$earliest$</earliestTime>
<latestTime>$latest$</latestTime>
</chart
Any help would be greatly appreciated
... View more