Hi Splunkers,
I want to customize the Enterprise Security Incident Review dashboard to include a link to another dashboard instead of a drilldown search when viewing single events.
Example:
We have several "Threat activity detected" notables. The "Contributing Events" drilldown leads to another search window. We want to change this drilldown (or include another link) to open a dashboard with parameters from the notable event instead.
Does anyone know how to achieve this?
Cheers
Dennis
The easiest way to do this that I can think of is a workflow action. You can use workflow actions directly from Incident Review since it includes any workflow actions declared on the system (both the field and event actions).
The easiest way to do this that I can think of is a workflow action. You can use workflow actions directly from Incident Review since it includes any workflow actions declared on the system (both the field and event actions).
Okay, found my answer myself already. Thanks for your help, workflow actions were exactly what I was looking for!
Thanks, that looks exactly like the solution I need... Anyhow, I can't get the link to fully work. Is there a chance to just include the dashboard link without having to specify the FQDN of my searchhead? I want this to work on any search head.
Hi @DMohn,
Have you taken a look at the docs here? http://docs.splunk.com/Documentation/Splunk/6.0.2/Viz/Dynamicdrilldownindashboardsandforms
In particular, if you have a table view you can do something like the following:
<dashboard>
<label>Dashboard with dynamic drilldown to a Splunk form</label>
<row>
<table>
<searchString>
index="_internal" group="per_sourcetype_thruput" |
chart sum(kbps) over series
</searchString>
<title>Top sourcetypes (drilldown example)</title>
<earliestTime>-60m</earliestTime>
<latestTime>now</latestTime>
<option name="count">15</option>
<option name="displayRowNumbers">false</option>
<option name="showPager">true</option>
<option name="drilldown">row</option>
<drilldown>
<link>
<![CDATA[
/app/dashboard_examples/form_table2?form.sourcetype=$row.sourcetype$&earliest=$earliest$&latest=$latest$
]]>
</link>
</drilldown>
</table>
</row>
</dashboard>
The <drilldown>
XML element is the key there. In that example, clicking on a row of the table will take you to a new dashboard (form_table2 in the dashboard_examples app) with $row.sourcetype$ and the $earliest$ and $latest$ values pre-filled.
Thanks for the suggestion, but I don't want to modify the IR dashboard itself, if there are other options. Any updates to the Enterprise Security Suite would reverse my changes.
Makes sense. I had assumed this was a custom dashboard.