Splunk Enterprise Security

How to normalize the timechart data by time

Minghao
Explorer

I use the timechart to analyze the data and I want to normalize the data in the timechart

... | timechart span=3d count by step

What I get is like:

_time 1 2 3 

11/2  2 3 4

11/3  3 4 5

And I want to divide the max value of each row and get like this:

_time 1 2 3 

11/2  0.5 0.75 1

11/3  0.6 0.8 1

How can I get this? Thank a lot in advance

Labels (1)
0 Karma

somesoni2
Revered Legend

Try something like this:

 

…| bucket span=3d _time | stats count by _time step
| eventstats max(count) as max by _time
| eval count=round(count/max,2)
| xyseries _time step count

Minghao
Explorer

bucket also works for me ! Thank you very much!

0 Karma

to4kawa
Ultra Champion

... | timechart span=3d count by step
| untable _time step count
| eventstats max(count) as max_count by _time
| eval count=round(count/max_count,1)
| xyseries _time step count

Minghao
Explorer

It does works! Thank you very much!

0 Karma
Get Updates on the Splunk Community!

AppDynamics Summer Webinars

This summer, our mighty AppDynamics team is cooking up some delicious content on YouTube Live to satiate your ...

SOCin’ it to you at Splunk University

Splunk University is expanding its instructor-led learning portfolio with dedicated Security tracks at .conf25 ...

Credit Card Data Protection & PCI Compliance with Splunk Edge Processor

Organizations handling credit card transactions know that PCI DSS compliance is both critical and complex. The ...