Dashboards & Visualizations

How to separate multiple results in one line ?

mah
Builder

Hi,

I have a table like this : 3 column minimum :

mah_0-1604913285996.png

The problem is that I want a table which is showing results in separate lines like : 

name targetUrltime
loading...htthps://...942
/servicedesk/.../user/...htthps://...5194
/servicedesk/customer/...htthps://...1447

 

I tried a stats commands like : 

|stats count by name targetUrl Time 

but the result gave me that : 

name targetUrltime
loading...htthps://...1447
/servicedesk/.../user/...htthps://...1447
/servicedesk/customer/...htthps://...1447

 

Can you help me please ?

Tags (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Did you use spath to split the json or was it done when the event was indexed?

The issue can be resolved by splitting the parsing of the json into two parts. First to get the actions list, then to split each action. By putting a mvexpand between the two you can separate each action into a different line

| makeresults | eval _raw="{
\"actions\" : [{
\"targetUrl\":\"https://..\",
\"Time\":942,
\"name\":\"loading\"},
{
\"targetUrl\":\"https://..\",
\"Time\":5194,
\"name\":\"/servicedesk/\"},
{
\"targetUrl\":\"https://..\",
\"Time\":1447,
\"name\":\"/servicedesk/customer\"}]
}"
| spath path=actions{} output=actions
| fields - _raw
| mvexpand actions
| spath input=actions
| fields - actions

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

It might be easier to not have multi-values in the first place. Can you show more of your query for your original table to show how the multi-value fields are being generated?

0 Karma

mah
Builder

The query is very simple : 

Index=A sourcetype=B Type=C | table name targetUrl Time

for the example of a log, I filtered on one user that did 3 actions :

actions: [ [-] 
     {  [-] 

targetUrl:  https...    

Time942

name : loading 
     }

     {  [-] 

targetUrlhttps://.. .     

Time5194

name : /servicedesk/...
     }

 {  [-] 

targetUrlhttps...    

Time: 1447

name : /servicedesk/customer
     }
   ]

}

The actions are in a list [] in the json and I think that is causing the issue to group in one line, no ?

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Did you use spath to split the json or was it done when the event was indexed?

The issue can be resolved by splitting the parsing of the json into two parts. First to get the actions list, then to split each action. By putting a mvexpand between the two you can separate each action into a different line

| makeresults | eval _raw="{
\"actions\" : [{
\"targetUrl\":\"https://..\",
\"Time\":942,
\"name\":\"loading\"},
{
\"targetUrl\":\"https://..\",
\"Time\":5194,
\"name\":\"/servicedesk/\"},
{
\"targetUrl\":\"https://..\",
\"Time\":1447,
\"name\":\"/servicedesk/customer\"}]
}"
| spath path=actions{} output=actions
| fields - _raw
| mvexpand actions
| spath input=actions
| fields - actions

mah
Builder

That exactly what I was looking for. 

Works perfectly ! 

Thank you very much !

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...