Quantcast
Channel: THWACK: Popular Discussions - Orion SDK
Viewing all articles
Browse latest Browse all 3719

Custom query help

$
0
0

Greetings Everyone,

 

 

Need help constructing a complex SWQL query to build a historical BW utilization table going back 180 days IN/OUT and broken up by month. Goal is to have it be 1 line, multiple columns per node/interface within a custom table as part of a larger situational awareness dashboard for our director. We would also like the values to conditionally format based on what percentage is returned for that given month. An example being Interface X off of Node Y was at 90% utilization per the 95th percentile IN for the month of March. We want that 90% value to be Red. If it dropped to 36% in May we want that value to be Green. The conditional format color just going off the already out of the box Solarwinds default thresholds.

 

 

I've already tried the syntax suggested in this thread: https://thwack.solarwinds.com/thread/113097 But I just get "Query is not valid" when attampting to use

 

 

DateTrunc(‘day’, T.ObservationTimestamp) AS [Day],

AVG(T.Traffic.InAveragebps) AS InAvgBps, AVG(T.Traffic.OutAveragebps) AS OutAvgBps,

MIN(T.Traffic.InMinbps) AS InMinBps, AVG(T.Traffic.OutMinbps) AS OutMinBps

MAX(T.Traffic.InMaxbps) AS InMaxBps, AVG(T.Traffic.OutMinbps) AS OutMaxBps

 

 

Or the subquery further down the thread.

 

 

We are on the latest version of NPM here.

 

 

This is what I have so far trying different things to also add in some fields to another custom table we're working on for the same dashboard. We have tabs capturing assets from different regions which is why we are using the CarrierName to filter out the other nodes/interfaces.

 

 

SELECT N.Caption AS [Node Name],

C.CarrierName AS PACE,

I.Name,

T.ObservationTimestamp,

T.InTotalPkts AS [Total Pkts IN],

T.OutTotalPkts AS [Total Pkts OUT],

'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N%3a'+ToString(N.NodeID) AS [_LinkFor_Node Name],

'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=I:'+ToString(I.InterfaceID)+'&view=InterfaceDetails' AS [_LinkFor_Name],

I.DetailsUrl,

N.DetailsUrl

  FROM Orion.Nodes AS N

  INNER JOIN Orion.NPM.Interfaces AS I on N.NodeID=I.NodeID

  INNER JOIN Orion.NPM.InterfaceTraffic AS T on N.NodeID=T.NodeID

  INNER JOIN Orion.NPM.InterfacesCustomProperties AS C on I.InterfaceID=C.InterfaceID

  WHERE C.CarrierName Like 'Primary_b%'

  OR C.CarrierName Like 'Alternate_b%'

  ORDER BY N.Caption Asc, C.CarrierName Desc


Viewing all articles
Browse latest Browse all 3719

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>