Comments
-
Depends on the issue.
-
Please increase the maximum nb of paths per PE to at least 250.
-
Hi Chris, I do not think you are reading it wrong. But this is maybe also to my lack of coffee .
-
Yes, It is happening. Finally we can meet each other again. See you all in London.
-
Kevin (and all who attent), See you in London .
-
Dear SolarWinds Product owner, Can you please implement this feature request? Custom properties are one of the big advantages in Orion. Unfortunately this request, from 2014, is still not implemented. My customers and me would love to see this. Preferably yesterday. A port on a switch in a MER does not say anything to the…
-
Thanks Marlie, Great piece of explanation of Alerts.
-
Hi Andrew, Unfortunately i did not get any update on this one (yet).
-
Congrets Chrystal.
-
fully agreed on this one.
-
Add the following to the where statement: AND [n].CustomProperties.Ownership = 'FKT'
-
Hi Chris, No you do not need to play around with SWQL. It is much easier. Go to My Dashboard à Home à Performance Analyses. Filter on API Poller Monitor Value Choose one or more API’s. One if you want just one line per TimeSeries or more if you want several historical data lines per TimeSeries. In my case I choose 1 line.…
-
Hi Chris, To answer your last question first. The result of a query is not stored in the SW DB. And to track a your KPI over time i would suggest using Perfmon (Performance) analyses for historical data. see the example below. Is this something which can help you? Cheers, Edwin
-
Hi @"ImNishat" , So you are looking for something like this: You can load this Modern dashboard into your environment via SWQL Studio. for more detail on how see Import and export modern dashboards. The XML to import:…
-
Hi @"ImNishat" , It took me a bit longer but maybe this is something you are looking for: First the Code: SELECT CONCAT('', [n].Caption, '') AS [Name] , [n].IP_Address , [n].Status , [n].ChildStatus , [n].DetailsUrl , TOLOCAL(MAX([n].Events.EventTime)) AS Time FROM Orion.Nodes AS [n] WHERE [n].Caption LIKE '%GRCRY%' AND…
-
Hi @"ImNishat" , Like i already wrote the information of the downtime is not recorded for ICMP. This is why you see the dash If you change ICMP into SNMP you will probably get some good results (if you have down devices with SNMP)
-
I only know how to get the last time the device was up. SELECT [n].Caption,[n].IP_Address,[n].Status,[n].DetailsUrl, TOLOCAL([n].LastSystemUpTimePollUtc) AS [Down Since] FROM Orion.Nodes AS [n] WHERE [n].Caption LIKE '%GRCRY%' AND [n].ObjectSubType = 'ICMP' But this will probably not work with ICMP. but you can try it in…
-
Hi @"ImNishat" , Are you looking for something like: SELECT [n].Caption,[n].IP_Address,[n].Status,[n].DetailsUrl FROM Orion.Nodes AS [n] WHERE [n].Caption LIKE '%GRCRY%' AND [n].ObjectSubType = 'ICMP'
-
I would suggest to use one of the following swql statments If you want to have one tile for Node A,B,C use the following statment fur up interfaces, For down interfaces just set the OperStatus =2 SELECT count(1) As [Status] FROM Orion.NPM.Interfaces AS [Interf] WHERE [Interf].OperStatus =1 AND [Interf].Node.Caption IN…
-
Hi Barry, I tried to send you a private message but I think you do not allow to receive messages from everyone. Can you tell me which version you are running? Do you use SWQL Studio? If you do not have SWQL studio you can also go to https://<your environment>/orion/admin/swiss.aspx. I prefer Studio. In studio run the…
-
Hi Barry, Let’s resolve this via a dm and put the solution in this threat. I will be available form Tuesday (CEST).
-
Hi Barry, It can be because you still filter on ‘%forti%. Can you change this into %% if so. it can also because you do not have the LogLevelEntry(D’s in your DB. Cou may comment out this where statement. Please let me know if this helps.
-
Hi Taylor, First my apologies. Due to bad health, I was not able to response sooner. Maybe you already found the solution. If not the following settings need to be made: hoose Generic Icon as the display settings and change ”/path/{0}.gif” to ”{0}” For the Name I added a tick by ”Allow HTML tags”
-
Hi All, I have created a query for someone. And for this person the response was good. The Query: SELECT TOP 25 TOLOCAL([LogEntry].DateTime) AS [Local Time] , TOUTC([LogEntry].DateTime) AS [UTC Time] , CONCAT('', [LogEntry].LogMessageSource.OrionNode.Caption, '') AS [Name] , [LogEntry].LogMessageSource.OrionNode.IPAddress…
-
Just installed 2023.3. Ran a DB maintenance. And it looks like the error no longer excists. Does anyone else tested 2023.3 for this issue?
-
Thanks Russell
-
Hi, My Appologies i did not responce sooner. I did not see the issue under resolved. The casenb is: 01250912
-
Hi, Maybe the attached SWQL query will help you: SELECT IPAddress, Caption, DetailsURL, Location, Status, TOLOCAL(LastSystemUpTimePollUtc) As [Last Poll], CASE WHEN MINUTEDIFF(LastSystemUpTimePollUtc,GETUTCDATE()) > 1440 THEN (tostring(ROUND(minutediff(LastSystemUpTimePollUtc,GETUTCDATE())/1440.1,1)) + ' Days') WHEN…
-
From NL I am wishing all MVP's and Thwack-ers a Happy New Year.
-
Hi Sadiq, For me it is not really clear what you are looking for? * Do you want to see all dates and times when a specific component was down, * Only show the last time the down occured, * show only the current down components and the time they are down.