Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Victor Kirhenshtein

#1411
You can open filter in event processing policy editor and type rule comments, event name, or object name to show only rule(s) containing search term.

Best regards,
Victor
#1412
Hi,

currently the only way I can think of is to create nxshell script that will request summary table and push DCI value. Summary tables are not accessible from NXSL scripts so simple script DCI is not possible.

Best regards,
Victor
#1413
General Support / Re: NetXMS agent takes up 100% CPU
February 27, 2019, 07:13:28 PM
Hi,

I don't see anything wrong in the dump - all threads seems to be waiting on something. Try to comment out all subagents in nxagentd.conf and restart agent. If CPU usage stay low, enable them one by one to find out which is responsible.

Best regards,
Victor
#1414
Hi,

You can do this with nxshell script, like this:


for node in [o for o in session.getAllObjects() if isinstance(o, objects.Node)]:
  print 'Processing ', node.getObjectName()
  session.pollNode(node.getObjectId(), NodePollType.CONFIGURATION_NORMAL, None)
  md = NXCObjectModificationData(node.getObjectId())
  md.setObjectFlags(node.getFlags() | Node.NF_DISABLE_CONF_POLL)
  session.modifyObject(md)


You can do mass enable of configuration poll like this:


for node in [o for o in session.getAllObjects() if isinstance(o, objects.Node)]:
  print 'Processing ', node.getObjectName()
  md = NXCObjectModificationData(node.getObjectId())
  md.setObjectFlags(node.getFlags() & ~Node.NF_DISABLE_CONF_POLL)
  session.modifyObject(md)


Best regards,
Victor
#1415
General Support / Re: v2.0.8 to v2.2.12 upgrade issue
February 21, 2019, 03:18:44 PM
It actually looks like SNMP is not detected at all with new server version. Could you set debug level to 6, run configuration poll again, and check or post here relevant lines from the log (usually those with name or IP address of the node in question)?

Best regards,
Victor
#1416
Hi,

SSH credentials currently not accessible as macro or from the script. Feel free to register feature request for that in our tracker.

Best regards,
Victor
#1417
General Support / Re: v2.0.8 to v2.2.12 upgrade issue
February 20, 2019, 07:20:20 PM
Quite strange. Looks like it get empty interface list from device. What device driver is used? Can you provide SNMP walk results on ifMib?

Best regards,
Victor
#1418
General Support / Re: v2.0.8 to v2.2.12 upgrade issue
February 20, 2019, 02:33:39 PM
Hi,

please provide output of configuration and status poll for such node.

Best regards,
Victor
#1419
General Support / Re: NetXMS agent takes up 100% CPU
February 20, 2019, 12:48:24 PM
Hi,

can you create process dump when agent start using 100% CPU and send it to me?

Best regards,
Victor
#1420
Hi!

1) You can use actions with timers. For example, execute action on node down event with timer set to 5 minutes, and cancel this timer on "node up" event. If node will recover within 5 minute interval, timer will be cancelled and action never executed.

2) Yes, diff will be correct method in this case.

Best regards,
Victor
 
#1421
General Support / Re: Automatic Alarm Resolve
February 14, 2019, 10:24:50 PM
Fix is already made, I plan to made release 2.2.13 within a week.

Best regards,
Victor
#1422
There are no standard way for doing that. If there is only one user session you can uninstall agent service and add nxagentd.exe to autorun so it will start within user session. Or you can use combined approach - leave agent as a service, run external subagent via autorun and define actions in this subagent.

Best regards,
Victor
#1423
General Support / Re: NetXMS agent takes up 100% CPU
February 12, 2019, 01:11:07 PM
Hi,

I don't see any logs attached.

Best regards,
Victor
#1424
General Support / Re: Web interface shows Error
February 10, 2019, 04:03:33 PM
There was packaging error in web UI installer, but it was replaced shortly after release. When did you download it?

Best regards,
Victor
#1425
General Support / Re: Automatic Alarm Resolve
February 09, 2019, 11:17:31 AM
Hi,

that's actually looks like a bug. If alarm is already resolved system should not change it's state. We will fix it for next release.

Best regards,
Victor