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

#3796
Hi!

It could looks like following:


idxVoltage = $1->getColumnIndex("VOLTAGE");
idxStatus = $1->getColumnIndex("STATUS");

for(i = 0; i < $1->rowCount; i++)
{
   $1->set(i, idxVoltage, $1->get(i, idxVoltage) / 1000);
   if ($1->get(i, idxStatus) == 3)
   {
      $1->set(i, idxStatus, "OK");
   }
}


Best regards,
Victor
#3797
Announcements / Re: NetXMS 1.2.13 released
April 02, 2014, 08:24:56 PM
Hi!

You mean it crashed?

Best regards,
Victor
#3798
Скорее всего отваливается сессия по таймауту. А почему не используете Java консоль, там таких проблем не должно быть?
#3799
Сейчас -D в командной строке имеет приоритет. Проверьте что при запуске агента не указывается -D0.
#3800
Announcements / Re: NetXMS 1.2.13 released
April 02, 2014, 07:31:41 PM
It should be there.

Best regards,
Victor
#3801
I hope it will be available in a week or two.

Best regards,
Victor
#3802
Можно пробовать использовать ExternalParametersProvider - на форуме довольно много сообщений на эту тему, например это: https://www.netxms.org/forum/configuration/reading-in-values-from-a-file/msg10173/#msg10173.

Первая версия в ветке 1.3.x будет думаю в начале мая.
#3803
General Support / Re: WebUI on Server 2008 R2
April 01, 2014, 06:09:29 PM
Hi!

Yes, there is a bug which prevents web UI from running on port 80 (any other port will work). I'll fix it in next release.

Best regards,
Victor
#3804
А что это за база?
#3805
Что странно, все topology pollers сидят на ожидании ответа на SNMP запрос. Есть ли возможность посмотреть tcpdump'ом, как быстро приходят ответы на запросы, есть ли повторы?
#3806
Announcements / Re: NetXMS 1.2.13 released
March 31, 2014, 08:37:40 PM
Quote from: andrey--k on March 31, 2014, 03:55:32 PM
Debian 7 + Oracle
next error apears:

[31-Mar-2014 12:13:06.971] [ERROR] SQL query failed (Query = "INSERT INTO event_log (event_id,event_code,event_timestamp,event_source,event_severity,event_message,root_event_id,user_tag) VALUES (?,?,?,?,?,?,?,?)"): ORA-12899: value too large for column "NETXMS"."EVENT_LOG"."USER_TAG" (actual: 73, maximum: 63)
[31-Mar-2014 12:13:31.038] [ERROR] SQL query failed (Query = "INSERT INTO event_log (event_id,event_code,event_timestamp,event_source,event_severity,event_message,root_event_id,user_tag) VALUES (?,?,?,?,?,?,?,?)"): ORA-12899: value too large for column "NETXMS"."EVENT_LOG"."USER_TAG" (actual: 71, maximum: 63)


Fixed.

Best regards,
Victor
#3807
General Support / Re: Agent Deployment
March 31, 2014, 01:43:21 PM
Hi!

Upgrade goes as following:

1. server transfers installer file to the remote machine (file is placed into directory specified in FileStore parameter in nxagentd.conf). For file transfer server uses same agent connection.
2. Agent launch downloaded installer.
3. Installer issues stop command to agent service.
4. Installer copies new files.
5. Installer issues start command to agent service.

Best regards,
Victor
#3808
General Support / Re: fake object details
March 31, 2014, 11:55:00 AM
Hi!

Usually this can happen when connecting to address given as node's primary IP address actually ends up on NetXMS server's loopback interface. Can you check this with command line tools (for example, use nxsnmpwalk on problematic node's IP address and see what data you'll get)?

Best regards,
Victor
#3809
General Support / Re: Duplicate Nodes
March 31, 2014, 11:52:38 AM
Hi!

Active discovery should not do anything good or bad regarding this problem. I suspect that this is action #2 that helps (but still don't understand why). Do I understand you correctly that you disable discovery polling on only one node? If yes, can you describe this node in as much details as you can (most important are OS, number of interfaces, routing)?

Best regards,
Victor
#3810
General Support / Re: Create Rack
March 31, 2014, 11:48:42 AM
Hi!

Currently it's useless (I should hide this menu item). It's incomplete functionality which will allow you to create rack objects and put nodes inside to indicate how physical equipment located in racks.

Best regards,
Victor