Splunk Search

How to customize my own event display but keep the "highlight effect" ?

leo_wang
Path Finder

I recently followed this document to customize the event display for my own eventtype : http://www.splunk.com/base/Documentation/4.1.5/Developer/EventRendering

It's quite interesting and useful, but I found the "highlight effect" of search keyword would be malfunctioned in my customized display. I know I should put some special code in my template to creat this effect, but I don't know how....

Any tips or reference ?

Leo Wang

Tags (1)

wollinet
Path Finder

Have a look here:

http://answers.splunk.com/questions/4937/custom-event-renderer

I had the same problem. If you exactly know how your event looks like and you have a predefined set of fields you can try putting this aroung your fields:

SOME_VALUE_HERE

0 Karma

leo_wang
Path Finder

Thanks for your response. but it seems not working in my case. My simple event-rendering template is like this , which just use the field value to display my event data.

<%page args="job, event, request, options" />
<% mydate = event.fields.get('date','') %>
<% mycase = event.fields.get('CaseDetail','No example') %> 
<% mydetail = event.fields.get('detail','none') %>
  <span id="eventTypeForm"/>
     <table border=1>
        <tr><td> <b>Date:</b> ${mydate|h}<br/> </td> <td>  <b>Rule :</b>${myrule|h}<br/> </td> </tr>
         <tr><td colspan=2> ${mydetail} </td> </tr>
     </table>

</div>

enter code here

0 Karma

gkanapathy
Splunk Employee
Splunk Employee

Have you specified/defined the appropriate CSS class?

0 Karma

gkanapathy
Splunk Employee
Splunk Employee

Looks to me like you would need to define a highlight color for the matched terms class, such as:

.myEventRendererClass .a {
  background-color: #F5E998;
}
0 Karma
Get Updates on the Splunk Community!

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

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...