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

#1381
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
#1382
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
#1383
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
#1384
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
#1385
Hi,

I suggest using script threshold. Script could be following:


!($1 like "Online") && !($1 like "Ready")


Best regards,
Victor
#1386
General Support / Re: nxdbmgr check *ERROR*
February 07, 2019, 11:17:52 AM
Hi,

most likely database client library is not installed or not in the path. Please provide more details of your setup - OS, database, full netxmsd.conf and full output of nxdbmgr.

Best regards,
Victor
#1387
Hi!

Do you have a core dump? If not, could you run netxmsd under gdb and when it crashes, issue command bt and provide it's output?

Best regards,
Victor
#1388
General Support / Re: NetXMS list of default ports
February 07, 2019, 11:15:16 AM
No, server only tries to connect to port 4700 during discovery. I've registered feature request for providing list of custom agent ports for discovery: https://track.radensolutions.com/issue/NX-1560

Best regards,
Victor
#1389
This is caused by housekeeper re-applying templates. This was added to automatically fix issues when not all DCIs were applied or updated correctly or was accidentally deleted (had those issues in few big deployments). The problem here is that template re-apply also resets DCI status to "active", which on next data collection run changes to "unsupported" and causes SYS_DCI_UNSUPPORTED event generation. Correct approach would be to leave unsupported DCIs in unsupported state. We will fix it before next release.

Best regards,
Victor
#1390
Hi,

you can add

Action = name:command

to nxagentd.conf and then execute this action either via server action from event processing policy or as object tool.

Best regards,
Victor
#1391
General Support / Re: Netxms Agent and SNMP
February 07, 2019, 11:01:49 AM
Hi,

you should create new zone (under Entire Network), set your Windows 10 node as zone proxy, and then create nods for each SNMP device you want to monitor in that new zone.

Best regards,
Victor
#1392
Hi,

did you give access to objects to grafana user?

Best regards,
Victor
#1394
General Support / Re: NXShell change geoLocation
February 02, 2019, 02:24:43 PM
Hi,

Geolocation is an immutable object, so you have to create new object when you need different location. NetObj and derived classes are also immutable, so you have to use NXCObjectModificationData class and session.modifyObject method. Working example for getting and setting geo location for node:


from org.netxms.base import GeoLocation

node = session.findObjectByName("netxms")
print node.getGeolocation()
md = NXCObjectModificationData(node.getObjectId())
md.setGeolocation(GeoLocation(11.0, 22.0))
session.modifyObject(md)


Best regards,
Victor
#1395
Currently no. We have a feature request for that.

Best regards,
Victor