News:

We really need your input in this questionnaire

Main Menu
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

#1471
Общие вопросы / Re: SYS_INCORRECT_NETMASK
January 08, 2019, 03:44:50 PM
Quote from: rover-lt on December 27, 2018, 05:29:14 PM
2. другое устройство сообщает ту же подсеть, но с другой маской
пункт 2. совершенно нелогичный. Не бывает "такой же подсети, но с другой маской". Подсеть - это всегда комбинация из Subnet ID и Subnet Mask. Например, 10.0.0.0/24 и 10.0.0.0/16. А "суммирующая" подсеть - это совершенно другое. SYS_INCORRECT_NETMASK путает теплое с мягким.

Речь не идет о суммирующей подсети. Например: чистая система, добавили устройство А. С устройства сервер получает интерфейс с адресом 10.10.10.1 и маской 255.255.255.224. Создает подсеть 10.10.10.0/27. Потом добавляем устройство B. С него получаем интерфейс с адресом 10.10.10.2 и маской 255.255.255.0. В этот момент генерируется событие SYS_INCORRECT_NETMASK, поскольку на одном из устройст маска сети однозначно неправильная. Поскольку сервер не может знать, на каком именно, то принимает что первое найденное устройство имеет правильную маску, а вновь добавленное - нет.
Проблема неверных SYS_INCORRECT_NETMASK может быть, когда при добавлении устройства данные о маске получить нельзя - тогда создается сабнет /24 (это можно поменять параметром DefaultSubnetMaskIPv4).
#1472
Hi,

am I understood correctly that actual returned value contains floating point number and text "kW"? If yes, Java consider it as string and do not allow numeric formatting. You can change DCI data type to floating point number and use transformation script to remove unit indicator, like this:


if ($1 ~= "([0-9.]+) kW")
   return $1;
return $1;


Best regards,
Victor
#1473
Hi,

do you have any errors in GUI client log file? It is usually called .nxmc/data/.metadata/.log under your home directory.

Best regards.
Victor
#1474
Announcements / NetXMS 2.2.11 released
December 31, 2018, 12:26:19 AM
Hi all!

NetXMS version 2.2.11 is out. Changes since previous release:

- New parameter Process.VMRegions in Linux sub-agent
- nxshell reads password from terminal if not given on command line
- Housekeeper validates configuration for template DCIs
- Fixed issues:
        NX-1499 (Show last N values instead of line chart for string DCIs in alarm details view)
        NX-1512 (File Manager: Unable to create new directory in root directory on Windows)
        NX-1513 (Server installation fails with MySQL 8.0)
        NX-1518 (Variable $object is not set for scheduled scripts associated with object other than node)
        NX-1519 ("Import dashboard" action not available in dashboard group context menu)
        NX-1520 (Object Details - Overview tab in desktop client is unusable when using dark gtk3 theme)
        NX-1521 (Agent crash if file manager cannot resolve user or group name)
        NX-1522 (Log parser can read file incorrectly during high write activity)
        NX-1530 (Linux agent do not detect Hyper-V host)
        NX-1531 (Scripts are not executed during macro expansion in "download file" type object tools)
        NX-1532 (Agent external table does not handle UTF-8 text correctly)
        NX-1535 (Auto bind to container is not working if node already is an indirect child of this container)

Best regards,
Victor
#1475
Hi,

some kind of "display transformation" seems to be needed. Also, in 3.0 raw value stored in history tables along with transformed value, so adding option to create graph on raw value can help as well. I've created feature requests for all options:

https://track.radensolutions.com/issue/NX-1537
https://track.radensolutions.com/issue/NX-1538
https://track.radensolutions.com/issue/NX-1539

Best regards,
Victor
#1476
Hi,

could you post your DCI configuration and some actual values?

Best regards,
Victor
#1477
General Support / Re: Networks Maps broke
December 27, 2018, 11:11:53 AM
Hi,

if you want % sign to be displayed, prepend it with another %, like

Total UPS Power: %s %%

Best regards,
Victor
#1478
General Support / Re: GeoLocation function not found
December 21, 2018, 03:19:16 PM
Hi,

replace code like

geoLoc = GeoLocation(lat, long);

with

geoLoc = new GeoLocation(lat, long);


I'll update script example as well.

Best regards,
Victor
#1479
Fixed in 2.2.11
#1480
Feature Requests / Re: Alarm Resolution View
December 21, 2018, 12:33:01 PM
We have outstanding feature request for that: https://track.radensolutions.com/issue/NX-1493. Plan to implement it soon.

Best regards,
Victor
#1481
Feature Requests / Re: PCH CreateDCI
December 21, 2018, 12:21:57 PM
I have added new source types including "winperf" to CreateDCI in version 2.2.11.

Best regards,
Victor
#1482
General Support / Re: HTTP response data for DCI
December 10, 2018, 09:53:20 PM
Hi,

currently it is not possible without external scripts (for example, you can create script that will use curl to read data over HTTP and use it from agent as external parameter). I have registered feature request to allow this directly from agent (https://track.radensolutions.com/issue/NX-1525).

Best regards,
Victor
#1483
Hi,

please try to set debug level to 6 and check server log for lines with "SMTP" and "Sending mail" in it.

Best regards,
Victor
#1484
Hi,

it is definitely supported, we will check this.

Best regards,
Victor
#1485
Hi,

most likely PostgreSQL client library is missing, not in PATH, or incompatible. Try to run netxmsd.exe from command line and check for error messages.

Best regards,
Victor