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
SplunkTrust
SplunkTrust

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!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...