Dashboards & Visualizations

Is it possible to use a scheduled report as the base search in a dashboard?

sylbaea
Communicator

Hello,

I am using Splunk 6.5

I would like to leverage scheduled report capability to speed up dashboard rendering.

  1. I have a complex report making a search like search (...) | table A, B, C where (...) is a complex query made of dedup, lookup, eval, etc. commands.
  2. I scheduled this report to be computed every hour
  3. I check I get the expected result
  4. Then I try to define this scheduled search as parent search of a dashboard like following...

    <form>
      <search id="CurrentTickets" ref="my report">
      </search>
        (...)
              <single>
            <search base="CurrentTickets">
              <query>stats count by A</query>
            </search>
          </single>
        (...)
    

    When I try to display the dashboard, it does not display anything (trying to search forever).
    On the other hand, if I replace the parent search by:


    search (...) | table A, B, C

    In this case, it displays as expected, but of course not with the expected performance as it does computer real-time my search.

Is it possible to combine a scheduled report with parent search concept?

Regards.

Sylvain

0 Karma

rlacher
Explorer

I was Googling around for this same thing and found your post. Swapping ref and id worked for me, strangely.

<search ref="my report" id="CurrentTickets">
    <earliest>$TOKEN_TIME.earliest$</earliest>
    <latest>$TOKEN_TIME.latest$</latest>
</search>

I tried using query tags as well per cmerriman's answer, but the search wouldn't fire off until I removed them.

cmerriman
Super Champion

try adding a query tag:

<search id="CurrentTickets" ref="my report">
<query> fields *</query>
       </search>

sylbaea
Communicator

Thanks for the suggestion... Strangely, with this change, the panels in the dashboard starts to render their content but very very slow, even slower than when the search is executed live.

0 Karma

cmerriman
Super Champion

possibly try to do a fields a, b, c instead of fields * in case it's bringing back unexpected fields?

0 Karma

sylbaea
Communicator

I tried, same result unfortunately.

0 Karma

robertlynch2020
Influencer

did you get this to work in the end?

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...