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

#3241
the problem with your transformation script is that it's not linear - it will return 71 when everything is OK and then 1 or more when some APs are down. So diff will actually grow as more APs will go down. I would recommend to call DCI "number of down APs" and return 0 when all APs are up. That way it will be consistent and diff() > 0 will not be triggered when all APs comes back online.

Best regards,
Victor
#3242
General Support / Re: Netxms OracleDB errors
February 25, 2015, 11:00:29 AM
Yes, that could happen if there was incorrect data in event processing policy. You have to manually fix or delete those rules.

Best regards,
Victor
#3243
General Support / Re: Invalid network mask - v 1.2.17
February 25, 2015, 10:59:45 AM
Yes, nodes will be rediscovered - the only problem if you have configured some data collection on them - all collected data will be lost. If this is not the case then you can just delete them with subnets.

Best regards,
Victor
#3244
Hi,

you can set threshold not on absolute value, but on difference with previous value, and generate event if it is less then 0 (i.e, some APs goes down). Then you can achieve what you want with two thresholds: diff threshold will generate new alarms on each change, and recover on next poll - but you should ignore recover event. Another threshold could be set as now, but used only for recover event.

Best regards,
Victor


#3245
Not with configuration - but server could be changed to use proxy agent for name resolution. But can you confirm that this is the case (i.e. DNS name of node behind proxy cannot be resolved correctly from server)?

Best regards,
Victor
#3246
Для драйвера ODBC в качестве имени сервера надо указывать имя источника данный (ODBC data source).
#3247
А флажок isLLDP показывается Yes на свитчах? Если на debug консоли сервера дать команду

show topo id объекта

что он выдает?
#3248
По XML - скорее всего на Windows ему не нравится / как разделитель пути к файлу - поставьте \.

У пользователя, которым подключается агент, должно быть право EXECUTE на функцию MON_GET_TABLE. Возможно проблема в том что нет прав на эту функцию.
#3249
Для SSH поля запрос и ответ должны быть пустыми.
#3250
Проверьте как настроен агент на прокси - в 1.2.16 появилась одна особенность - если сервер прописан и под MasterServers, и под Servers или ControlServers, то привилегии могут оказатся ниже чем Master (то что идет в списке последним). Если это так, оставьте только MasterServers.
#3251
Общие вопросы / Re: Проблема с LLDP
February 23, 2015, 10:44:15 PM
Проблема не в snmp walk - значения одни и те-же, просто nxsnmpwalk не конвертирует их в hex для показа. Попробуйте руками запустить topology poll на этих устройствах - что он выведет? Можно включить также дебаг уровня 6 на сервере и смотреть по логу что происходит во время опроса.

#3252
Общие вопросы / Re: ICMP.PACKET_LOSS
February 23, 2015, 10:41:35 PM
Тут вопрос от чего считать loss - сейчас PING субагент дает % потерь за минуту, и они могут иметь какой-то смысл поскольку пинг делается несколько раз в минуту. Как ето сделать только на серверной стороне - пока у меня четкого представления нет. Слать с сервера пинги с небольшим интервалом на все настроенные ноды на случай если понадобится - вариант на мой взгляд плохой. Один из вариантов как это сделать на DCI - собирать response time в одном DCI, конвертировать 10000 в 100 а все остальное в 0, и сделать скрипт DCI который будет доставать среднее для DCI #1 - это и будет packet loss за последние N опросов.
#3253
Possibly problem caused by the fact that even if proxy is used for communications, primary host name resolution happens on server, so if it still resolves to old address on server side then server will continue using old IP.

Best regards,
Victor
#3254
Looks like result of database corruption. If I remember correctly lost_interface_#### objects was created in some older versions after errors. Current version should not create them. As they likely had unreachable IP addresses, status poll just take longer due to timeouts.

Best regards,
Victor
#3255
General Support / Re: Netxms OracleDB errors
February 23, 2015, 09:58:42 PM
Hi,

seems that metadata is incorrect for some reason. Try to stop server and execute the following query:


UPDATE metadata SET var_value='CREATE TABLE tdata_records_%d (record_id number(20) not null,row_id number(20) not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%d(record_id) ON DELETE CASCADE)' WHERE var_name='TDataTableCreationCommand_1';


then drop table(s) having ORA-00001 errors and run nxdbmgr check again (it should re-create all missing tables correctly).

Best regards,
Victor