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

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!

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