Comments
-
What have you tried? What errors are you getting? Describe the issue.
-
What you did seems right, and I can't get it to work in the proportional widget, but I can get it to work other places like tables. I also looked at it in other examples, they are using the same field. (examples I used from the article below) All in on Modern Dashboards - Newsroom - Hybrid Cloud Observability - THWACK…
-
I hope to post a dashboard, alerts and scripts and a how-to write up in the near future, but nobody likes to wait, try out this SWQL for a report or dash. You can remove the filters for expiring in the next 90 days or already expired. SELECT [Comp].[Application].[Node].Caption as [Server Name] ,…
-
I don't have your OID around here to test, but does this help: SELECT TOP 10 N.Caption, N.status, N.PercentLoss, N.NodeID, CM.Container.DisplayName, CPA.CustomPollerName, CPA.CurrentValue FROM Orion.Nodes N INNER JOIN Orion.ContainerMembers CM ON N.Caption = CM.Name JOIN Orion.NPM.CustomPollerAssignment CPA on N.NodeID =…
-
So first off, everything @"cheryl1" said is solid advice. And her training is always worth every minute you spend there. I find that we have to track the devices that are routers manually (same hardware used in for both in some cases, so I have a custom property for it. Below is a sample of SWQL that I might use to get the…
-
Conceptually, it's like what you have read about sending data the other way. First identify the fields that you want from a CMDB CI to go to a record for a IP or subnet in IPAM. In IPAM, then create the custom property to hold the BMC data in the 'Manage custom properties' page. 'IP' node is the record for an IP, the…
-
You could use the same SQL Server with new databases, but I don't see a way to run 2 instances of Orion/HCO they have a lot of overlap. However. if you are resource constrained, possibly virtualization can help you out. What sort of resources are you working with?
-
We assign the MRC license to our admin account, and start up the application with that account, so we it connects to a remote machine we don't need to re-enter it. You can also set up smart cards I believe.
-
It gets truncated, none of the filter after where that replacement is is kept, so no filter applies. No error though
-
I would start with: Process Monitor (SNMP) (solarwinds.com) You may also want to monitor the port is listening, likely UDP 514, but it could be TCP or another port depending on your config.
-
If you want the last day try something like: and DateTime > ADDDAY(-1,GETDATE) in the where statement. Other datetime functions at: SWQL Functions · solarwinds/OrionSDK Wiki · GitHub
-
Edit: Bad link, copying the info from another thread here by @"dgsmith80" and @omavel SWQL for report or widget to try SELECT nod.Caption AS [Node] ,let.name AS [Message Type] ,SUBSTRING(Message,1,100) AS Message ,CONCAT('https://swm.veeam.local/Orion','/.../syslog') AS _linkfor_Message ,TOLOCAL(DateTime) AS [Log Time]…
-
If the file is there and the permissions to get to it are fine, call support.
-
Try the https monitor and make sure that you aren't ignoring CA or CN errors. HTTPS Monitor (solarwinds.com)
-
If you are alerting on the node that is muted, the mute suppressed the alert from triggering. For this type of issue, I have a dash for admins to review, and a report that can be emailed. Unfortunately, a muted node can't alert on itself, so an alternative is to use SAM to poll the Main polling engine and to get a list of…
-
Excellent, this will improve our firewall rules
-
So you would be able to add it as a domain admin, or install the agent and it does just fine with no user. There may be ways to create a user and delegate enough rights, but I have it working well with just the agent.
-
Today there is no hotfix for older versions you need to install 2023.1. I have seen articles mention that a patch for older versions may release, but I honestly have not seen that from SolarWinds. Today you should plan to move to 2023.1. Tomorrow? Look at: https://customerportal.solarwinds.com/downloads and see if anything…
-
It works, but your security may impact how well. Agents do make this type of polling more consistent since the script is not run remotely anymore.
-
Looks good. Try it.
-
1. I do not think so but check with support. 2. The additional polling engine installer handles what modules are used, just run that install. 3. If you license an additional polling engine, then you just need to make sure your module licensing isn't over, whether that is node or element, etc. 4. I have put additional web…
-
If alerts are 'stuck' after the reset condition is no longer true, try: How to clear triggered instance of alert from the Orion Web Console (solarwinds.com) If the alerts don't clear on their own after the conditions to trigger them are no longer true take a look at: Define the conditions that must exist to reset an alert…
-
There is a SFTP service in the toolset, and I think in the customer portal you will see a download listed under NPM or NCM in the additional tools near the bottom.
-
I think that the 'in use elsewhere' is because the servers in the database for engines don't match what you are trying to connect from. It's just a guess, and support would know for sure. Moving to new hardware, I have used the HA features, you mentioned 2 main pollers so I bet you are familiar. Look at: Migrate the…
-
This is not built into Orion my knowledge. I would make a custom property for it and populate it with a script. This PowerShell snippet is how to figure out if IIS is there: $IIS = Get-WindowsOptionalFeature -Online -FeatureName “IIS-WebServer” if ($IIS.State -eq "Disabled") { Enable-WindowsOptionalFeature -FeatureName…
-
I can confirm its not you, and that www.solarwinds.com is there. I can't say if SW Operation is aware.
-
Does this help? Success Center (solarwinds.com)
-
Agreed, the agent runs as system and avoids the need for assigned users in most cases. Exceptions might be things that involve rights to query a database, etc.
-
I tried your rest query and it worked, but maybe use SWQL studio to validate the query first, then copy the curl command out and see what happens.
-
How far do you get? What part are you looking for help with? Is there an error?