All Apps and Add-ons

ConvertToDrillDownSearch

Nerz
Explorer

I have a slight quandary with the ConvertToDrillDownSearch:

I have a summarised graph of the data i want on a specific sourcetype, I wish to click on this summary and drill down onto another sourcetype with the raw data in.

Can you drilldown to the flashtimeline and change the search to be that of another index/sourcetype , can this be done with a Hiddensaved Search?

here is an example of what i have:


line
zero

false
400px
5000
100%

<!--Can i insert some for of hidden search here to drilldown onto another index?-->

flashtimeline



Tags (1)
1 Solution

sideview
SplunkTrust
SplunkTrust

You're using Sideview Utils only to get the $search.timeRange.earliest$ keys, but not for anything else, which is very unusual. It means that you're really not taking advantage of any of the Sideview Utils benefits.

However, if you're only using the older 1.3.X versions of Sideview Utils, then this makes sense because the JSChart module was not patched yet back then.

Anyway, here's a version of your view where I've removed the Splunk modules HiddenSearch, ConvertToIntention and ViewRedirector modules and replaced them with a single Sideview Redirector module.

<module name="TimeRangePicker"> layoutPanel="panel_row3_col2">
  <param name="searchWhenChanged">true</param>

  <module name="Search">
    <param name="search"> index=generic sourcetype=generic_results_summary | timechart sum(generic_value) by generic_name

     <module name="HiddenChartFormatter">
      <param name="chart">line</param>
      <param name="chart.nullValueMode">zero</param>

      <module name="JSchart">
        <param name="enableresize">false</param>
        <param name="height">400px</param>
        <param name="maxResultCount">5000</param>
        <param name="width">100%</param>

        <module name="Redirector">
          <param name="url">flashtimeline</param>
          <param name="arg.earliest">$search.timeRange.earliest$</param>
          <param name="arg.latest">$search.timeRange.latest$</param>
          <param name="arg.q">search index=generic sourcetype="generic_results_raw" $click.searchTerms$</param>
        </module>
      </module>
    </module>
  </module>
</module>

I also added some linebreaks to make it easier to read. So a 30 line chunk of XML is now only 22 lines.

Note however that this relies on features in Sideview Utils that are only in Sideview Utils 2.1+. So get the latest version (2.2.2) from the Sideview site ( http://sideviewapps.com )

View solution in original post

sideview
SplunkTrust
SplunkTrust

You're using Sideview Utils only to get the $search.timeRange.earliest$ keys, but not for anything else, which is very unusual. It means that you're really not taking advantage of any of the Sideview Utils benefits.

However, if you're only using the older 1.3.X versions of Sideview Utils, then this makes sense because the JSChart module was not patched yet back then.

Anyway, here's a version of your view where I've removed the Splunk modules HiddenSearch, ConvertToIntention and ViewRedirector modules and replaced them with a single Sideview Redirector module.

<module name="TimeRangePicker"> layoutPanel="panel_row3_col2">
  <param name="searchWhenChanged">true</param>

  <module name="Search">
    <param name="search"> index=generic sourcetype=generic_results_summary | timechart sum(generic_value) by generic_name

     <module name="HiddenChartFormatter">
      <param name="chart">line</param>
      <param name="chart.nullValueMode">zero</param>

      <module name="JSchart">
        <param name="enableresize">false</param>
        <param name="height">400px</param>
        <param name="maxResultCount">5000</param>
        <param name="width">100%</param>

        <module name="Redirector">
          <param name="url">flashtimeline</param>
          <param name="arg.earliest">$search.timeRange.earliest$</param>
          <param name="arg.latest">$search.timeRange.latest$</param>
          <param name="arg.q">search index=generic sourcetype="generic_results_raw" $click.searchTerms$</param>
        </module>
      </module>
    </module>
  </module>
</module>

I also added some linebreaks to make it easier to read. So a 30 line chunk of XML is now only 22 lines.

Note however that this relies on features in Sideview Utils that are only in Sideview Utils 2.1+. So get the latest version (2.2.2) from the Sideview site ( http://sideviewapps.com )

Nerz
Explorer

hi all,
I found my solution i hope this helps someone else!

layoutpanel="panel_row3_col2">
true

index=generic sourcetype=generic_results_summary | timechart sum(generic_value) by generic_name

line
zero

false
400px
5000
100%

index=generic sourcetype="generic_results_raw"


addterm

$search.timeRange.earliest$
$search.timeRange.latest$
$click.name2$



flashtimeline




Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...