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) astime, a.Node.Caption, AVG(AvgLoad) as CpuLoad, AVG(AvgMemoryUsed) as MemoryUsed FROMOrion.CPULoad a WHERE ObservationTimeStamp BETWEEN $fromAND $to GROUP BY downsample(ObservationTimeStamp), a.Node.Caption, a.NodeIDORDER BYtimeDESC