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

#1906
Как primary host name указано имя? Тогда должен на каждом configuration poll проверять. Не может быть такого что в DNS кэше надолго остается старый адрес?
#1907
Hi,

you can use %6 in threshold rearm event to insert current DCI value (see description for SYS_THRESHOLD_REARMED event for all event-specific parameters).

Best regards,
Victor
#1908
Hi,

how do you collect it - via agent or SNMP? And what NetXMS server version you are running?

Best regards,
Victor
#1909
General Support / Re: Is NetXMS GDPR compliant?
November 02, 2017, 10:51:46 AM
Normally it should be irrelevant - GDPR is about protecting personal data, and usually you don't have any in monitoring system. It depends of course on what you collect.

Best regards,
Victor
#1910
General Support / Re: MIB comiling nightmare (part 01)
November 02, 2017, 10:46:12 AM
Hi,

you can restore original MIBs by downloading source package and extracting MIBs - they are under contrib/mibs. You don't need RFC-1628 MIB - it is already included.

Seems that whoever builds Infosec MIB you have provided just took some template without much thinking - leaving "companyName" placeholder instead of replacing it with actual company name. I changed it to "infosec" and MIB name to INFOSEC-UPS, and fixed few other errors. Correct MIB attached.

Best regards,
Victor
#1911
Hi,

assuming you are using version 2.1.x you can put proper group name in DCI configuration. You can use macro {instance} there, so for example you can set group name for both Tx and Rx DCI as IfTraffic_{instance} - then server will create unique group name for each Tx/Rx DCI pair, and you'll have one graph per interface.

Best regards,
Victor
#1912
Hi,

seems like a bug, either in UI or server. What version you are using? Could you please share client log file (usually .nxmc/data/.metadata/.log in user's home directory).

Best regards,
Victor
#1913
Hi,

I see that device is not responding to server's requests. What are authentication and encryption algorithms configured on that device?

Best regards,
Victor
#1914
Hi,

download XML file to your workstation and choose Tools -> Import configuration from main menu, then choose XML file to import.

Best regards,
Victor
#1915
General Support / Re: Issue with Alarm (Newbee) /2 ?
November 02, 2017, 10:22:42 AM
Hi,

could you show all parent subnets for this node?

Best regards,
Victor
#1916
General Support / Re: web interface map display
November 02, 2017, 10:21:56 AM
Hi,

seems to be a bug. What browser and OS you are using? Do you have UI scaling on?

Best regards,
Victor
#1917
General Support / Re: DCI Custom Schedule
November 02, 2017, 10:18:30 AM
Seems to be a bug in 2.1.2. We will check.

Best regards,
Victor
#1918
General Support / Re: Delay alarms
November 02, 2017, 10:17:03 AM
Hi,

please share your configuration - maybe I'll spot the error.

Best regards,
Victor
#1919
General Support / Re: Using custom attribute in a DCI
November 02, 2017, 10:14:42 AM
Macros within parameter name expanded only when you apply template to node. If it is fine, you can use script macro, and read custom attribute in script. But if you want that DCI will use current value of custom attribute immediately after your change it, themn the only option is to switch to script DCI and use AgentReadParameter function. For example:


return AgentReadParameter($node, "ServiceCheck.Custom(" . GetCustomAttribute($node, "IP") . ",80)");


Best regards,
Victor
#1920
Hi,

scripts are case-sensitive - i.e. node and Node are two different identifiers. There are no restrictions on formatting, white spaces, new lines, etc.

You can test your scripts by selecting "execute server script" option on a node. Script will have $node variable set, and you can use trace function or print statement to generate debug output that will be seen in output field during script execution.

Best regards,
Victor