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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Telemetry Pipeline Management

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...