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 - Tatjana Dubrovica

#136
Announcements / Re: NetXMS 2.1-M2 released
February 16, 2017, 12:56:51 PM
For now only 2.0.x branch is considered as a stable one. All 2.1-Mx are Milestone releases before 2.1.0, which will be considered as a stable release.
#137
Currently working on "Template Market" that will easily accessed from Console. No release date yet.
#138
Try to check server log on debug lvl 6.
#139
General Support / Re: Send alert when DCI states error
February 15, 2017, 04:43:59 PM
If Ping DCI is polled once per minute you can set "Samples" to 5(1min*5 = 5min). This means: if last 5 values returned collection error - generate Event. Same as last 5 min offline.
#140
Можно но сложно.
В EPP нужно написать скрипт который (во время прихода события о неправильном логине) будет сохранять список пришедших трапов за последний час в строку и в случае если их было больше 10 генерить другое событие который уже будет создавать аларм. Строку можно хранить в Situations, которые в релизе 2.1-M3 мы заменим на PersistentStorage. Если в NXSL использовать посик Situations по имени, то переход на PersistentStorage будет не заметен.
Вот пример который делает похожую задачу в пределах 1 узла и хранит значения в CustomAttribute узла:

array attr;

for (i = 0; i < 5; i++)
{
   attr = GetCustomAttribute($node, "collectedEventTime" . i);
}

step = GetCustomAttribute($node, "collectedEventStep");

for (i = 0; i < 5; i++) {
   if(attr == null)
   {
      SetCustomAttribute($node, "collectedEventTime" . i, time());
      SetCustomAttribute($node, "collectedEventStep", i);
      return;
   }
}

step++;
if(step > 4)
   step = 0;   

//Cehck that value that we will change occured more than 5 minutes ago
if((time() - attr[step]) < 300)
{
   //generate alarm
   PostEvent($node, "MARK_EVENT_AS_CRITICAL", null, "Event marked as critical");
}

//set new time value
SetCustomAttribute($node, "collectedEventTime" . step, time());
SetCustomAttribute($node, "collectedEventStep", step);

#141
General Support / Re: Send alert when DCI states error
February 15, 2017, 03:53:45 PM
Yes you can create event on data collection error. Screenshot of threshold configuration attached.
Additional information about Alarm configuration form event can be found in documentation: https://www.netxms.org/documentation/adminguide/event-processing.html
#142
Is implemented in 2.1-M2 release.
#143
General Support / Re: Network discovery
February 15, 2017, 03:03:19 PM
What version of NetXMS do you use?
Any object that is added to NetXMS should be shown in object tree. Have you tryed to serach in using object tree filter IP address search like: ">10.5.0.27"

PS. May be connected https://www.netxms.org/forum/general-support/ip-conflict-with-deletedchanged-node/?topicseen
#144
General Support / Re: Presets greater than 12 hour
February 15, 2017, 02:33:10 PM
Fix is not yet released. It will be included in 2.0.9 and 2.1-M3. Now it is available only in development branch (bug was in UI so if anyonle will make buld form development is is required to rebuild console).
#145
General Support / Re: Apply Node to Template Problem
February 14, 2017, 12:19:18 PM
Was able to reproduce. Thank you.
#146
General Support / Re: Apply Node to Template Problem
February 14, 2017, 11:38:30 AM
Was not able to reproduce on development enviroments.
Can you please provide the log for console?
Standalone console log can be found under your user home folder .nxmc/data/.metadata/.log
Web console log can be found under servlet container log folder for applications. In my case it is:  /var/lib/tomcat8/work/Catalina/localhost/nxmc/eclipse/workspace/.metadata
#147
Стандартные шаблоны перезаписываются после рестарта сервера если серверный конфигурационный параметр ImportConfigurationOnStartup выставлен в 1. Если вы не хотите обновлять стандартные шаблоны - выставите ImportConfigurationOnStartup в 0.

Ваши изменения в стандартных шаблонах уже переписаны и восстановить их можно только из backup базы NetXMS(если она делалась).
#148
Bug fixed. Will be included in new stable release.
#149
General Support / Re: File.Count
January 25, 2017, 03:34:50 PM
You can check Example 2 : https://www.netxms.org/documentation/adminguide/file-meta-info-monitoring.html#example-2
Check that the count of files that were created in last 24 hours is bigger than zero.
#150
We have implemented option to have different switch port layouts on "Ports" tab (non default like down-to-up, right-to-left). For now we have changed port layout only for HP A-series (former H3C) as we have one. If you know other SNMP devices that have non standard port layout configuration please share. Will be happy to set correct configuration for them.