Splunk Search

merging two search strings

Splunk_U
Path Finder

Can you please help me out to merge these two search strings

index=os sourcetype=vmstat 
| multikv fields memUsedPct  
| stats avg(memUsedPct) as avgMemUse max(memUsedPct) as pkMemUse by host
| join host [ search index=os sourcetype=cpu 
    | multikv fields pctIdle  
    | search all  
    | eval Percent_CPU_Load = 100 - pctIdle  
    | stats avg(Percent_CPU_Load) as avgCpuUse max(Percent_CPU_Load) as pkCpuUse by host ]

and

index=os sourcetype=perfmon* 
| stats avg(Value) as Average max(Value) as Max by host counter
Tags (1)
0 Karma

Splunk_U
Path Finder

I need the result of both the search string combined in a same window.

0 Karma

lguinn2
Legend

Just keep following the pattern....

index=os sourcetype=vmstat 
| multikv fields memUsedPct  
| stats avg(memUsedPct) as avgMemUse max(memUsedPct) as pkMemUse by host
| join host [ search index=os sourcetype=cpu 
    | multikv fields pctIdle  
    | search all  
    | eval Percent_CPU_Load = 100 - pctIdle  
    | stats avg(Percent_CPU_Load) as avgCpuUse max(Percent_CPU_Load) as pkCpuUse by host ]
| join host [ search index=os sourcetype=perfmon* 
    | stats avg(Value) as Average max(Value) as Max by host counter ]

Although I don't think that is going to work exactly the way you want...

0 Karma

lguinn2
Legend

What output do you get from this search?

index=os sourcetype=perfmon*
| stats avg(Value) as Average max(Value) as Max by host counter

0 Karma

Splunk_U
Path Finder

No it is not working...I have tried the same follow ... 😞

0 Karma

lguinn2
Legend

Do you really need these stats combined? Or could you put both searches on a dashboard, where you could see the results side-by-side?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...