Dashboards & Visualizations

Need help with creating a dashboard

surekhasplunk
Communicator

Hi,

I want to create a dashboard where i can show like below : Logic is if 1 employee is there in bangalore it should show 1
if 2 employes are there in each Delhi, Mmbai and Bihar it should show 2 against each of the places and should be placed in 2nd row and so on.
Bangalore (1)
Delhi (2) Mumbai (2) Bihar(2)
Jaipur(3) Gurgaon(3)

Additionally i want to color code the cells/boxes as well .

Thanks

0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi surekhasplunk,
see this example that should guide you to solve your problem

index=_internal 
| stats dc(date_hour) AS date_hour by sourcetype 
| eval sourcetype=sourcetype+"("+date_hour+")" 
| stats values(sourcetype) AS sourcetype BY date_hour 
| fields - date_hour 
| nomv sourcetype

This is result

   splunk_app_db_connect_dbx.log-too_small(2) splunk_web_access(2) splunk_web_service(2) splunkd_ui_access(2)
    dbx_health_metrics(4) dbx_server(4) mongod(4) scheduler(4) splunkd(4) splunkd_access(4)

If you share your search, I could help you more.

Bye.
Giuseppe

View solution in original post

0 Karma

surekhasplunk
Communicator

alt text

Hi,

This is exactly what i was looking for but additionally i want the count also to be shown in the fist column with the values in the cells as attached in the image.

Thanks

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi surekhasplunk,
see this example that should guide you to solve your problem

index=_internal 
| stats dc(date_hour) AS date_hour by sourcetype 
| eval sourcetype=sourcetype+"("+date_hour+")" 
| stats values(sourcetype) AS sourcetype BY date_hour 
| fields - date_hour 
| nomv sourcetype

This is result

   splunk_app_db_connect_dbx.log-too_small(2) splunk_web_access(2) splunk_web_service(2) splunkd_ui_access(2)
    dbx_health_metrics(4) dbx_server(4) mongod(4) scheduler(4) splunkd(4) splunkd_access(4)

If you share your search, I could help you more.

Bye.
Giuseppe

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi surekhasplunk,
try

index=_internal 
 | stats dc(date_hour) AS date_hour by sourcetype 
 | eval sourcetype=sourcetype+"("+date_hour+")" 
 | stats dc(sourcetype) AS quantity values(sourcetype) AS sourcetype BY date_hour 
 | fields - date_hour 
 | nomv sourcetype

Bye.
Giuseppe

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 ...