Knowledge Management

How can I use the result table's value of the timechart

i111040d
New Member

My search:

|timechart span=1s sum(bit) by dst

Result table:

_time,1.1.1.1,2.2.2.2,3.3.3.3
090000,300,300,300
090001,200,200,500
090002,100,400,400

I want the table(displaying the time and the value when sum(bit) is biggest):

1.1.1.1,2.2.2.2,3.3.3.3
090000,090002,090001
300,400,500

or

dst,time,sum(bit)
1.1.1.1,090000,300
2.2.2.2,090002,400
3.3.3.3,090001,500

How can I transform the table?

Tags (1)
0 Karma

somesoni2
Revered Legend

Try like this

your base search | bucket span=1s _time | stats sum(bit) as bit by _time dst | eventstats max(bit) as max by dst | where bit=max | table dst _time bit
0 Karma

i111040d
New Member

Thanks somesoni2
I could do it!

0 Karma

sundareshr
Legend

Try this

... | bin span=1s _time | stats sum(bit) as s by dst _time | stats values(dst) as dst max(s) bits by  _time | table dst _time bits 
0 Karma

i111040d
New Member

Thanks sundareshr!
But I need the biggest value for each "DST".

0 Karma
Get Updates on the Splunk Community!

Splunk is Nurturing Tomorrow’s Cybersecurity Leaders Today

Meet Carol Wright. She leads the Splunk Academic Alliance program at Splunk. The Splunk Academic Alliance ...

Part 2: A Guide to Maximizing Splunk IT Service Intelligence

Welcome to the second segment of our guide. In Part 1, we covered the essentials of getting started with ITSI ...

Part 1: A Guide to Maximizing Splunk IT Service Intelligence

As modern IT environments continue to grow in complexity and speed, the ability to efficiently manage and ...