Splunk Search

How to compare the values of dynamic column?

sarvesh_11
Communicator

Hello Splunkers,

My search executes monthly, over a period of 3 months data, since march is going on my last 3 months would be Dec, Jan and Feb. Now in the Trend column, i need the difference of Previous 2 months by Priority.

As the month succeeds, the column name would also change.

 

sarvesh_11_2-1615551327619.png

 

Also, can i show the difference with pictorial view?

Like for High, it should be downward arrow as percentage decreased by 3, for Medium it should be linear arrow, for Low it should be upward arrow, as it increased by 1%.

Thanks in Advance for your time 🙂

Cheers,

 

Labels (2)
0 Karma
1 Solution

to4kawa
Ultra Champion

....
| streamstats window=2 first(eval(rtrim(Percent,"%"))) as p_perc by Priority
| eval trend=rtrim(Percent,"%") - p_perc
| eventstats last(trend) as Trend by Priority
| eval Priority=Priority."_".Trend
| xyseries Priority month Percent
| rex field=Priority "(?<Priority>.*)_(?<Trend>.*)"

 There is only the image data, so I haven't tried it.

 

 

View solution in original post

0 Karma

to4kawa
Ultra Champion

Incorrect query.
Aggregate by stats, not by timechart
If you use autoregress and eval, you should be fine.

0 Karma

sarvesh_11
Communicator

@to4kawa 

i have to use chart, because the desired format is snap what i shared.

do we have functionality like to compare the values of column wrt column number?

using stats looks like:

sarvesh_11_0-1615787911991.png

 

0 Karma

to4kawa
Ultra Champion

....
| streamstats window=2 first(eval(rtrim(Percent,"%"))) as p_perc by Priority
| eval trend=rtrim(Percent,"%") - p_perc
| eventstats last(trend) as Trend by Priority
| eval Priority=Priority."_".Trend
| xyseries Priority month Percent
| rex field=Priority "(?<Priority>.*)_(?<Trend>.*)"

 There is only the image data, so I haven't tried it.

 

 

0 Karma

sarvesh_11
Communicator

Hey @to4kawa ,
Just last thing, sorting doesn't happens with xyseries?

M unable to sort this:

sarvesh_11_0-1615979882599.png

It should come Dec-2020 Jan-2021 Feb-2021.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...