Splunk Search

can I aggregate two queries

rakesh_498115
Motivator

I Have Two sourcetypes defined . i need to write a query integrating the two sourcetypes and should get a single result.

i.e for example
Sourcetype="X" | (some logic )|stats avg(duration) as Avgresponsetime1

Sourcetype="Y" | (some logic ) |stats avg(duration) as Avgresponsetime2

Now i need a single Query which gives me the ouput as avgresponsetime of the avg from the previous two reponsetimes..

i have tried like this..but didnt work..

(Sourcetype="X" | (some logic )|stats avg(duration) as Avgresponsetime1) OR ( Sourcetype="Y" | (some logic ) |stats avg(duration) as Avgresponsetime2 ) | eval responsetime=avgresponsetime1+avgresponsetime2 | table responsetime

Please help me on this asap..thanx

0 Karma
1 Solution

Ayn
Legend

You can't put an OR between them because by the time you get to the OR you've already "left" the initial search command and piped it to a number of other commands.

You could use append for getting results from the two searches and then run stats on all results:

 Sourcetype="X" | (some logic )| append [search Sourcetype="Y" | (some logic )] | stats avg(duration) as responsetime

View solution in original post

Ayn
Legend

You can't put an OR between them because by the time you get to the OR you've already "left" the initial search command and piped it to a number of other commands.

You could use append for getting results from the two searches and then run stats on all results:

 Sourcetype="X" | (some logic )| append [search Sourcetype="Y" | (some logic )] | stats avg(duration) as responsetime
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI! Discover how Splunk’s agentic AI ...

[Puzzles] Solve, Learn, Repeat: Dereferencing XML to Fixed-length events

This challenge was first posted on Slack #puzzles channelFor a previous puzzle, I needed a set of fixed-length ...

Stay Connected: Your Guide to December Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...