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

#3916
А хост по SNMP отдает полный список интерфейсов, или только тот, на котором отвечает?
#3917
Один из вариантов такой:

1. Делаем ExternalParameter на агенте, с которого будем запускать скрипт. Выглядеть он может как-нибудь так:

ExternalParameterShellExec = Test(*):start_script.cmd $1

В $1 попадет имя ноды.

2. На узлах, для которых надо собирать информацию, делаем DCI Test(имя ноды) и указываем как прокси узел с агентом.
#3918
Hi!

For some reason tooltips are not working in RAP implementation of draw2d/zest. I spent some time trying to debug it, but no success so far.

Best regards,
Victor
#3919
Hi!

I've fixed the problem. Version 1.2.13 will work correctly.

Best regards,
Victor
#3920
General Support / Re: Alarm Browser variables?
March 08, 2014, 02:48:00 AM
Hi!

Currently it's not possible. I've added additional macros to access alarm data in version 1.2.13 - full list can be found in manual: https://www.netxms.org/documentation/adminguide/objects.html#macro-substitution.

Best regards,
Victor
#3921
Feature Requests / Re: nxalarm - commands
March 07, 2014, 09:23:50 PM
Hi!

I've added sticky acknowledge support in nxalarm. It will be included in 1.2.13.

Best regards,
Victor
#3922
Общие вопросы / Re: netxms snmp table
March 06, 2014, 11:34:22 PM
У меня работает - можно закрывать хост. В 1.2.13 будет нормально брать русские буквы с SNMP.
#3923
Hi!

There was a bug with keepalive messages not being sent. It is fixed in upcoming 1.2.13 release, so hopefully your problem will go away.

Best regards,
Victor
#3924
Feature Requests / Re: Agent updating server record
March 06, 2014, 10:39:15 PM
Yes, should not be hard to implement. Added this as feature request: https://www.radensolutions.com/chiliproject/issues/525

Best regards,
Victor
#3926
General Support / Re: Naming convention
March 06, 2014, 05:29:38 PM
Predefined events follows this scheme:

SYS_ - all system events, generated inside server. Default events also have SYS_ prefix (like SYS_THRESHOLD_REACHED).
SNMP_ - events generated from SNMP traps.
DC_ - events generated from threshold violation (DC stands for Data Collection).

In addition, I often use prefix SYSLOG_ for events generated by syslog parser, and some times per-product prefixes as well, like ORACLE_ for all Oracle-related thresholds.

Best regards,
Victor
#3927
. is string concatenation operation in NXSL. NXSL does not do macro expansion within strings, so you have to do concatenation. Don't be confused by $ sign - it is valid character in identifiers and has not any special meaning. It's just a naming convention to start names of built-in variables with $. You can name your variable a$ for example.

Best regards,
Victor
#3928
Общие вопросы / Re: netxms snmp table
March 06, 2014, 02:02:15 PM
Нашел баг похоже - при конвертации строк, полученных через SNMP, выставленный code page игнорируется. Судя по комментариям в коде - это зачем-то было надо. Подумаю как это можно решить. Нет возможности дать мне доступ по SNMP на какое-нибудь устройство, которое русские тексты по SNMP отдает? Это сильно помогло бы в отладке.
#3929
Timeout and packet size are optional arguments and can be omitted. There is word "optional" deep in parameter description :) All following forms are valid:

Icmp.Ping(10.10.10.1)
Icmp.Ping(10.10.10.1,3000)
Icmp.Ping(10.10.10.1,2000,120)
Icmp.Ping(10.10.10.1,,140)

Best regards,
Victor
#3930
Общие вопросы / Re: netxms snmp table
March 06, 2014, 12:25:00 AM
Сервер не надо со статикой собирать, ничего хорошего из этого не выйдет. Правильней будет так:

./configure --with-server --with-mysql --enable-unicode --disable-xmpp

и как выглядит summary после отработки configure?