Comments
-
[screenshots deleted by Admin] Am I missing something here? It says I got it wrong but says in the reasoning that I should of had it right. DanielleH
-
I have not received my points as well. Is there any ETA on when we get the points?
-
I have received my points today FYI.
-
Hint for today seems to be a bad link. Here is the correct link: https://support.solarwinds.com/SuccessCenter/s/article/DPA-12-1-feature-Anomaly-detection
-
So it seems the issue is when I use EngineID: 1. If I use 2 or 3 for our additional pollers it works correctly. Not sure why this is the case though.
-
Yeah it is still not working for me. I have confirmed before that the pollers were being added in swql unless there is something I'm missing.
-
I feel like I tried that but I will give it another go and check.
-
1. Yes. I have been working on this for a couple days. I left one site and it got 1 sucessfull poll it seemed but continued to not collect data afterwards. 2, 3, 4. Yes. If I add it manually then it works correctly.
-
If there was 0 outages on that day then the swql query does not return anything for that date. Due to that it is not a part of the array and when you click on that day it will return an out of bounds error for the array. At least that is my understanding of that error. I didn't include days with 0 events due to not getting…
-
Hey I just finished making a working version of the tracker located here: Interactive Node Outage tracker Thank you again for showing me this whole new side of dashboard reporting! -Joshua
-
No problem. Im currently working on making an Interactive Branch Outage Tracker with this and will be spending time tinkering. This a great resource and excited to experiment with it! -Josh
-
wluther Thank you for this. Would it be possible to shorten the calendar to only show the months for the last 31 days like the screenshot below and not the full year?
-
Try the "Custom Query" resource instead of "Custom Table". Otherwise I would run it in SWQL studio and it may give you a more descriptive error message.
-
I have a query very similar to this one and here is an example of it being used to show total downtime. SELECT ST.Nodes.Caption AS [Device], '/Orion/images/StatusIcons/Small-' + ST.Nodes.StatusIcon AS [_IconFor_Device], ST.nodes.detailsurl as [_linkfor_Device], CONCAT(--Downtime formatted (CASE WHEN…
-
I would highly recommend getting familiarized with SWQL Studio (https://github.com/solarwinds/OrionSDK) and start try making queries yourself. I am not sure if there was a certain timeframe you wanted but below is an example query based on what you asked for last 24 hours. There are 2 ways I would limit the interfaces in…
-
Here are some examples for Response Time based on what I understand from your post. For current response time that is a pretty simple query as follows: SELECT TOP 10 N.Caption, Concat(N.ResponseTime, 'ms') as [Response Time] FROM Orion.Nodes N ORDER BY N.ResponseTime DESC If you wanted to get the avg response time for the…