Would you know how can I display an overlay of two charts that have different time ranges on the X-axis? For example, I would like to compare CPU utilization yesterday with the CPU utilization a week ago. Is it possible to combine the results of two searches below into one chart? | mstats avg(cpu.pctIdle) AS cpu_idle_pct WHERE index=mymetrics host=myserver span=5min earliest=-2days latest=-1days | timechart min(cpu_idle_pct) span=1hour | mstats avg(cpu.pctIdle) AS cpu_idle_pct WHERE index=mymetrics host=myserver span=5min earliest=-9days latest=-8days | timechart min(cpu_idle_pct) span=1hour Thanks !
... View more