This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Modern Dashboard - Convert BPS to MBPS

I am attempting to set up KPI Widgets for inBPS and outBPS of some of our uplink ports. I have configured a SWQL query that can retrieve this but I don't know how to convert the data from BPS to MBPS. Can anyone advise? Below are the queries in use.

 

SELECT TOP 10 n.Inbps,n.FullName 
FROM Orion.NPM.Interfaces n 
 
WHERE (FullName LIKE '%interface monitoring%')


SELECT TOP 10 n.Outbps,n.FullName 
FROM Orion.NPM.Interfaces n 
 
WHERE (FullName LIKE '%interface monitoring%')

Any help would be appreciated