Comments
-
Hi, try this. Seems to have solved the issue in my lab: - Edit the user account - Under User Device tracker settings, change "Device tracker inventory pages" to "disallow" and save - Edit the account again, this time setting the same value to "allow" and save - Now it should work
-
This is not SQL, but SWQL. You might not find the same names in SWQL as you see in your database. Can also be that they are visible in views in SQL, not tables. The query works for all nodes that solarwinds has topology data on.
-
Sorry, that is just not true. The AI is hallucinating…
-
should they create and edit the custom properties themselves or just adjust the values on each entity?
-
Hi @RAJPAD , I heard that once before. It then was an issue that the SolarWinds server didn't have access to internet due to some proxy issues (or didn't have access when some service was started). A restart of the server solved it then. If this doesn't help I suggest you reach out to support.
-
Seems to be working for me. After the registration there is another window popping up with a question. After that you get the download button. I have sent you the link in a PM here also.
-
Below query give you all A-records that exist more than once. Unfortunately for you in this case, some records should exist more than once. So this will give you alot of false alerts. Also, not sure how to implement this on an alert-rule. SELECT Count(D.DnsRecordId) AS QTY ,D.Name AS RecordData FROM IPAM.DnsRecord AS D…
-
I don't think it's possible. Nice idea though
-
Depends on what kind of information you want to see. Below query will give you some basics on just Network devices: SELECT N.Caption AS NodeName ,N.IPAddress ,N.Vendor ,N.MachineType FROM Orion.Nodes AS N WHERE N.Category=1 -- 1=NetworkDevices
-
No, you should be fine. Just go ahead!
-
If you haven't set up any specific monitoring for all your processes, then SolarWinds does not have that kind of information. You can, however, add information about how much CPU the processes you do monitor are consuming.
-
Hi @Sivaprasad I'm not sure there is an easy way to do this but here is a start for a SWQL query that can get you started. SELECT N1.Caption AS SourceNode ,N2.Caption AS DestinationNode FROM Orion.Nodes as N1 Inner JOIN Orion.TopologyConnections AS T ON N1.NodeID=T.SrcNodeID AND T.SrcType <> 'Orion.ShadowNodes' INNER JOIN…
-
It was down yesterday due to "bigger disturbances" on the web.
-
The Rest API port, or SWIS endpoint, does not use the same certificate as the normal web service on port 443. By default it's a self signed certificate. But that can also be changed. See this page, at the bottom:…
-
Hi @gaba8696 Yes, you should be able to run your mute-script from task scheduler. You can also use the new reoccurring maintenance scheduler, built into SolarWinds…
-
Hi @ShoutDown Only if the custom properties has a value assigned to them on this particular node, will they be shown on this widget. Empty custom properties are not displayed.
-
Hi @martian_monster Neither the table [sys].[sql_logins] or the function [LOGINPROPERTY] contains that information. MIGHT be possible with a lot of extra digging around, maybe in the log book. But not as easy as above. (For details about [LOGINPROPERTY]:…
-
Short: Yes You just have to start an eval instance of Observability Saas and it will continue to role as long as you have the platform connect going.
-
OK, normal event log monitoring should work also. But make sure the script outputs a 1 when it finds an log post you look for. If you can make that happen you can then create an alert for that.
-
Hi, I would say that they don't. To be certain you can look at the license usage in saas, (Settings / Subscription). It's quite clear there, in my opinion, what licenses are used.
-
Should be solved now! Works for me 👍️
-
Ok, first - do you get 0 or 1 in the component when you have set up the monitoring? If that works, then you create an alert rule to trigger when the value is wrong
-
We see it and are working on it….
-
Hi Chuck252 @stuartd I saw you tagged my here but your comment didn't make it in the platform conversion it seems like. I don't have any NCM nodes in my lab so I can't create the full SWQL for you. Note that in the backup jobs you can configure them to not save them if there is no change. But then you shouldn't have a…
-
CONGRATS att MVPs and welcome all new once!
-
Already implemented, see Activate licenses for SolarWinds Platform products The License Manager should be in the offline mode, as indicated in the top right corner of the manager. If it's not the case, go to the URL in the browser and append "?offline" at the end of the URL. https://<SolarWinds Platform IP or…
-
Hi @"Sivaprasad" I took your query to SQL MGMT studio and it worked fine. I then stripped out all that is not necessary. Then added the mandatory parts from the alert-window, still in SQL MGMT studio. To test the query. Worked fine. Now I added it as an alert trigger and still works: Here is query: -- Mandatory part SELECT…
-
Ok Then I suggest that the Boomi team send the "alert" to SolarWinds via a normal trap or syslog. Via the standard ports for traps and syslog. No SolarWinds specific API for this, just normal trap or syslog (I would go for syslog). You can then set up an alert in SolarWinds that triggers right away when the syslog reaches…
-
Hi @"Tony_NIWC" I'm an SE but in Sweden. I'll make sure a local SE contacts you.
-
I'm assuming you run this as a SAM Powershell component. Then you have two options for execution mode: Local runs the script on the Polling Engine Remove runs the script on the monitored server Also, make sure the module is available to all accounts and no installed to just your account.