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

#2071
Hi,

as far as I remember it was fixed in 2.1 branch, but I'll double check.

Best regards,
Victor
#2072
Hi,

there are multiple ways. First you can create script DCI that will do SNMP walk over OSPF neighbor table and check for changes. You may also check for SNMP traps - most likely Cisco will send trap on each OSPF topology change.

Best regards,
Victor
#2073
So you are getting "SNMP unreachable" events when proxy agent restarts, but no "SNMP OK" after proxy connection is restored, right?
#2074
Hi,

what if you set positions to 2 and 3 instead of 1 and 2?

Best regards,
Victor
#2075
Hi,

if all those nodes are in some containers, you can safely delete subnet object. Configuration polls will then re-create correct subnets.

Best regards,
Victor
#2076
Hi,

you can set number of polls required for status change. That way polls will still be every 60 seconds, but status will only change when configured number of consecutive polls fails. You can set that on interface level.

Best regards,
Victor
#2077
This is why it's crashing. You should open it from node context menu (right click on node, select Take Screenshot).

Best regards,
Victor
#2078
Да, довольно давно висит запрос: https://track.radensolutions.com/issue/NX-797. Постараюсь успеть добавить в релиз 2.1.
#2079
Как-то у меня вот это:

Quote from: Дым on May 05, 2017, 01:48:50 AM
Но в новых релизах можно ожидать что-то подобное меню "Опрос", только для шаблона/контейнера, а не отдельного узла, или забыть?  :)

не стыкуется с этим:

Quote from: Дым on May 04, 2017, 04:34:03 PM
Хотелось бы возможности лишние проверки отключать не на каждом устройстве, а на основе правил шаблона/контейнера.

Надо отключать проверки или добавить массовый ручной опрос?
#2080
Спасибо, предложения звучат разумно :) Постараемся поправить к стабильному релизу.
#2081
пример 1:

return $node->name like "*SRV*";


или без учета регистра:

return $node->name ilike "*SRV*";


пример 2:

value = AgentReadParameter($node, "System.Uptime");
return (value != null) && (value > 0);


либо если такой параметр собирается как DCI:

value = GetDCIValueByName($node, "System.Uptime");
return (value != null) && (value > 0);

#2082
попробуйте включить опцию "make columns equal width" в свойствах дашборда.
#2083
Например

2017-04-30T02:52:04.748266+00:00 netxms netxmsd[18272]: Error compiling library script Hook::StatusPoll (ID: 11): Error in line 1: Invalid character '\' (0x5C)

означает что в библиотеке скриптов (Configuration -> Script Library) есть скрипт с именем Hook::StatusPoll и он не компилируется. Похоже на баг в инициализации базы, но хотелось бы посмотреть что попало в текст скрипта. Да, и какая база используется?
#2084
Можно написать nxshell скрипт (это python с доступом к NetXMS API - https://wiki.netxms.org/wiki/Using_nxshell_to_automate_bulk_operations).

С портами можно сделать configuration poll hook скрипт, который будет проверять интерфейсы и выставлять unmanage либо expected state = ignore для всех портов кроме 25 и 26.
#2085
Hi,

it's already done for performance tab, we will implement same logic for other tab types (https://track.radensolutions.com/issue/NX-1251).

Best regards,
Victor