Hello.
Is there a way to pull interfaces data from Solarwinds to create pie charts or utilization charts in grafana?
I was able to pull cpu data but that all not for one but for all nodes'

using
SELECT downsample(ObservationTimeStamp) as time, a.Node.Caption, AVG(AvgLoad) as CpuLoad, AVG(AvgMemoryUsed) as MemoryUsed FROM Orion.CPULoad a WHERE ObservationTimeStamp BETWEEN $from AND $to GROUP BY downsample(ObservationTimeStamp), a.Node.Caption, a.NodeID ORDER BY time DESC