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!

Splunk MCP & Agentic AI: Machine Data Without Limits

Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization uses ...

Application management with Targeted Application Install for Victoria Experience

Experience a new era of flexibility in managing your Splunk Cloud Platform apps! With Targeted Application ...

[Puzzles] Solve, Learn, Repeat: Dynamic formatting from XML events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...