If you have the *nix app installed, you can copy/paste this command!
sourcetype=vmstat OR sourcetype=cpu | multikv fields memUsedPct pctIdle | eval CPU_Usage=100-pctIdle | timechart span=10m avg(CPU_Usage) avg(memUsedPct) by host
That gives you a combined timechart (10mins avg.) over CPU & Memory usages per host
If you have the *nix app installed, you can copy/paste this command!
sourcetype=vmstat OR sourcetype=cpu | multikv fields memUsedPct pctIdle | eval CPU_Usage=100-pctIdle | timechart span=10m avg(CPU_Usage) avg(memUsedPct) by host
That gives you a combined timechart (10mins avg.) over CPU & Memory usages per host
Thanks! the "multikv fields" was the key one.