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

#2146
General Support / Re: NetXMS Server Capability
April 18, 2017, 11:08:57 PM
Hi,

starting with 2.1-M3 there is agent-to-server connection option, so you can have site proxies behind firewall connecting to NetXMS server. Server itself should handle 50k nodes without issues, although you will need quite big amount of RAM (I would recommend 8 GB at least). Database will definitely require some tuning (but actual load and size requirements highly dependent on how much data you will collect and how often). Network connections should be fine because you will have connections open to proxies, and everything else will be between proxies and end nodes.

Best regards,
Victor
#2147
Попробуйте заменить

pResult->values

на

result

в строке 576.
#2148
General Support / Re: DCI Data loss
April 16, 2017, 12:08:24 PM
One possible reason is instances disappearing and re-appearing. If on one configuration poll instance is missing server will detele DCIs for that instance, and create new DCIs when instance appears again. You can check if this is the case by noting DCI IDs and check if they are changing.

Best regards,
Victor
#2149
External parameter runs on demand, when server requests it. So you effectively control it when setting DCI polling interval.

Best regards,
Victor
#2150
Немножко не так:


interfaces = GetNodeInterfaces($node);
foreach(i : interfaces)
{
   if (i->macAddr like "85:55:*")
      return true;
}
return false;

#2151
Общие вопросы / Re: SNMPv3 AUTH_FAIL
April 12, 2017, 05:41:19 PM
Насколько постоянные? Во время configuration poll сервер может перебирать разные версии протоколов.
#2152
Запрос для MS SQL:


SELECT TOP 200 event_id,event_code,event_name,severity,source_object_id,event_timestamp,message FROM alarm_events WHERE alarm_id=? ORDER BY event_timestamp DESC;



SELECT e.event_id,e.event_code,c.event_name,e.event_severity,e.event_source,e.event_timestamp,e.event_message
FROM event_log e,event_cfg c WHERE e.root_event_id=? AND c.event_code=e.event_code;

#2153
Простым образом сделать не получится. Через API можно получить объекты на карте, но отрисовку придется делать самостоятельно.
#2154
У меня скрипт отработал нормально (после замены sn на subnet во второй строке). Попробуйте включить дебаг уровня 6 на сервере и посмотреть что на стороне сервера происходит. И какая версия NetXMS? Я проверял на 2.1-М3.
#2155
General Support / Re: DCI Data loss
April 12, 2017, 05:23:09 PM
Hi,

are you using instance discovery?

Best regards,
Victor
#2156
Hi,

you can define same DCIs on ESXi and set source node to management server. That way actual data collection will occur on management server but data will be shown on ESXi node.

Best regards,
Victor
#2157
Hi,

seems to be a bug in the code. What version you are using?

Best regards,
Victor
#2158
Hi,

seems that template was somehow removed from object structure but not deleted. Try to login with user system - most likely you will see that template in the root of object tree. Then you'll be able to delete it completely.

Best regards,
Victor
#2159
Hi,

please turn on agent crash dumps by adding to nxagentd.conf:

CreateCrashDumps = yes
DumpDirectory = some_path

and send crash dumps (if any) to [email protected]

Best regards,
Victor
#2160
Hi,

you have to add object access rights as well. They are assigned in object properties. You can also add your users to Admins group - it should have all object rights assignments already.

Best regards,
Victor