Comments
-
I don't believe the file size monitor (or any of the OOB file check components) supports wildcard variables for the file names. I would recommend writing a PowerShell script to accomplish this. Something like from this post should be a pretty good starting point How to check file size using PowerShell Script [Easy Way] -…
-
RabbitMQ should only be installed on the Main Polling Engine, i've noticed that particular check as well on several additional polling engines, however, according to SolarWinds documentation RabbitMQ is only going to be present on the Main Polling Engine. Below is the KB article i've referenced. Success Center
-
willing to participate in this. Just sent an email.
-
Hi kavana33 , Something like below might work as a variable, I don't believe there is an actual column that is "Hardware" (at least none that I could find in the appropriate table). I think they are transforming the NULL's from the Orion.AssetInventory.ServerInformation table 'Virtual Host' that's what the below query does…
-
The only feedback i have is that after the upgrade a number of thresholds for ASA hardware health seemed to be messed up (using Orion defaults). to stop the alerts i had to go in there and set custom thresholds. The values it populated were correct, just the thresholds were messed up. But im loving the new ASA insight and…
-
Appinsight many times will only allow you to disable a limited number of components. Unfortunately even disabling components will not affect your license count for AppInsight for AD, it will still use 50 licenses. If there is no option to disable the component in question you can clear the thresholds so that it never…
-
What does it say when you test it?
-
hi vonzoom, this might be easier with a PowerShell script. See below for an example of one I wrote a while back $test = Test-path "INSERT PATH HERE\$(Get-date -Format yyyyMMdd)\INSERT FILE TYPE HERE(e.g: *.xml)" if ($test -eq "True") { Write-Host "Message: File Does Exist" Write-Host "Statistic: 0" Exit 0 } else {…
-
try ${NodeName}
-
Just a heads up because your upgrade path looked a lot like mine when i recently upgraded. After i upgrade my NCM module from 7.5.1 to 7.6 I was getting a bunch of businesslayer endpoint not found errors in the web console and the Orion Engine Module Service was missing from system services. The way i was able to resolve…
-
I would take a look at this article regarding testing WMI connectivity. I would test it to be able to see a more verbose reason for failure. Success Center - Test WMI Connectivity As far as not being able to change polling engines through the edit properties on the node I have a feeling you might be experiencing some UI…
-
If you go to "All Settings" and click on "Views by Device Type" it'll display all the views assigned to what device type
-
Just to ensure I understand clearly when you poll via an agent it finds the DNS and ADWS services correctly, but when you use WMI it does not?
-
Hi ryanjay15 , unfortunately, there is no out-of-the-box widget that you can use to get this information. You can add a custom query widget to your summary page and paste the below query into it should get you what you need on a summary page SELECT n.Caption as [Node], app.Name as [Job Name], app.LastRunDate,…
-
i remember that i had to create another rule and modify the message pattern it was using to trigger the RTCM. Below is a screen shot of the message pattern that i use for my ASA's
-
What does the C:\ProgramData\SolarWinds\Logs\Orion\ActionsExecutionAlert.log say?
-
Check out this support article. Should help you get what you need Create a custom poller to get more info from a node
-
how far along are you in the integration process? is it installed and your devices are discovered?
-
I initially put this thread in Alert Central however have not received any input so I am moving it to Network Performance Monitor
-
have you turned on session tracing to see if that provides you any additional information? Success Center - Generate Session Trace Logs
-
Yes, after you update the password you need to run the config wiz and update the password at the appropriate prompts so that SolarWinds will be able to connect to the database again. Success Center - Update the SQL password for Orion
-
Makes sense. Appreciate the reply.
-
Did you ever find a resolution to this? I am experiencing this in the latest HF release.
-
garett17 some of the most common ways ii see this being accomplished is usually by using Custom Properties as tags for things such as Sites or Region, then Supported Application, or Business Services. The great thing is with the ability to add Custom Properties at various object levels you get the agility to slice and…
-
what seems to be the issue?
-
i have applied the template unfortunately i believe the component you are referring to is disabled by default. and when i enable it and run a test against it, it states that component is not present. i have attached a screenshot of what i am referring to.
-
no i have not, i did not know this was out there. i will apply it right now. thanks so much
-
ok this is bizarre. my solarwinds has finally started to show the volume as "green" but it was after a flood of alerts that finally went through. the nodes went down at around 11am and solarwinds did not send out alerts till about 6pm. i think my solarwinds is just in need of a reboot or something. can anyone provide…
-
maybe a view with 6 left side tabs may prove useful. then they can use the left side navigation to go through each server. the down fall is that it would not all be on the same "page essentially" but might be a little cleaner.
-
vigneshwar you should probably read this Thwack article The Basics of PowerShell (part 3) your script is missing some of the requirements to work with SAM and that Thwack article should be able to get you on the right track.