Hey,
I want to switch off what seems to be a default function in Splunk.
I am trying to drill down on the following chart:
When I click on the cell highlighted above in the search, a search that I have defined via the HiddenSearch module is run in a new popup window. However, by default, Splunk adds success="919" to this search.
When I click on this particular cell, the following search is run:
index=main onb="wk42_2tue" success="919"
but this is the search that I want to see being run instead when I click on this cell:
index=main onb="wk42_2tue"
The following extract of code from my view makes the above index=main onb="wk42_2tue" success="919" search possible:
<module name="HiddenSearch" autoRun="true">
<param name="search">index=main</param>
<module name="ConvertToIntention">
<param name="intention">
<param name="name">addterm</param>
<param name="arg">
<param name="onb">$click.value$</param>
</param>
</param>
.
.
.
Is it possible to add a module and/or param to my code that stops success="..." from being added to the end of my search when I click on one of these cells?
Thanks in advance for your help.
... View more