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 - Filipp Sudanov

#916
А можете показать скриншотами, как сейчас настроены правила в EPP? Настроено ли автоматическое терменирование алармов, когда число ошибок падает? Или, наоборот, алармы остаются открытыми и при новых событиях об ошибках у этих алармов растет Count (колонка в View->Alarm browser).
#917
General Support / Re: Syslog Parse
December 06, 2021, 01:11:17 PM
You can use https://regex101.com/ to test your regular expressions. Currently your regex is not matching your example.
#918
General Support / Re: JIRA cloud integration
December 06, 2021, 01:08:30 PM
Support for Jira cloud is currently in development and should be available after some time.
#919
General Support / Re: Graph template split by interface?
December 06, 2021, 12:45:36 PM
Ticket was created, you can monitor the progress there: https://track.radensolutions.com/issue/NX-2177
#920
There are some objects besides nodes that also have configuration poll, e.g. Clusters, which may not have the attributes that node objects have. You can check if the object is node in the beginning of your script, e.g.
if (classof(p) == "Node") {
  ...
}
#921
Общие вопросы / Re: Мониторинг APC
December 03, 2021, 06:18:49 PM
С какой-то из недавних версий configuration poll появился не только на нодах, но еще как минимум на кластерах. Поэтому, если такие объекты в системе есть, то скрипт будет на них тоже запускаться и расстраиваться что там нет каких-то вещей, которые есть на нодах. Попробуйте так:

if (classof($object) == "Node")
{
  $object->enableEtherNetIP(false);
  $object->enableAgent(false);
}
#922
If you open server log at debug level 6, do you see anything there when agent is trying to connect?
#923
General Support / Re: Connect Web Browser with port
November 19, 2021, 01:56:45 PM
You can do it like this:
http://%u:%{www_port:80}

This will take value of node's custom attribute "www_port". If there's no such custom attribute on a node, default value will be taken.

Macros used in object tools are described here:
https://www.netxms.org/documentation/adminguide/object-management.html?highlight=object%20tool#macro-substitution
#924
General Support / Re: Restart Agent 3.9.334 on CentOS 7
November 15, 2021, 03:01:30 PM
How the agent is actually started? Is there some startup script?
if you do
ps fax | grep nxagentd
what commang line parameters are visible there?
#925
General Support / Re: 3.9.280 server is crashing on start
November 15, 2021, 02:00:51 PM
#926
General Support / Re: Network monitoring
November 09, 2021, 06:03:50 PM
If your router is accessible via SNMP and list of interfaces is shown under it in the object tree, you can right-click these interfaces and select Create Data Collection Item.
#927
В configuration -> Server configuration настроить параметры SMTP.*
Нужно учитывать, что сейчас на поддерживается шифрование/аутентификация, если SMTP сервер это требует то на машине где стоит netxms нужно поставить и настроить какой-нибудь SMTP relay.

В configuration -> Action Configuration настроить действие.

В правилах EPP для которых нужно отсылать сообщения добавить действие, настроенное выше.
#928
А в конфиге агента параметр Action= как прописан?
#929
You need either SNMP daemon or netxms agent installed on the machines that have several NICs - then netxms will understand that all NICs belong to one machine. This will also solve Unknown network interface issue.

Once you have a node that is accessible via SNMP or netxms agent you can right-click on interface and select "Create data collection items". There you will be able to create the data collection items (DCIs) that will collect numeric data on the traffic. Then you can right-click node and select Last values - the data will be there.
#930
General Support / Re: Notification Channel driver "Shell"
November 09, 2021, 04:51:55 PM
Replicated this on Ubuntu 18 so looks to be a bug. Created an issue, you can monitor resolution there: https://track.radensolutions.com/issue/NX-2170