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!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...