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

#1441
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
#1442
Hi,

did you give access to objects to grafana user?

Best regards,
Victor
#1444
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
#1445
Currently no. We have a feature request for that.

Best regards,
Victor
#1446
Hi,

looks like in your setup you need agents connecting to server. In NetXMS default configuration is when server connects to agents. Reverse configuration called "agent tunnel". You have to configure server for accepting connections from agents: https://www.netxms.org/documentation/adminguide/server-management.html#server-configuration-for-agent-to-server-connection-tunnel-connection.

Best regards,
Victor
#1447
General Support / Re: NetXMS list of default ports
February 02, 2019, 02:07:38 PM
Hi,

you can only change it individually for each node. On agent side you have to add

ListenPort = nnn

to nxagentd.conf and on server side you should enter same port number in node properties Communication / Agent.

Best regards,
Victor
#1448
Hi,

replace <agent> tag with <core>. Also, it is not mandatory to use XMS format in policy - you can use same key=value format as in nxagentd.conf.

Best regards,
Victor
#1449
This version is very old. I definitely recommend upgrade to 2.2.12 first. We have fixed lot of issues, including internal locks and performance issues.

Best regards,
Victor
#1450
Hi,

this points to some internal locks being held for prolonged period. What version you are using, on what OS? Can you show event log for NetXMS server node?

Best regards,
Victor
#1451
Update: I likely found the reason for this error in numbering. Next release should show it correctly.

Best regards,
Victor
#1452
Hi,

you still need node to collect data from. On cluster level you can have only aggregated data. But you can define DCI on cluster level and associate it with cluster resource - that way it will be collected only on one node (which currently holds resource). If you need to do actual collection on other node (not cluster member) you can use "source node" option on DCI.

Best regards,
Victor
#1453
Проблема возможно связана с проблемой неработоспособности не UNICODE сборок, поскольку как я помню для OpenWRT собирается без UNICODE. У нас к сожалению нет никого кто разбирался бы нормально в OpenWRT сборках, поэтому функционал полуживой.
#1454
На локальном агенте загружен субагент portcheck? В nxagentd.conf должна быть запись

SubAgent = portcheck.nsm
#1455
Hi,

what is device OID and what driver is selected? If it is PROCURVE, please check if node has custom attributes .procurve.isModular and .procurve.slotSize.

Best regards,
Victor