Comments
-
Edit the monitor and enable the component
-
You can export the UnDP pollers, but not where they are assigned to. You'll have to apply them again after import. https://www.solarwinds.com/documentation/en/flarehelp/npm/npm_2020-2-1/content/core-exporting-universal-device-pollers-sw503.htm
-
Audit can be only seen by the Admin accounts while events can be accessed by more users
-
You can find more information in the KB: https://documentation.solarwinds.com/en/Success_Center/orionplatform/content/core-downloading-the-solarwinds-mib-database-sw3581.htm
-
Google cached method works at the moment. https://webcache.googleusercontent.com/search?q=cache:exgo_ovAfnAJ:https://support.solarwinds.com/SuccessCenter/s/article/How-to-create-a-non-administrator-user-for-SAM-polling+&cd=1&hl=en&ct=clnk&gl=ro
-
Non admin users do not have access to the settings tab, but can access the manage nodes link. That option should be already under the Network menu bar or you can create a different one to present to the groups you want. Just check the customize menu bar setting, you should figure it out easily.
-
This is what we used and you can complete it further depending on your needs. SELECT Nodes.Caption, Nodes.NodeID FROM Nodes -----(from selecting node for "Set up your SQL condition" in alert) inner join Events on Events.NetworkNode = Nodes.NodeID WHERE Events.eventtype='14' and Events.EventTime < getdate() and…
-
To be more specific you have issues with sending emails on an alert that triggers on an event, like node rebooted? If so, it can be converted to a SQL trigger and it works fine from there.
-
SELECT TOP 100 A.DisplayName,P.Name, C.IPAddress,L.LastUpdate, C.MAC, CONCAT(C.SignalStrength,' dbm') as Signal_Strength, C.SSID FROM Orion.Wireless.AccessPoints A INNER JOIN Orion.Wireless.Clients C on A.ID=C.AccessPointID INNER JOIN Orion.Packages.Wireless.Clients P on P.InterfaceID=C.InterfaceID INNER JOIN…
-
Use this SWQL in reports and tell me if it's what you are looking for. SELECT ah.TimeStamp, ah.AccountID, ah.Message, ao.EntityCaption, ao.RelatedNodeCaption, ao.TriggeredCount, ao.RealEntityType FROM Orion.AlertHistory ah left join orion.alertobjects ao on ao.AlertObjectID=ah.AlertObjectID where eventtype=2 order by…
-
with the presumption that L.LastUpdate is the time column just add in the where clause, tolocal() is to be sure the time is in the right timezone. tolocal(L.LastUpdate)>=addminute(-10,getdate())
-
If you really want to see it there just do it like this, with node name or anything else you need
-
You can change the temperature unit per user/group from account edit.
-
Use Alert Object instead of Alert History and Alert History/EventType equal to 2, which is the acknowledge. Alert History/AccountID will tell you the username. Other details you might need are on the Alert Object table.
-
You can either change it to SWQL or just join it with the APM_ApplicationAlertsData table, make the components distinct to trigger only once and adapt a little the old queries. The only thing you need to look at is the email variables to be set right. An example is below. SELECT APM_AlertsAndReportsData.ComponentName,…
-
Just add the where cause WHERE SummaryDate>=addday(-30,GETDATE())
-
You should look at Custom Tile on node entity and work from there.
-
Just go to Manage Agent and look for one you already have the version you need. You can find the msi installer on this path C:\ProgramData\SolarWinds\Agent\Plugins
-
Hello, You are using the wrong table in the alert. Go and set up the alert for "Custom Table Poller Current Status" instead of "Custom Node Poller". You will have all the rows as a different object and you will get what you need.
-
You want to use SWQL which is the one who understands ${nodeid} instead of SQL. You can put custom query on the node details after converting the query and it will work as expected or just use a custom table if you find the details you need on custom universal poller table and you won't need to use a query.
-
You will never see it there if it's not set on Node under "I want to alert on:", the same way you don't see volume alerts there. F5 statistics are stored in different tables and selecting "F5 Device" will look for a different kind of objects.
-
Create a report with SQL, information is found in the APM_SqlBbClusterNode table. Just group them by instance (a.name) in case you don't have multiple with the same name, or group them by ApplicationID. You'll have to work on it a little depending how you wish to see the info and what is relevant to you. select…
-
Just use ServiceNow Instance on what you need to alert on and be sure to alert on either status or operational state.
-
Just put the AM at the end
-
Just use this SWQL and set the grouping and time on the chart. Select Rawstatus for Left Y-Axis and press the more button near it to select the time column, then just select the group by and label culomn as Label and voila SELECT ObservationTimestamp ,RawStatus ,labels.Label FROM Orion.NPM.CustomPollerStatistics cpsd JOIN…
-
Navigate to All Settings > Manage Agents and you have the try again button or click on More Actions > Retry installation after selecting the agent with problems
-
Choosing Automatically monitor based on my defined monitoring settings without modifying anything else will only add up interfaces. Just press on define monitoring settings and select administratively shutdown.
-
Did you try and see if you have all the information you need when creating an alert through Custom Table Poller?
-
Hello, All i could come to, in a short time, is the following, which doesn't bring up too much, but it's a start. Depending on which columns you need this may be tweaked, be careful with converting values to nvarchar. Application needs to be alerted on at the trigger condition. Below is the sql used in email besides…
-
Did you try with the "Run the script under specified account:" checked + local host execution and add the credentials to the component? We had it in the past and it was working like that. You might also want to try with invoke-command -computername computername -scriptblock { your script here } if it still doesn't take…