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

#2866
Announcements / Re: NetXMS 2.0-RC2 released
October 19, 2015, 03:04:31 PM
For those who build from sources - replace src/server/core/node.cpp with attached one and re-compile server. Problem should go away. Repacked sources and binaries will be available shortly as well.

Best regards,
Victor
#2867
Hi,

GetDCIValueByDescription reads last value from cache. It can happen that it was called faster then cache for queried DCI was populated (either by poll or from database). I'll think what I can do with that.

Best regards,
Victor
#2868
General Support / Re: Dashboard drilldown
October 19, 2015, 11:21:19 AM
Hi,

currently not.

Best regards,
Victor
#2869
Hi,

this functionality is currently broken. We will fix it in next release.

Best regards,
Victor
#2870
Announcements / Re: NetXMS 2.0-RC2 released
October 19, 2015, 11:19:13 AM
Try to turn off data collection cache for that agent (node properties, "Polling" page, select cache mode "Off"). You'll me be needed to delete nxagent.db again after switching off cache. I'll try to reproduce this issue on my system.

Best regards,
Victor
#2871
Общие вопросы / Re: DCI tables
October 17, 2015, 08:14:16 PM
Есть - для таблиц тоже можно делать transformation script - на входе в $1 он получает объект класса Table, по которому можно пройти в цикле по всем строкам и внести изменения.
#2872
Общие вопросы / Re: D-Link LLDP
October 17, 2015, 08:09:24 PM
В RC2 есть небольшое изменение в LLDP - если оно не поможет, будем допиливать.

Walk интересует для ветки .1.0.8802.1.1.2.1.4.1.1.5.
#2873
Здравствуйте,

судя по

[15.10.2015 15:29:06] Checking SNMP agent connectivity
[15.10.2015 15:29:14] SNMP agent unreachable

SNMP для NetXMS сервера недоступен. Соответственно если ICMP включен, то нода отзывается на пинг, и сервер считает ее up. Если же ICMP отключить, то остается только SNMP, а он недоступен - соответственно сервер решает, что нода down.
#2874
Общие вопросы / Re: Topology indirectly
October 17, 2015, 08:02:59 PM
Можете прислать результаты SNMP walk по .1.0.8802.1.1.2.1.4.1.1.5 для всех коммутаторов?
#2875
General / Re: Action
October 17, 2015, 07:42:11 PM
Hi,

did you define action correctly in subagent? Can you show code registering your action?

Best regards,
Victor
#2876
General / Re: Node ID for Push parameter
October 17, 2015, 07:40:56 PM
Hi,

can you show me code snippet how you push data?

Best regards,
Victor
#2877
Announcements / Re: NetXMS 2.0-RC2 released
October 17, 2015, 07:39:05 PM
Quote from: Dani@M3T on October 17, 2015, 12:45:36 PM
On the download page the Generic Linux static version for x64 is missing.

Fixed.

Best regards,
Victor
#2878
Announcements / Re: NetXMS 2.0-RC2 released
October 17, 2015, 06:55:58 PM
Quote from: Dani@M3T on October 17, 2015, 01:21:52 PM
After update from V2.0RC1 to V2.0RC2 we get thousands of this errors in the nxagentd-log on the NetXMS server:

[17-Oct-2015 12:18:14.018] [ERROR] SQL query failed (Query = "INSERT INTO dc_queue (server_id,dci_id,dci_type,dci_origin,snmp_target_guid,timestamp,value) VALUES (?,?,?,?,?,?,?)"): UNIQUE constraint failed: dc_queue.server_id, dc_queue.dci_id, dc_queue.timestamp

So we also get thousands of false alarms (and emails) per minute.

Try to stop the agent, delete nxagent.db file (likely in /var/lib/netxms or <install prefix>/var/lib/netxms), and start agent again.

Best regards,
Victor
#2879
Hi,

seems that NXSL identifies value in $1 as 32 bit and so does 32 bit arithmetic. Changing it to


return 4096 * int64($1) / 1099511627776;


should help.

Best regards,
Victor
#2880
General / Re: Action
October 16, 2015, 06:32:57 PM
Hi,

no you cannot get data from action. You can pass arguments to action - in server configuration you specify them separated by spaces (like in normal command line). When action is called, String[] args will contain those arguments. Boolean return value is to indicate if action was executed successfully.

Best regards,
Victor