Splunk Search

combine two line report in single chart

rameshlpatel
Communicator

Hi,

I want to merge two line chart report from two different sourcetype in single chart.

e.g. index="OCSMONITOR" source=*process* | timechart span=1m count(_raw) | [merge] |
index="OCSMONITOR" source=*new* | timechart span=1m count(_raw)

please suggest me how should i do this ?

Tags (2)
0 Karma

lguinn2
Legend

Try this

 index="OCSMONITOR" source=*process* OR source=*new* | timechart span=1m count by source

or this

index="OCSMONITOR" source=*process* OR source=*new* 
| eval type=if(match(source,"process"),"process","new")
| timechart span=1m count by type

somesoni2
Revered Legend

Try this

 index="OCSMONITOR" source=process OR source=new | timechart span=1m count(eval(source="process")) as CountProcess count(eval(source="new")) as CountProcess 
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 ...