Dashboards & Visualizations

chart command

lucky
Explorer

HI All,

I need to display the results same as like below 

|chart count over API by StatusCode 

API  200 300 400 400 total
--   ---      ----     --      ---
but I need to display the results behind API more fields like host and method as well

API host method 200 300 400  total 
--     ---    ---              --      ---    ----

please help to get the results

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval merged=API."|".host."|".method
| chart count over merged by StatusCode
| addtotals
| eval API=mvindex(split(merged,"|"),0)
| eval host=mvindex(split(merged,"|"),1)
| eval method=mvindex(split(merged,"|"),2)
| fields - merged
0 Karma
Get Updates on the Splunk Community!

AI for AppInspect

We’re excited to announce two new updates to AppInspect designed to save you time and make the app approval ...

App Platform's 2025 Year in Review: A Year of Innovation, Growth, and Community

As we step into 2026, it’s the perfect moment to reflect on what an extraordinary year 2025 was for the Splunk ...

Operationalizing Entity Risk Score with Enterprise Security 8.3+

Overview Enterprise Security 8.3 introduces a powerful new feature called “Entity Risk Scoring” (ERS) for ...