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

#2716
General Support / Re: Create Rack
January 20, 2016, 04:26:15 PM
Hi,

in 2.0.1 you can configure numbering direction and rack height in rack object properties.

Best regards,
Victor
#2717
Пришлите config.log пожалуйста.
#2718
General Support / Re: Can Netxms Handle this
January 17, 2016, 06:16:41 PM
Hi,

load average 32 for a pool means that you have about 32 tasks running in parallel on this thread pool. You can check history for that parameter and set pool max size at a bit higher value then max for load average and min size to medium value for load average.

Best regards,
Victor
#2719
General Support / Re: Logparser
January 14, 2016, 10:18:00 AM
Hi,

such message is usual when log rotation occurs. To detect log rotation agent compares size returned by stat using file name, and size returned for currently open file descriptior. If first is smaller, it assumes that file was rotated, re-open it, and start reading from the beginning. How often you got this message and is this file actually rotated?

Best regards,
Victor
#2720
General Support / Re: Racks configuration
January 14, 2016, 10:14:37 AM
Hi,

actually currently the only possibility to display something in rack is to create node object for it. So you'll have to create nodes for each disk shelf and place them as needed. For controllers you'll need to set height 1 and rack position 1 and 2.

Best regards,
Victor
#2721
General Support / Re: unsigned int64 bit data polling
January 14, 2016, 10:12:43 AM
If you need to format date like this you can use strftime function:

return strftime("%d-%m-%Y %H:%M", $1);

This will convert UNIX time stamp from $1 into string of format DD-MM-YYYY HH:MM.

Alternatively, you can use string concatenation, like this:

t = gmtime($1);
return t->mday . "-" . t->mon . "-" . t->year;

Best regards,
Victor
#2722
Hi,

attached is patched server core (for 64 bit Windows).

Best regards,
Victor
#2723
General Support / Re: SQL Query Error on 2.0.1
January 14, 2016, 10:00:50 AM
Hi,

what database you are using?

Best regards,
Victor
#2724
К сожалению это именно баг. К следующему релизу обязательно исправим.
#2725
Добрый вечер,

1. А на пинги устройство отзывается? Если нет, то единственный вариант наверное - мониторинть состояние порта коммутатора к которому подключено это устройство.

2. А при компиляции не было ошибок?

3. В DCI можно таким скриптом:


return right(int32($1 / 3600), 2, "0") . ":" . right(int32($1 % 3600 / 60), 2, "0") . ":" . right(int32($1 % 60), 2, "0");


превратит количество секунд в hh:mm:ss.

4. Да, именно для этого они и нужны. Можно написать например так:

Нагрузка: %s%%

Можно использовать любые символы из Java Formatter: https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html

5. Нет
#2726
General Support / Re: Racks configuration
January 10, 2016, 07:53:15 PM
Hi,

you specify node height and top unit number. Depending on rack numbering direction it will be lowest unit number (for top-bottom numbering) or highest unit number (for bottom-top numbering). Below are example for one and two units devices with both numbering schemes:

top-bottom numbering


UNIT  DEVICE
1
       ------------------
2     | NODE1 (2U)
       |
3     |
       -------------------
4     | NODE2 (1U)
       ------------------
5


you specify position 2 for node 1 and position 4 for node 2.

bottom-top numbering


UNIT  DEVICE
5
       ------------------
4     | NODE1 (2U)
       |
3     |
       -------------------
2     | NODE2 (1U)
       ------------------
1


you specify position 4 for node 1 and position 2 for node 2.

Best regards,
Victor
#2727
I found the bug. It is SQLite-specific. It will be fixed in 2.0.2, I can also provide custom build for server if needed. Switching to any other database will help as well.

Best regards,
Victor
#2728
Попробуйте обновится на 2.0.1, если не поможет, то надо будет смотреть детально что за ноды. На тестовой системе мне не удалось повторить проблему.
#2729
Hi,

could you please run it with debug level 9 and post output?

Best regards,
Victor
#2730
Feature Requests / Re: virtual machines
January 07, 2016, 02:23:36 PM
Yes, definitely. It is one of the goals for next major release.

Best regards,
Victor