Comments
-
I can't recall specifics on where I saw this recommendation but try sanitizing your Uri's first, I do this in some of my powershell scripts. Once you've got your data imported in some way and in an object... $UrisToRemove = @( $objectWithVolumeData.Uri | ForEach-Object { [string] $_ } ) $UrisToRemove | Remove-SwisObject…
-
@"koneal" - I've seen this before after removing a custom property that I missed in some alerts.. I "think" the Trigger field in alert configurations entity was where this was (pretty sure its just XML) and you basically use the query @"KMSigma.SWI" provided to search for anything you know shouldn't be in there.…
-
Those are great ideas... love it
-
@"bshopp", e.g. do you mean there's existing feature requests for this or that its being actively developed?
-
So those are basically the breadcrumbs of deleting the node.. The caption, and any other data that normally could be joined in is now deleted. The IP I thought was all that was left (in the audit or maybe event log). I could be wrong and maybe there's something else?
-
Hi there @"kashidha4", to answer your question directly... no you cannot "combine" classic and modern dashboards as far as I'm aware. You can create table widgets in modern dashboards, the below shared dashboard has an example of doing that. Granted, importing/exporting modern dashboards is not for the faint of heart and…
-
Future proofing it, this is essentially the same query @"Seashore" provided, converted into a custom SWQL variable that you could throw into an email action or similar for your alert communication to get the specific count for the interface that triggered the alert -- may need some adjustments depending on the timeframe…
-
Yessa!!
-
Are you looking to include this count in the alert data .. either in the message data of the alert or in the email / comms sent?
-
I know this doesn't really solve the "problem" perse... but this data is in SWQL and could be put into a new custom modern dashboard if desired. Then order it any way you want. Maybe its possible to create a custom query on the existing views and put a custom query there that could work but not sure. Doing so usually…
-
Hello @"robert777", try your query with these adjustments below. Basically removed the 2 INNER JOINS as they're not necessary. All this data is accessible through navigational properties in SWQL (that does the join work for you.) The DISTINCT is also unnecessary as every row is going to be unique (they're timestamped) so…
-
Samezees... that'd be great!
-
I'd love to have a custom property for accounts we could leverage in the manage accounts view.... and thats ALL I'm going to say (otherwise I'll rant)
-
And if you need to update it en-mass via SQL thwack.solarwinds.com/.../3024
-
Ok so this came out decent looking in a modern dashboard table widget. Below is the query I used to put together the widget pictured as well. There's more data that can be include, like source IP of the probe (it's an agent and has SWQL nav properties to it), destination IP/hostname, port etc. SELECT np.ServiceName…
-
I thought the data was in SWQL, would have to take a look. If I have a chance this evening I'll take a look in my lab and see if a query could be put together that may potentially be used for a custom query widget or modern dashboard view.
-
I apologize in advance for the questions but... Can you clarify what polled? Cpu? Mem? Status? All of it? Is it current? What polling method? Any corellation between any and how many show on the list? Are there issues with the assigned pollers? Maybe a wmi poller assigned to linux or something strange? Does performing a…
-
Here's what I'd do: * Identify the Application Template ID with the below query OR by editing the template and find the ID in the web URL. SWQL:SELECT a.Node.Caption AS [Node] ,a.Name AS [App Name] ,a.ApplicationID ,a.ApplicationTemplateID FROM Orion.APM.Application AS a Web: Go to "Settings -> All Settings -> SAM Settings…
-
Glad to help @"kalsigagan", those SWQL queries I think are a good starting point but you could surely add more data, columns, logic in them etc. to suite your needs.
-
Should be able to @"borgan", you can invoke swis verbs via the REST/JSON API. @"christopher.t.jones123" has pointed out all the necessery verbs, and I believe there are examples / details of creating the necessary POST requests there on the Swagger UI for those two IPAM verbs. Not very familiar with ansible though but I…
-
Glad to help @"Clinton.Neill", I'm curious if it could natively support regex search.. (I know PowerShell does "mostly" but I'm thinking about the Swis Verb itself and its inbuilt search capability) looks like a simple match e.g. comparable to using LIKE in SQL/SWQL. Let us know how it goes and if you run into any more…
-
Hi there @"Clinton.Neill", I think I may have it working with some adjustments to the XML format. Couple areas to update so it would work for you... * Line 3, change to Running or Startup as needed (or remove that string to search both * Line 5, change to your valid Core NodeID (note core node id is the Orion node ID...…
-
Yeah exactly. To rough out the process... * Create SWQL Queries for the data, I think at a minimum you're looking at perhaps 2 SWQL queries here (1 for the node data and 1 for the interface data) - below are some examples of each that may work for you.-- Node data query SELECT n.Caption ,n.DetailsUrl ,n.Uri ,n.CPULoad…
-
What variables are you using to create the links in your email action? Could you provide an example of the URL that isn't working?
-
Hi @"nafeeskhan29" do you have any links to provide for details around what you've mentioned to help @kpourmand? @kpourmand: * Have you opened a support case on this? (perhaps the next time you see this if you havent already, open a support case and use it as an opportunity to triage / provide diags) * What Polling methods…
-
I *think* you can do just that in Modern Dashboards... jus sayin'
-
Is there a support case opened on this? What versions are you running and on which OS?
-
Unfortunately I don't believe this is able to be done with the current iteration of Modern Dashboards...
-
With SAM you could use AppInsight... it's a ton of info but between all the components it should be able to get you some of the information you're looking for. documentation.solarwinds.com/.../sam-appinsight-templatesql.htm
-
I'm just here to chime in that -- this would be a cool metric to know. Do you have SAM or just NPM?