All Apps and Add-ons

How to build a table module drilldown from one column in a table to a timechart?

subtrakt
Contributor

Hi,

Any recommendations on how I should build out drill-down to a timechart sourced/linked from one column in a table?

  1. The table column in the is testcolumn4.

  2. The drilldown would be sourced from testfield10 in the hiddensavedsearch.

  3. Drilldown To : index=index1 "testfield10" | timechart count by testfield10

  4. Destination: http://testbox:8000/en-US/app/test1/search


    True
    test1


    results


    3
    results

    100


0 Karma

sideview
SplunkTrust
SplunkTrust

So to recap, you have a table with a number of fields. One of these fields is "testcolumn4". You want the drilldown to basically pass only the value of this column. In your example the value is "testfield10".

And you want to send the user to the default search view and run a search that includes the value from the clicked-on row, "testfield10"?

If that's the case, here is sample XML to do that. I'm also passing the drilldown timerange for you, because that's a best practice. And I took the liberty of replacing some core Splunk modules with the newer Sideview equivalent.

<module name="SavedSearch"  layoutPanel="panel_row1_col1" group="test1" autoRun="True">
  <param name="useHistory">True</param>
  <param name="name">test1</param>
  <module name="JobProgressIndicator" />
  <module name="Export">
      <param name="exportType">results</param>
  </module>
  <module name="Pager">
    <module name="Table" >
      <module name="Redirector">
        <param name="url">search</param>
        <param name="arg.q">index=index1 $row.fields.testcolumn4$ | timechart count by testfield10</param>
        <param name="arg.earliest">$search.timeRange.earliest$</param>
        <param name="arg.latest">$search.timeRange.latest$</param>
      </module>
    </module>
  </module>
Get Updates on the Splunk Community!

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...