jrouviere ✭✭✭✭✭

Comments

  • OK, so this wound up being a little bit more complicated via SQL than I originally thought and working into an alert is going to have its own challenges, but this is what I have so far: SELECT *, (PivotTable.[Segments Retransmitted/sec]/PivotTable.[Segments Sent/sec]) as Ratio FROM ( SELECT cs.componentname,…
  • TIL that you can use a variable modifier to return the previous variable, however, I'm not sure how that would work if you're using the query that I gave you or if it will still work if the component is down, but you may want to give it a try: Variable modifiers
  • Hello Ahmed, There are several moving parts here. It's going to be the most efficient use of your time to reach out to Support. The bulk of your current issue appears to be certificates. Your agent reporting from 1969 likely either didn't get all of the certificates, or can't connect fully to the LEM. The existing agents…
  • I was having the same issue and this helped resolve it, thank you!
  • Not sure what else it could be then. Are you manually running the module or feeding it values from a script? May want to make sure it's getting the right values if you're using it in the script. The first few times I ran it the pollers were showing up as not applicable, so I couldn't even manually enable them. That was the…
  • OK. That makes some sense. So what I think you're seeing is that your temp is likely filling up due to a failed backup which may be causing your issue. I would encourage you to get in touch with Support to have them review your setup, but this all may be caused by your archiveconfig settings. If you go into the manager…
  • OK, so to clarify when you run the discovery for the nodes, only a few show up as discovered? If you try increasing the SNMP timeout/retries or removing the SNMP credentials do you get different results? One of the things that I'm testing/fishing for is to see if they might somehow be caught up in Discovery's…
  • Patch Manager can produce this info and it has nothing to do with Powershell (Patch Manager uses WMI to do it). I think the root of it at this point is like you said, you're not sure on the templates being used or how to implement the one that you appear to have set up. If we start from a new task (for testing) the way…
  • If you were able to change to Server Initiated Communication Orion would reach out to the agent on port 17790 instead. Agent communication modes
  • Looks like these are some of the fields: Property NameProperty ValueEscalationLevel0executionIfAknowledgeTRUEexecutionRepeatTimeSpan0HttpRequestBodyHttpRequestMethod1HttpRequestUrlhttp://www.example.com I was able to find this with a query: SELECT TOP 1000 ActionID, ActionTypeID, Title, Description, Enabled, SortOrder,…
  • It sounds like you basically found it, the Agent uses a lot of the same services and plugins, but would only be listed as the SolarWinds Agent service, not the separated services that you would see on a polling engine. Additionally it sounds like you likely have an application template that could be updated, review the…
  • Those are instructions that worked for LEM versions prior to 6.3, for 6.3 you will want the following: Reset admin password for LEM 6.3 and later - SolarWinds Worldwide, LLC. Help and Support Short answer: You're going to need to call support.
  • The two main pieces where Automation Servers (AS) are going to help is facilitating network connectivity: * Talking on a specific port. * Can be used to distribute the load over WAN. * Can be used to distribute the load of management tasks. It would probably be a waste of SCCM to use Patch Manager to manage your tasks, so…
  • Everything DISA STIGs for your Network Navigate via Configs Tab > Compliance > Manage Policy Reports > Shared on Thwack Tab.
  • I think you can bridge it out to other tables like CustomPollerStatus and use RawStatus to get what you're after. So I added: p.CustomPollerStatus.RawStatus to the select for your query. You may want to set a limit like "SELECT TOP 100" or something at the start because when I was playing around with it even in the smaller…
  • It doesn't strike me as a supportability issue, so maybe I'm not understanding the direct issue like I thought. Do you have a screenshot of where you're not seeing these IPs resolved? Have you confirmed directly from the server that it's able to resolve the DNS of the node by pinging by hostname, nslookup, etc? Are these…
  • If I'm understanding your ask correctly: Dependencies. Define and use dependencies in Orion NPM - SolarWinds Worldwide, LLC. Help and Support In our site we don't have an A/B setup like this per se, but for each of our tiny satellites we created a group of nodes/etc for the site and then put the dependency on the upstream…
  • I agree with your assessment on SWQL knowledge. Once upon a time that was in the works, but life happened and outside of the Devs and Head Geeks I'm not sure how many people at SolarWinds have any more knowledge. It's definitely there, but for the rest of us it's largely self taught. Here's a few resources that I've found…
  • I've used it in the past and it did appear for all users, so I did it after hours and let the NOC know in case anyone was around to ask anyway.
  • Orion.Interfaces doesn't exist, it's actually Orion.NPM.Interfaces, so making that change appears to make the query return results for me.
  • Looks like I left off the 'S', make sure it's plural: AlertObjects.AlertNote. If you're still having troubles post your revised query and I'll check it. (Note: I've edited my above post to correct the mistake.)
  • It's a classic scaling question, you can always estimate, but you're not likely going to know every nuance until the solution is deployed. Let me try another example. You have four domain controllers, you apply the AppInsight for Active Directory template to each of them (I don't know the actual numbers, so continuing with…
  • I would recreate the inventory task from scratch then and give that a try. If the task was there prior to your certificate work there are likely some holdovers that can cause an issue.
  • My guess for what frgpugs is getting at is: You need to have "Allow signed updates" enabled as well. Configure clients using Group Policy - SolarWinds Worldwide, LLC. Help and Support Three things at a minimum: * WSUS certificate. * WSUS Server location. * Allow signed updates. This is working with third party updates, if…
  • Hello Mikelbeck, There's multiple different ways to get that information. For one thing, if you're using Update Management or the Update Management Wizard to handle your patching from Patch Manager, you can export the task information to find out which machines were updated and on which date. That may still be too much…
  • Yep, wow. Not sure how I managed to gloss over the http part. I think I assumed you were just trying to get that little extra for the version and focused in on that. Reviewing the Regex examples that are linked to the Job Specific Details part of the job: Filter the results of an executed script It looks like you do have…
  • Yeah it looks like the script is working fine, but a time offset is being added. Can be overcome by a simple change, but not sure if that's the intended behavior or not. I think I like that it's trying to keep Time Zone in mind, but I'm not sure if that's consistent since the script works for nodes without the change.
  • Hello Alex, In short "Yes". If you would like to use Patch Manager to schedule everything with Update Management and you are only working with Microsoft Updates then all you would need to configure from the client side (or via Group Policy) is the location of the WSUS server. Typically Patch Manager is being used with…
  • Sounds like you want to create a Directory Service Group: Configure directory service groups in SEM
  • Most of my information was assuming the agent. I'd give it a try on one system and see if that helps clear things up for you, but if you're using SNMP I'm sure there's a place you could use to confirm the information locally on the server, I just don't know offhand. I'd start with an SNMP walk and make sure of what you're…