Comments
-
I think the common route is to add all interfaces no matter status. This prevents you from having to circle around - especially if licensing is not an issue. It also ensures you keep ports not in use in shutdown state so not alarming and thus, something can't just get plugged in. Not sure if discovery settings would allow…
-
try{ $cal = New-Object -com "Microsoft.Update.AutoUpdate" $res = $cal.Settings $lvl = $res.notificationlevel } catch { Write-Host "ERROR: $($Error[0])"; Exit 1; } switch ($lvl) { 1 {$msg="Windows Updates set to `"Never Check`""} 2 {$msg="Windows Updates set to `"Check but let me choose to download/install`""} 3…
-
We use it to monitor gear we own, but those routers provide the customers connectivity into us and we have had the same thoughts about doing this service. I too, would love to hear anything anyone doing this can share.
-
please post simple instructions so others searching have an answer :) thx
-
May or may not make sense: I didn't spend a lot of time so not sure what exactly you are trying to do, but something to test would be to just start your join in the bottom section...example: select nodeid, sysname from Nodes - this being basically what the "top" part is.. left join Thresholds t on Nodes.NodeID=t.InstanceId…
-
Hit F3 (Nodes -> Find Nodes), then change lookup field to IP_Address Hope that helps. P.S. I think it is local to the poller if you have multiple pollers...
-
here is link for interfaces status hasn't changed > 60 days that are not either up/up or admin shutdown. hope that's what you needed.
-
here's a link for nodes: it is only for SNMP nodes for now. I'll keep working on it and interfaces when I get a chance.
-
that looks like the "HUBBLE" debug header. go into web server and search for "LogAdjuster" application name. Ensure "Hubble Active" is False.
-
Insert right below ", Nodes.Caption" on line 12
-
I am currently doing this. They will have to authenticate to each web server, but that is just initially.
-
As you can see the component name is blank, because this was triggered not for a component, but for a volume being reset. try using table.column - i.e. ${Nodes.ComponentName} ${Nodes.ComponentStatus} try using table.column - i.e. ${Volumes.ComponentName} ${Volumes.ComponentStatus} Basically, they have to correlate to…
-
give more specific example of what you need to accomplish...not clear. Definitely possible through DB jobs (need appropriate access to databases to create jobs). need to know what the primary key (i.e what UNIQUE field ties the two Database/tables together), etc..
-
I think this is what I was going for... SELECT de.ComponentStatusID, de.ColumnSchemaID, de.ColumnType, de.ColumnName, de.MaxNumericData, de2.StringData FROM Orion.APM.DynamicEvidence de JOIN (select top 1 ID FROM Orion.APM.ComponentStatus where ComponentID=27154 order by TimeStamp desc) cs ON (cs.ID=de.ComponentStatusID…
-
I need to understand how to forward traps and advanced alerts to my trouble-ticket system. I also need to forward alert resets to close associated tickets. This is done via advanced alerts on the main NPM poller. depending on your ticketing system, you'd either send an email to the ticketing system and provide info by…
-
I assume you are running UDT or IPSLA? I am running both and believe both are culprits for this behavior. I have had to remove those modules from my web server farm to prevent these false positives. I maintain the modules on the primary engine and I look at that site if needed. I agree that this needs escalated attention!!!
-
The tooltips can be customized but only to database fields. not sure what would happen if you created a custom property with a pic for its data.... anyways, I can't remember off top of my head where to customize the tooltips, but you can...check the docs.
-
look at this thread for ideas
-
I LOVE that idea. pull out any IPs and user definable info...make it an option to participate...I'd do it. Great Idea.
-
try ${CommunityReadWrite} usually, it is just the "column name" in the database for that field.
-
It sounds like your polling engine is overloaded. I was told when troubleshooting my similar issues that if the outstanding gets above 900, the engine will "go to lunch" and not come back. that being said, the engines table has the info you want... Below is a SQL query that will give you the output you are looking…
-
you would use the tool "network atlas" to create all of your maps any way you want them. just select the interfaces and nodes you want and drag them onto the map.
-
have you looked at Alert Central - its free. you could put system name in subject and search and assign based on the key words you are looking for. That is really what AC was designed for.
-
you should be able to look at properties of shortcut, find the executable, then schedule a task for daily @ 10 to accomplish.
-
what does the load on your polling engine look like? if you do an snmp walk on the system from the polling engine, what are the results (does it come back with those interfaces and what are the status), etc... When you do a "list resources" on that node, are the same interfaces showing up (I assume yes as you said you…
-
We use Actifio as well. If i remember correctly, they do not support SNMP get yet.
-
aLTeReGo, you made mention here: <HttpClientHelperSettings Timeout="300000" RetryCount="2" UseSynchronousCall="true" > will this resolve/help my issue? are the 2 retries one right after another and within the same poll cycle? I'm really hoping there is a waittime or something, though I thought timeout would be it.. I had…
-
AWESOME!!! Well deserved from what I was able to glean from SWUG! Congrats Dez
-
is this for policy rules? if so, it might be easier to use "match block" which would search each interface block of code -> start of block: ^interface s.* end of block: ^! where ^ means beginning of line then your logic would be regex matching: description DS[1,3]\.[0-9] you'll have to tweak for your specific env, but…
-
SW - what is the right way to implement mixed authentication???? If you disable the "windows authentication", that fixes the popup, and if you put domain\acct in the web page - it does allow the integration to work, just not seemlessly. If I disable windows auth, it is re-enabled during upgrades and the IIS manager…