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




Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...