bmont

Comments

  • This reminded me that I really need to sit down and study for the CCNA
  • Perfect, thanks for the help. Figuring out how to covert them was my next step. Really appreciate it.
  • Here are the two queries I used to get the data above. SQL: SELECTInterfaceID,Datetime,In_Averagebps,Out_Averagebps FROM [dbo].[InterfaceTraffic] Where InterfaceID = 4469 AND Cast(DateTime AS Date) = '10/6/2015' SWQL: SELECT InterfaceID, DateTime, InAveragebps, OutAveragebps FROM Orion.NPM.InterfaceTraffic WHERE…
  • Thank you for the reply. We have gotten some action on our issues, although so far nothing moving us toward notable a resolution. Yes, I had reached out to a few people who got me in contact with my customer support rep. I have been contacted a couple of times by technical support. We are still down after the complete…
  • Figured it out after starting to make a ticket with Solarwinds TS. It came up as a possible solution to my subject. The link it gave me was: Create SAM component report that includes Multivalue Messages and Component Messages - SolarWinds Worldwide, LLC. Help a… The query that I needed was SELECT NodeId, NodeName,…
  • Like cnorborg said, it really depends on what you are looking for. If you are looking for just the interfaces that are monitored, I think you want something like this. This groups all of the interfaces that are being monitored by NPM together by Node. SELECTN.SysName AS [Node Name],I.InterfaceName AS [Interface Name] FROM…