Comments
-
I'll have a play in the morning, and sort it for you.
-
Hi, Glad that's sorted Unfortunately I don't have any Exchange devices using the AppInsight template and because of which, so far I have not managed to get the "Users by % Mailbox Quota Used" to load, to be able to see the options available to you. But there are two possible options. Firstly, does the "Users by % Mailbox…
-
What with the raw status being a text string, it's going to be hard to set a trigger against it. I suppose you could parse the status for m(inutes) or s(econds) as my examples only contained w(eeks) and d(ays). But there is an easier way and it will notify you as soon as it it happens, just enable the EIGRP SNMP traps. Add…
-
Sorry, don't add it as column. Go to the Hostname column (Edit the table) and click Advanced. Under there you'll find Add display settings drop down, add Details Page Link and the hyperlink will be the hostname of the device.
-
Stick said IP into either your DNS or your local host file (/etc/hosts or c:\Windows\System32\drivers\etc\hosts). then edit /usr/local/webhelpdesk/conf/whd.conf (sorry you'll have to look up where the Windows file is). So that the default port is 80 (or 443 if you're using https) DEFAULT_PORT=80 Then restart the service:…
-
p.s. It will create a worksheet for each table or graph within the report.
-
tdanner looking at something similar, we have a customer (with NCM backups) who wants to update their device passwords every 10 or so days, and I am looking at a way to use the API to not only run the update scripts, but also to update the profile password. This functionality would be very helpful. Is there an actual…
-
Try here - Create an NCM report that shows the licensed nodes - SolarWinds Worldwide, LLC. Help and Support
-
If you run: SELECT aat.ActionTypeDisplayName ,TimeLoggedUtc ,AccountID ,aud.ActionTypeID ,AuditEventMessage ,NetworkNode ,N.Caption FROM [SolarWinds].[dbo].[AuditingEvents] aud INNER JOIN AuditingActionTypes aat ON aat.ActionTypeID = aud.ActionTypeID INNER JOIN Nodes n ON n.NodeID = aud.NetworkNode What do you see? If you…
-
Praveen, The 'Unique Name' will be whatever you called your SNMP poller, so replace this for yours. 3 being an status of active, this will alert when it returns any other value. Hope it helps.
-
The clue is in the error message The server you are running it against, doesn't have the Get-HPilo commandlets installed. Try switching to Remote Host execution and have the Get-HPilo commandlets installed, on your Orion server.
-
Woooh matey, calm down, I did not mean to offend or start a flame war. My silence, was only due to me working - writing PowerShell monitors to extract the DNS request being loaded upon one of our struggling AD boxes. Look you're SCP, yet your not encouraging people to use PowerShell, fair enough. I am too and I will:…
-
Hi Max, Sorry, I wasn't at my computer when I scribbled.... My bad. Now tested and error free (on my SWQL Studio anyway). SELECT a.Name as ApplicationName, a.Status as [ApplicationStatus], a.DetailsUrl as [ApplicationDetailsUrl], mb.Database.Identity as DatabaseName, mb.Database.Status as [DatabaseStatus],…
-
aLTeReGo yes it surely is! But I have discovered that if you use the recursive Enum Class, it allows you to drill down into each of the Top Level Classes to reveal the Properties beneath, which fit nicely into the WQL statements. So it really is a simple as "SELECT temperature FROM ThermalProbe" or "SELECT…
-
I managed to find a couple of devices that support the EigrpUpTime OID, but it appears that the data coming back is a text string. Also the RowID, I was expecting to see some refernce to the EIGRP, but these seem rather cryptic. NodeName Status RowID Cisco1 15w0d 0.245.0 Cisco1 1y30w 0.245.1 Cisco1 1y30w 0.245.2 Cisco2…
-
It'll reset to zero and start recounting.
-
As the OID is a counter, graphing the results will only ever give you an incrementing line, well up until the link drops/resets and the counter restarts at 0. I would be far easier to create an alert, that checks the Status (cEigrpUpTime counter) and RowID (eigrp IP address), both from the CustomrPollerStatus table. If you…
-
And both are available in evaluation versions!
-
garyblack I have adapted the script slightly, but I got it working - DFS Backlog (RG)
-
lol - yup Run the report and look at the top of it:
-
Right, I haven't tested this, at home and on the wrong laptop, but it should work. SELECT NodeID, IP_Address, Caption AS Hostname , DATEDIFF (mi, LastSystemUpTimePollUtc,GETUTCDATE()) AS [Minutes DownTime] ,'/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:'+CAST(NodeID AS varchar(256)) AS [DetailsURL] FROM…
-
Hi Krishna, Send a screen shot of the UDP Poller configuration and the alert trigger and I will have a better idea of what is going on. Regards, yaquaholic
-
Maybe a better way is to test that PostGreSQL is available, by way of a user connection? And have you tried the SolarWinds PostgreSQL templates? PostgreSQL We had some PostgreSQL DBs, on Linux, we used some of the canned template, with scripts added to run simple connections and query tests, to ensure the DBs were…
-
Okay, now that's a little clearer I have had a look at this. I will assume that the screenshot above is from the Process Explorer, which uses WMI to get the running processes from the remote computer, giving this Task Manager like view. I have checked on the process monitors I have in place, and they do not reference the…
-
Yes, my column returns a number value for the status, so I append the .gif suffix. But other columns can return the icon name so {0} would work fine. When in doubt, open up your favourite SQL workbench and go and investigate.
-
Feature request:
-
Weird! If the drives are being listed, when you List Resources, then it appears that your snmpd.conf is fine. grantallenby's suggestion of examining the hrStorageTable (1.3.6.1.2.1.25.2.3) is a good start. If that is populated with with disk size/utilisation data, then it looks like time to raise a ticket with SolarWinds…
-
Fantastic, thanks I also noticed there was a ref to i.IntId, which should have been i.InterfaceID, once correct the tables are populated.
-
Pretty sure it just uses the system default. Try running this within a test application template, PowerShell component: $version = $psversiontable.PSVersion $edition = $psversiontable.PSEdition write-host "Statistic: $version" write-host "Message: $edition" And run it, making sure you have Execution Mode: Local Host before…