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!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...