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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...