Splunk Search

How to change the row colors based on the field value using CSS in splunk

disha
Contributor

I am getting the result data in the form of table from the view's SimpleResultsTable. In result data I have the fields Custid and EventId. For one CustomerID we can have more than one eventId.

CustID EventID

01 876

01 545

01 339

02 876

02 993

03 378

04 838

I want to make changes in $SPLUNK_HOME/etc/apps//appserver/static/my.css so that
1. Row color for each custid is different.
2. for each custid I want to make one row as

custid EventID

            876

01 545

339

           876

02 993

03 378

The problem is that I know CSS but I don't know how to access value of CustID from simpleResultsTable and how to set row color on the basis of CustID value and group them together.
I have tried to go thru documentation but I did not find the solution:( Please help me.

Tags (1)
0 Karma
1 Solution

disha
Contributor

I am able to figure it out.
tr:nth-child(even) {
color: #000000;
background-color: #FFDEAD;
}
tr:nth-child(odd) {
color : #000000;
background-color: #FFDEAD;
}
Put this code in $Splunk_Home/etc/apps/myapp/appserver/static/name.css

Also displaying the rows group togeher based on the field value, I achieved by Splunk search
as | stats list(eventid) by custid.

View solution in original post

0 Karma

disha
Contributor

I am able to figure it out.
tr:nth-child(even) {
color: #000000;
background-color: #FFDEAD;
}
tr:nth-child(odd) {
color : #000000;
background-color: #FFDEAD;
}
Put this code in $Splunk_Home/etc/apps/myapp/appserver/static/name.css

Also displaying the rows group togeher based on the field value, I achieved by Splunk search
as | stats list(eventid) by custid.

0 Karma

disha
Contributor

My editing for showing the table is corrupted but summary is that I want to group together in one row for each custid and need different color for each customer id.
Thanks

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...