Splunk Search

overlay time chart from different sources

athorat
Communicator

Hi

I want to overlay two different time charts in one panel.
can this be done.

index = aap_prod (sourcetype=fs_notification OR sourcetype=hadoop:prod:fm:journey) (action=add OR eventtype=fschange_add_file) |  timechart  count 

and

index=aap_prod sourcetype="HDP:PROD:OOZIE"    (":start:] with user-retry state" OR CASE("@end***]Action updated in DB!"))   | rex "TOKEN\[\] APP\[(?<JobName>[^\]]*)"  | search JobName=WF_danlaw_journey_hive | timechart count

Thanks.

Tags (2)
0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

The most simple approach is this:

index = aap_prod (sourcetype=fs_notification OR sourcetype=hadoop:prod:fm:journey) (action=add OR eventtype=fschange_add_file) |  timechart  count as countB
| appendcols [search index=aap_prod sourcetype="HDP:PROD:OOZIE"    (":start:] with user-retry state" OR CASE("@end***]Action updated in DB!"))   | rex "TOKEN\[\] APP\[(?<JobName>[^\]]*)"  | search JobName=WF_danlaw_journey_hive | timechart count as countA]

If you clean up your searches a bit, for example extract the rex'd field from configuration, maybe store everything in eventtypes, etc., you could do something like this:

index=app_prod (eventtype=A OR eventtype=B) | eval class = if(eventtype="A", "A", "B") | timechart count by class

I've assumed that in case of A and B matching it should be counted for A... that's a matter of requirements though.

View solution in original post

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

The most simple approach is this:

index = aap_prod (sourcetype=fs_notification OR sourcetype=hadoop:prod:fm:journey) (action=add OR eventtype=fschange_add_file) |  timechart  count as countB
| appendcols [search index=aap_prod sourcetype="HDP:PROD:OOZIE"    (":start:] with user-retry state" OR CASE("@end***]Action updated in DB!"))   | rex "TOKEN\[\] APP\[(?<JobName>[^\]]*)"  | search JobName=WF_danlaw_journey_hive | timechart count as countA]

If you clean up your searches a bit, for example extract the rex'd field from configuration, maybe store everything in eventtypes, etc., you could do something like this:

index=app_prod (eventtype=A OR eventtype=B) | eval class = if(eventtype="A", "A", "B") | timechart count by class

I've assumed that in case of A and B matching it should be counted for A... that's a matter of requirements though.

0 Karma
Get Updates on the Splunk Community!

Raise Your Skills at the .conf25 Builder Bar: Your Splunk Developer Destination

Calling all Splunk developers, custom SPL builders, dashboarders, and Splunkbase app creators – the Builder ...

Hunt Smarter, Not Harder: Discover New SPL “Recipes” in Our Threat Hunting Webinar

Are you ready to take your threat hunting skills to the next level? As Splunk community members, you know the ...

Splunk ITSI & Correlated Network Visibility

  Now On Demand   Take Your Network Visibility to the Next Level In today’s complex IT environments, ...