Comments
-
@"rsharp-cok", what is the content of the report and does it need to be exportable? if it doesnt need to be exported you could make a base Modern dashboard and then you can change the filtering by changing some values in the URL. Filter data on modern dashboards using global filters
-
@"hebron1212", so its kind of hard to explain whats going on, but I'll try. What you are seeing is a result of the way the joins are working. whats happening is that it is picking up an account that did in fact mute the interface at some point in history and then you are seeing the most recent one as well, the reason the…
-
@"yzyrlr1", sounds like the recipient is unable to receive HTML formatted emails or something is stripping it out. I would check to see if the recipient can receive HTML formatted emails, and then see if there's something in between that is stripping out the HTML properties because of exceeding X number of hyperlinks, etc.
-
@"michaeltking79", so I would recommend providing a screenshot of the actual volume details and perhaps the volume properties as well. you could also try and unmanage/remanage the node to see if for some reason it is an old status that isn't updating for whatever reason.
-
@"michaeltking79", that is referring to a Volume called Physical Memory. If you don't want the memory to report in the context of a volume then you need to delete the Physical/Virtual Memory that's likely being monitored from that server, to avoid a bug while doing it be sure to unmanage the volume prior to deleting the…
-
@"MohamedAbdelrazik", yes you can. The alert object needs to be set to "Auditing Event" from there you can scope as needed.
-
@"sum_giais", not that i have been able to find. The workaround i've done for years is two accounts. One that has management rights over the particular nodes that they are allowed to edit, and then one that is Read-Only to everything. It's a pain for managing and for users that have to maintain two accounts, but yea it is…
-
@"curtisr", the first thing that comes to mind would be credentials. Are you using the same credentials when running it locally on the SolarWinds server and when attempting to do the Get Script Output in the UI? If not, perhaps you try that, it could be that the credentials you are using in the web UI does not have the…
-
@"John W Johnson", you trying to update them via a CSV through powershell?
-
@"Christopher.King", as long as they are monitored interfaces you could just make a regular web based report and scope it to interfaces with the string you want. If they are not monitored interfaces, then a compliance report would probably be the route to go but it'll likely be a little tricky and probably not in a…
-
@"Christopher.King", What kind of data are you trying to display in the report?
-
@"John W Johnson", So below is a script that I have that can do a bulk import of External Nodes and then modifies a Custom Property during that time. It should have the requirements you need to get it to work with some modification. Some key difference between yours and mine is that it looks like you take and build out a…
-
@"northernscum", refer to this THWACK artilce
-
@"mugbukdotcom3", yea unfortunately that article presents the symptoms as it relates to a different issue. But its one of the better guides in terms of clearing the subscriptions, so I just use that one all the time and ignore the symptoms it talks about cause I've seen a need to clear these without the symptoms discussed…
-
@"mugbukdotcom3", seen this a couple of times with various different object type custom properties. Most often resolved by clearing information services subscriptions
-
@"jasonf1971", so you could remove the WHERE statement in its entirety which would remove the constraint but would effectively be all nodes. OR if you wanted to just grab the ones where the City field you could change it from looking at a particular City to looking where it is not NULL or it is not ''. Something like below…
-
@"lahmad", @"TimWhite_LC2" is referring to changing it via a PowerShell script against SW using SWIS. The table you'd have to modify is Orion.ESI.IncidentService. The below script should be able to get you started. # Import SolarWinds Module import-Module SwisPowerShell $integrations = Get-SwisData $swis -query "SELECT…
-
@"jasonf1971", do you want it into one KPI or each city broken up into it's own KPI widget?
-
@"jlkansascity", because you are on an eval you might not be able to get official support, but maybe you can reach out to your account exec at SolarWinds so that they can get a Sales Engineer on the phone with you to take a look. I've seen the Sales Engineer's also engage support if needed
-
@"jlkansascity", it's seeming to appear that way. perhaps you can run a Test-NetConnection in PowerShell to ensure that the required port is able to communicate from the agent device to the Orion Server
-
@"enzamambashar", im not good at python but i'd imagine that the meat of what you'd need to get this to work is below. props = { 'TemplateID': , 'NodeID': , } results = swis.create('Cli.DeviceTemplatesNodes', **props)
-
@"jlkansascity", do the ones erroring have Windows Firewall turned on?
-
@"jlkansascity", is there a distinct difference between these servers you receive the error message on vs the ones that work? For Instance network segment. What's the agent mode that you are attempting to use?
-
@"FVM2000", is it a Unifi Device? if so I would look into their API docs and see if they expose the internet availability they have on the Unifi Dashboard via an API call, if they do then you could approach it the @"chenash" describes using SAM but doing it via an API call or use an API poller.
-
@"zvonkorp", so at a high-level SEM can receive syslog/traps from those devices as long as the device is configured to send to SEM and there's an appropriate connector for it. Switches i know will have one but idk about some of those peripherals. Within SEM it'll show a last received communication timestamp. BUT i want to…
-
@"CourtesyIT", you can add into the where statement something like below, changing the "X" to the 6 digit code. It basically reads Node Caption as begins with X WHERE I.Node.Caption like XXXXXX%
-
@"koneal", id imagine a text verification might work better. I'd look at the source between a failed video playing and a successful one. If the source has a distinction between the two you could set up a text verification because text verification looks at the source html
-
@"enzamambashar", so you have to do a create to "assign" a device template. Here's a link that demonstrates how to do a create within Python, and the following script is a PowerShell script specifically written to assign device templates to a node. This should be enough to get you started, if you need any other assistance…
-
@"w3498-deebcg37nbt84eqn", if you're referring to the SolarWinds in your scenario then the experience is a failure (most of the content in the SolarWinds web console is pulled directly from the DB on page load), and it's relatively immediate.
-
@"CourtesyIT", that's the Node Status, not the interface status. if you want to see the interface status instead you'll need to change line 5 to I.Status instead of I.Node.Status. If you want to see both then just add I.Status to your selection.