Comments
-
hey, there should be a 'canned' alert called 'Neighbor is down' something like this:
-
Hey, this should will help you. love running this badboys on a new environment:) Uncovering Polling Problems and Issues in Your Environment
-
The Thwack Camp was yesterday and the previous day, the videos should soon be available on demand. Yea i know what you mean i didn't actually get the link but i just used this: THWACKcamp 2019
-
This should work for you https://support.solarwinds.com/Success_Center/Network_Performance_Monitor_(NPM)/All_alerts_this_object_can_trigger_resou… iv noticed that sql alerts dont work with this though..
-
Nice one. i was checking a way to check the logs with Alert ID just like SAM app debug mode but i cant seem to find this this is a question ill ask separably. also here is a useful thread on the issue you experienced An error has occurred. it looks like its bug with versions cheers
-
can i ask what versions are you on? and have you upgraded recently?
-
Good Morning, Sounds like you might need to add an additional Action to your trigger actions. Edit your alert >select Trigger Actions > Add Action > select 'Log the Alert to the Netperfmon EventLog' if you can share a screenshot of the 'An error has occurred' should give perspective cheers,
-
just what i needed, thank you
-
Screenshots would really help on what you would like to see
-
To be honest, this is the method i would take: You 'could' have the API to update a Custom Property of a node, then based on the custom property create an UNDP poller... Managing Custom Properties · solarwinds/OrionSDK Wiki · GitHub NPM Universal Device Pollers · solarwinds/OrionSDK Wiki · GitHub my aim would be to update…
-
HI, one method, you have an out of box report called 'Interface Downtime Detailed - Last 24 Hours' once in the report, amend the 'Group results by:' the 'full name' column this will group the interfaces up. you will also need to play around with the 'Data aggregation:' 'Count' for your desired output
-
what is the resource/widget your using on the dashboard? you can do some filtering in some resources
-
HI, how long ago did you install? looks like it just needs to complete its initial polling cycles.
-
It would be beneficial to group your interfaces with a interface custom property something like where 'i_type' equals 'wan' this would save you time re-editing the same report over and over again will also help to add interfaces in ad-hoc
-
lol not sure how much help ill be here i don't have SQL db to hand and iv not encountered this problem off to a good start but ill try my best to help. what id do in your case is rebuild the statement and see what it is getting caught but firstly can you run the query in your db? and can you query the table a with no other…
-
The Swap space is located in the Orion.volumes table here is a snippet: SELECT hc.Caption, HC.TotalMemory, hc.cpuload, hc.cpucount, HC.PercentMemoryUsed, c.avgpercentmemoryused, c.DateTime, c.avgload, c.MaxLoad, c.minload, c.MaxMemoryUsed, c.avgmemoryused, c.minmemoryused ,V.VolumePercentUsed ,V.DisplayName FROM…
-
here you can find the relationships scroll down check the join clause Advanced Custom SQL Alert with UnDP
-
Hi, Recently I did a database migration to a new VM and didn't need to export UNDP pollers, the pollers just migrated with the database and were still assigned to the same nodes\interfaces after i hooked the new solarwinds modules up to the previous database
-
hey. Something like this? your need to create a custom query resource. and paste the below. sure you can group device or vendor etc.. SELECT I.MAC AS [MAC ADD], N.Caption AS [NODE], Alias as Description, IfName AS [PORT] FROM Orion.NPM.Interfaces i INNER JOIN ORION.Nodes N ON I.NodeID = N.NodeID WHERE ( N.Caption LIKE…
-
Why don't you just simply get SolarWinds Alert Central point both instances at Alert Central, now you have one single pane of glass for all alerts from both instances?
-
hey, i think they only issue with selecting the fields was because you needed the Orion.NodesCustomProperties table, try this: # Parameters $orionServer = "localhost" $orionUsername = "user" $orionPassword = "password" #Get snapin if (! (Get-PSSnapin | where {$_.Name -eq "SwisSnapin"})) { Add-PSSnapin "SwisSnapin" } #…
-
Cheers silverbacksays, ill go through the logs see whats getting written to them, if i come across any documents ill be sure to post back here
-
This thread is extreamly informative good work
-
im on my phone at the monent lol. everything joins primarily throuh the nodeid i cant test the follwoing query but heres the idea SELECT top 100 (*) FROM nodedata ND INNER JOIN nodes statistic NS ON ND.nodeID = NS.nodeID Im just slecting top 100 here beacuse this could be a huge query.
-
HI, The NCM_Nodes tables contains a list of nodes that have been set up to allow managing of configurations here is the NCM guide that will exaplin what NCM does in great detail. http://www.solarwinds.com/documentation/orionNCM/docs/orionNCMAdministratorGuide.pdf The nodes table contains everything you monitor with your…
-
i have tried to answer your question here Transient,Reserved,Used IP address - IPAM
-
You can try here: Alerts · solarwinds/OrionSDK Wiki · GitHub
-
Just a quick one do you have the 'settings' in the top right? you will need admin privileges to set this alerts
-
Also there are some built in Alerts that are already created for you in managed Alert like you said, you might not find what you need but you can tweek these alerts to your liking
-
you could use this Query i have put together just create a new report and add the below SWQL, you may want to change the headers. this query will retive the the last 24 hours worth of logs that contain the message 'snow' SELECT s.Hostname as [OBJECT], '/Orion/images/StatusIcons/Small-' + n.StatusIcon AS [_IconFor_OBJECT],…