Splunk Search

In a table output that uses the stats command, how do you convert a row to a header?

dtakacssplunk
Explorer

How do I convert the output of a table from stats command that looks like this:

TIME VALUE METRIC
time1 a 100
time1 b 200
time2 a 50
time2 b 90

To this?

TIME a b

time1 100 200
time2 50 90

0 Karma
1 Solution

chrisyounger
SplunkTrust
SplunkTrust

Hi @dtakacssplunk

xyseries will also do what you want

e.g.
index=_internal | eval len = len(_raw) |stats count by component log_level | head 10
becomes
index=_internal | eval len = len(_raw) |stats count by component log_level | head 10 | xyseries component log_level count

Good luck!

View solution in original post

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi @dtakacssplunk,

You can use chart also.

YOUR_SEARCH | chart values(METRIC) as METRIC over TIME by VALUE

Sample Search:

| makeresults | eval _raw="
TIME VALUE METRIC
time1 a 100
time1 b 200
time2 a 50
time2 b 90
" | multikv | chart values(METRIC) as METRIC over TIME by VALUE

Thanks

0 Karma

chrisyounger
SplunkTrust
SplunkTrust

Hi @dtakacssplunk

xyseries will also do what you want

e.g.
index=_internal | eval len = len(_raw) |stats count by component log_level | head 10
becomes
index=_internal | eval len = len(_raw) |stats count by component log_level | head 10 | xyseries component log_level count

Good luck!

0 Karma

renjith_nair
Legend

@dtakacssplunk,

Try,

"your current search "
|eval {VALUE}=METRIC|fields - VALUE,METRIC|stats values(*) as * by TIME
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...