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
Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...