Quantcast
Viewing all articles
Browse latest Browse all 20019

Re: Interface utilization and CPU utilization in the same chart

TIP:

 

You can use modified SWQL query and use only one Y-axis.

 

SELECT ID, CAPTION, DATETIME, UTIL

FROM

(

SELECT NodeID AS ID, N.Node.Caption AS CAPTION, DateTime, AvgLoad AS UTIL

FROM Orion.CPULoad N

WHERE NodeID = 737 -- set yours nodeId

 

UNION ALL

(

SELECT InterfaceID AS ID, I.Interface.Caption AS CAPTION, DateTime, PercentUtil AS UTIL

FROM Orion.NPM.InterfaceTraffic I

WHERE InterfaceID = 16 -- set yours interfaceId

))

 

Image may be NSFW.
Clik here to view.
6.PNG


Viewing all articles
Browse latest Browse all 20019

Trending Articles