Comments
-
This is great, I will get this implemented right away!
-
Very nice and inspired! I believe you can add volumes using the API though, through a discovery, there are some threads in thwack about it and also in GitHub. Haven't tried them myself but they look promising. How do you add volumes using the rest api? how to add volumes to monitored resources via rest API & curl Discovery…
-
Great stuff, Love it! I've added one line of code in my implementation to avoid that nasty 'invalid row index undefined' Just add: if (selectedItem.row === undefined) {return;} Between lines 46 and 47 if (selectedItem) { var dateindex=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"] End result…
-
Great addition! I guess the PoSH scripts run under the specific service account which is defined in the credentials ring ?
-
I do not hold any current DPA instances at the moment, but will give this a try as soon as I get my hands on a new environment, nice work!
-
Glad you like it! All is changed is the JavaScript, it may have got cached in some way I guess.
-
Good point! CourtesyIT, just in case you missed the first mention
-
I think this is the first time I totally agree with all the items in the list, very important additions!!
-
Pretty impressive, nice work! May I add just a small tip here to make your life easier for your next .NET code, you don't need to run the configuration wizard to include a custom resource in the resource picker as long as you: a) Delete the file C:\ProgramData\Solarwinds\Orion\WebResourceCache.xml and b) Restart the…
-
Great work and tutorial! Happy to see SAML 2.0 is now supported!
-
Absolutely, check your PMs in slack!
-
Any insights how is this going to be delivered? I.e., through the SolarWinds Agent or by using another app? My assumption is that an add-on/module will capture traffic and transform to NetFlow v5/9 (NBAR2? ) packets.
-
Hi dimitrs, Are you looking after - generating a report on a specific time of day? or - generating a report that will display the nodes that were down on a specific time of the day, e.g. between 2pm-4pm working days as an example? both are doable, just different objectives Regards, Antonis
-
Will, an excellent contribution as always!!
-
welcome on-board everyone and congratulations!!
-
The message center is a correlation of (Orion) Events + Audit + Traps + Alerts + Syslog all together in one screen. There are two possible ways of achieving this, with the first one being polling for the above corresponding tables/entities every now and then, however this is obviously not a preferred method (Polling vs…
-
I've tried something similar on SWQL Studio to simulate and it seems there's an issue with sorting by the datetime fields? I was able to successfully order by other columns (NodeID, statistics, etc.) but not any of the datetime fields. How are you trying to get the report down? using the web reporting engine -> custom SWQL…
-
Hi, are there any plans for implementing the HA feature over a WAN network? Prosperon - UK SolarWinds Partners Installation | Consultancy | Training | Licenses
-
The Custom SQL Alert has a pre-populated SELECT statement that cannot be amended, so you need to adjust your -already-working- query by joining the two together. Try the following and see if it works: INNER JOIN (SELECT N.NodeID, N.Caption, V.DisplayName, V.VirtualMachineID, VMV.Capacity, VMV.FreeSpace, C.NameFROM Nodes AS…
-
Hello! AFAIK there is no (official) documentation for the custom query widget. There are two built-in functions _IconFor_ and _LinkFor_ that are awaiting the full URL each time. It is a simple if statement for the column name override and appending <img> tag in the HTML. If you're good with JS you can have a look at the…
-
Which version of VMan are you using? Latest version should look similar to the screenshot below, which allows native polling using the VMWare API from the radio box. If upgrade is not in your immediate plans, you can add the node as ICMP (or/and SNMP if this just a standalone ESXi host) then click on the checkbox below to…
-
This has been discussed in other threads as well, have a look here: Linux Memory Utilization Monitors and You There's also mention on this website: Help! Linux ate my RAM! Happy memory hunting
-
Hi, Have a look at this thread: Custom Table resource limited to 100 rows of data by the looks of the screenshot you are not running Orion v12, so you should edit your \inetpub\SolarWinds\Web.Config file and look for the "ReportingTableViewMaxRowCount" setting Antonis Athanasiou Prosperon - UK SolarWinds Partners…
-
Hi Jakub, I've created a template based on other users' templates which allows you to monitor the Dell Physical servers by regular Agent/WMI based but also implement a SAM monitor (leveraging a free SNMP library) to get disk and RAID controller based statistics. See below: Dell Server - Storage Hardware Health v1.2 PS:…
-
I have actually updated the MacPrefixes table with a couple of unknowns that we had here and it works for both IPAM and UDT. Looks like both products do retrieve the vendor information from that table. Not sure why, UDT displayed the new vendor immediately while IPAM needed 15-30 mins to refresh, not sure why.
-
Hi, This could be caused by a number of reasons, but I would suggest to do the following as first steps to troubleshoot where your bottleneck resides: 1. Reduce the timeframe to the minimum (last 1 hour for example) and see if that makes any difference 2. Enable Hubble to have a breakdown on each page loading time Turn on…
-
Hello, this is not a python command, instead needs to be executed in your Linux shell:
-
I'm lacking access to a SAM environment at the moment, but I believe you are not using the correct entity in your query. Orion.APM.Wstm.Task refers back to the Scheduled Tasks, you may want to query the Orion.APM.IIS.Application entity Bear in mind the above will only report against the *monitored* IIS instances in your…
-
Hi, You need to edit the c:\InetPub\SolarWinds\PrecompiledApp.Config file: From: <precompiledApp version="2" updatable="false" /> To: <precompiledApp version="2" updatable="true" /> you also need to recycle (or stop/start) the IIS application pool and you're good to go PS: Nice change btw, I can see it being useful!…
-
Hello! on your query, you are using 'Hostname' on your ORDER BY, but you are not selecting it in the SELECT statement (neither aliasing it). Maybe try 'ORDER BY Name' ?