Comments
-
@"Engineer84", you could use a PowerShell script monitor to accomplish this. I don't have a SolarWinds instance or Exchange to test it but something like below would probably be enough to get you started. #import exchange powershell module import $primaryActiveMaanger = Get-DatabaseAvailabilityGroup -Status | Select…
-
@"salman.khan", there's a ton of them in the SAM Application Template content exchange. I would give these a look to see if they meet your needs
-
@"LatteLarry", I believe setting an alert action that set it would be the easiest way. The alert logic for triggering would be the trickiest part, you could probably do it by alerting on "Group Member" and defining the criteria from there like Custom Property is empty and a member of this group. I don't have an instance I…
-
@"AlejandroSobral", the advertised limits are for what SolarWinds defines as default polling intervals or what they ship with out-of-the-box. When you have disparities such as this it's likely that the polling intervals have been increased (increasing the time between polls and reducing the total number of polls).…
-
@"jimmy_mccubbins", it is not natively supported, however, as indicated in the article you can move authentication to SAML. After you do this then MFA can be enforced via the SAML provider (along with any additional security measures are available with that provider) . This is the easiest way to implement MFA in my…
-
@"[Deleted User]", did you try having your DownloadConfig include the "Regex" portion from the example that @"bcorgey" provided? if not, I would try it with that, the Regex command basically lets NCM know what character it should be expecting in order to move forward, so make sure you put in the correct indicator that…
-
@"chrisorourke", since you have UDT all you should need to do is enable DC Security event log monitoring, and that data should start to be gathered via UDT.
-
@"chrisorourke", do you happen to own User Device Tracker (UDT)? I'm not sure the last login date is captured with asset inventory but I know without a doubt that UDT captures that type of information.
-
@"millenium7", within the job you can actually tell it to email you a result of the job, in fact, I think you can limit it to only email you whenever there is a failure.
-
@"mat12", what's the URL it's trying to hit? i don't have a copy of this application monitor so I cannot look myself. Additionally, I would suggest looking at this API builder for Graph, if the endpoint did indeed change this would be the way to find out the new endpoint to update to.
-
@"martian_monster", you're probably missing what you would've added as script arguments or credentials to it when running it in ISE, that's something I see forgotten quite often. make sure whoever it is referencing a credential or script argument you are filling in the appropriate data and try it again.
-
@"martian_monster", run the script in PowerShell ISE from the polling engine conducting the polling, once it is completed in the terminal run $Status.Status, it'll then output the returned status from Microsoft, you need to ensure there is a match for it in the block that takes the String data and converts it to an…
-
@"CK_Bengre", if you have SAM its fairly straight forward to conduct URL monitoring, take a look at this article
-
@"trivialpants", you might consider deploying an additional polling engine on the other side of the router on a vlan that can route, this should allow it to poll those vlans that are not routed locally and then offloading the data to the DB and Main Polling Engine over a routed network. Take a look at the scalability…
-
@"trivialpants", depends on what your goal would be? what are you looking to accomplish? is it specifically SNMP, or a mixture? Do these networks connect in any way such as a VPN tunnel, etc.?
-
@"dlharfst", is the UnDP polling the value an SNMP table? I believe that it has to be a a specific OID within the table vs the table. You can tell by looking at the UnDP. If it is a leaf looking icon then it is a singular OID, if its a table looking icon then its polling the table.
-
@"dlharfst", it should read {digitalsen1-1}\100. Give that a try and post the results if its not the expected output
-
@"dlharfst", can you post a screenshot of the transform formula?
-
@"mat12" and @"nglynn", 403 errors indicate some sort of permission issue. Either the account that you are using no longer has the ability hit the endpoint, or the endpoint no longer accepts those types of requests. Is the account you are using a registered app with the appropriate permissions? I no longer have a Demo…
-
@"tcox8", it looks like he created this as a modern dashboard. to make it a report might be a little tricky I don't have a test instance at the moment, but when I get my hands on one I can try and play around with it and post back to here.
-
@"makecrazy",I think you might have a couple of issues here. 1. Is ATM_Branches a custom property? if so I think you're missing a join to that table (I don't mess around in the SQL tables too much and I don't have a test instance to confirm) 2. After confirming number 1 then I think the syntax for your WHERE statement…
-
@"neomatrix1217" good find. I'm definitely grabbing that report. Thanks for sharing the find.
-
@"rkshprb", its because neither of those tables actually contain a NodeID column. You have to find a key between the two that you can use to conduct the join. In this instance I believe you can use componentId in place of NodeID
-
@"rkshprb", can you paste a screenshot of what you are attempting to do? It'll probably be more efficient for me to work with what you are trying to do.
-
@"marc.ortizm", hmm that is odd. Have you tried restarting the services?
-
@"rkshprb", you start it in the text field after the pre-populated query. you cant change the selection statement but you certainly can add in complexity using joins and such, you just start your join in the text field.
-
@"yang_CA", its seems that you are receiving different Menu Bars than them, when you log in to the web console the group that you are obtaining your permissions through is shown in the top right hand corner right next to your user name. If there is not group displayed it means you are getting your permissions via an…
-
@"cameramonkey" take a look at this article for Enhanced node status. that's what you're looking to do
-
@"DJ.PBC", it's possible that the widget is also correlating from the Orion.NodeIPAddresses table, perhaps you do your join to hat table find the NodeID that it has listed for that node and then display the caption. The way you are doing it now requires that the IP matches the Polled IP of the device which may not always…
-
Pretty close to what I came up with $computername = '${Node.Caption}' $ConnectionTest= Test-NetConnection -ComputerName $computername -port 22 if($ConnectionTest.TcpTestSucceeded = $true){ Write-Output "Statistic: 1" Write-Output "Message: $computername responds on port 22" Exit 3 } Else{ Write-Output "Statistic: 0"…