Trying to add a interface's throughput to custom dashboard. So the query is:
SELECT Inbps/1000000 as Download, Outbps/1000000 as Upload
FROM Orion.NPM.Interfaces
WHERE InterfaceID=16938
I'd like to store the outputs of Download and Upload as variables and display as plain text under a picture in the HTML. I suspect the answer is in https://thwack.solarwinds.com/t5/SAM-Documents/Custom-Sparkline-Charts/ta-p/520283 but still trying to understand everything that is going on in there and adapt to my needs. Is there a different way I should think to approach this problem?