All Apps and Add-ons

Saved Search links in dasboard

Starlette
Contributor

This is a returning question but I wonder whats the best way to handle this in sideview.
So i want to achive an overview of clickable links (saved searches) which render the flashtimeline...(same as rendering them from the menu)

0 Karma

sideview
SplunkTrust
SplunkTrust

Well, I was hoping to have a nice simple answer using the new Multiplexer module, and having it "Multiplex" an HTML module.

However with the need to URL-encode the searchterms and the need to use postProcess to get the other properties, this made it considerably more XML than I expected.

Nonetheless, the Multiplexer + HTML solution is idea #1:

<module name="Search" autoRun="True">
  <param name="search">| rest /servicesNS/admin/search/saved/searches</param>

  <module name="Pager">
    <module name="Multiplexer">
      <param name="field">title</param>
      <module name="PostProcess">
        <param name="search">search title="$name$" | rename search as searchString dispatch.earliest_time as earliest dispatch.latest_time as latest | eval earliest=if(earliest="None","",earliest) | eval latest=if(latest="None","",latest)</param>
        <module name="ResultsValueSetter">
          <param name="fields">searchString,earliest,latest,title</param>
          <module name="ValueSetter">
            <param name="name">savedSearchURL</param>
            <param name="value"><![CDATA[chart?searchBar=$searchString$&earliest=$earliest$&latest=$latest$&autoRun=True]]></param>
            <param name="urlEncodeKeys">searchString,earliest,latest</param>

            <module name="HTML">
              <param name="html"><![CDATA[
                <a href="$savedSearchURL$">$title$</a>
              ]]></param>
            </module>
          </module>
        </module>
      </module>
    </module>
  </module>
</module>

There is of course another easy way to do this with Sideview Utils, and that's to just use the Table module and the Redirector module:

<module name="Search" autoRun="True">
  <param name="search">| rest /servicesNS/admin/search/saved/searches | rename qualifiedSearch as searchString dispatch.earliest_time as earliest dispatch.latest_time as latest | fields title searchString earliest latest</param>

  <module name="Pager">
    <module name="Table">
      <param name="hiddenFields">searchString earliest latest</param>

      <module name="Redirector">
        <param name="url">flashtimeline</param>
        <param name="arg.q">$row.fields.searchString$</param>
        <param name="arg.earliest">$row.fields.earliest$</param>
        <param name="arg.latest">$row.fields.latest$</param>
      </module>
    </module>
  </module>
</module>

Although, if you're not picky about the presentation, straight up blue links in a bulleted list are just fine, and you don't need to tweak the rest command at all, the SavedSearches module may well be the simplest way to go!

<module name="Paginator">
  <module name="SavedSearches"/>
</module>
0 Karma

rroberts
Splunk Employee
Splunk Employee

I've done something like this calling the savedsearches module directly.

module name="GenericHeader" layoutPanel="sidebar"

param name="label" My Saved Searches /param

module name="SavedSearches" layoutPanel="sidebar"/>

/module>

I removed the field picker and replaced it with a list of saved search. Might start here.

0 Karma
Get Updates on the Splunk Community!

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...

Stay Connected: Your Guide to October Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...