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

#7291
Пока нельзя. Единственный вариант - это отключить configuration polling на роутере и удалить подсети, но это плохой workaround.
#7292
General Support / Re: RAM percentage?
April 18, 2008, 11:12:25 AM
Some additional info can be found in this thread: https://www.netxms.org/forum/index.php/topic,289.0.html.

Assuming that you have DCI for parameter System.Memory.Physical.Total, your transformation script may look like this:


sub main()
{
   total = GetDCIValue($node, FindDCIByName($node, "System.Memory.Physical.Total"));
   return $1 / total * 100;
}


or simplified to


$1 / GetDCIValue($node, FindDCIByName($node, "System.Memory.Physical.Total")) * 100


Best regards,
Victor
#7293
Поменять нельзя. Но могу это сделать в следующем релизе, технически это не сложно.
#7294
Должно быть


sub main()
{
   return ($2 == 4227794) ? 1 : 0;
}

#7295
General Support / Re: Problems with agent parameters
April 18, 2008, 09:18:24 AM
Just to make sure that we are understanding each other correctly: processor load and processor utilization are different parameters - processor utilization, or usage (represented by System.CPU.Usage) is a percentage of time spent by processor outside idle loop, and processor load (represented by System.CPU.LoadAvg) is an average length of process run queue (or average number of processes ready to run but waiting for execution because CPU is busy running other process). So, when CPU utilization goes to 100%, CPU load can be 2 - it just mean that in average, 2 processes are waiting for execution - which is normal.
CPU utilization is mostly used in Windows world, and CPU load average - in UNIX world. We support both of them on all platforms.

Best regards,
Victor
#7296
General Support / Re: Invalid alarm ID's
April 18, 2008, 09:07:50 AM
I'm working on it.

Best regards,
Victor
#7297
General Support / Re: Windows mobile 5/6 console?
April 18, 2008, 09:05:44 AM
Not in the near future, because our time mostly goes to more important core features and Linux console. I can provide help if somebody will write that, but I will not be able to do it myself - only because of lack of time.

Best regards,
Victor
#7298
General Support / Re: Windows event log DCI ?
April 17, 2008, 01:26:49 PM
It's still there unfortunatelly... We have half-done code for event log monitoring, which was frozen some times ago due to lack of free time.

Best regards,
Victor
#7299
General Support / Re: RAM percentage?
April 17, 2008, 01:21:44 PM
Hello!

Looks correct. Do you have any problems with it? Also, since version 0.2.20 you can collect total amount of RAM as separate DCI and use it's value in calculation instead of hardcoded value.

Best regards,
Victor
#7300
General Support / Re: Problems with agent parameters
April 17, 2008, 01:17:18 PM
Is there any messages in agent's log (or system event log) when agent starts?

Best regards,
Victor
#7301
General Support / Re: Event log questions
April 17, 2008, 01:15:54 PM
Hello!

Both are not possible now, but already put in wishlist by many people.

Best regards,
Victor
#7302
General Support / Re: binding error to new mib file
April 17, 2008, 01:13:34 PM
Hello!

Looks like a bug in MIB compiler. As a workaround, just comment out or delete entire DEFVAL line - it is not used by compiler anyway.

Best regards,
Victor
#7303
General Support / Re: Web interface installation.
April 17, 2008, 01:10:27 PM
Correct way should be by adding --with-nxhttps to configuration line, like
./configure --with-server --with-agent --with-mysql --with-nxhttpd
I'll check this on my machine, but it should work...

Best regards,
Victor
#7304
General Support / Re: Web interface problem.
April 15, 2008, 06:45:49 PM
Sounds quite strange. How nxhttpd.conf looks like and what type of system you are running on?

Best regards,
Victor
#7305
General Support / Re: Remote node manipulation.
April 15, 2008, 06:42:32 PM
Hi!

Built-in actions System.Shutdown and System.Restart only available on Windows platform. On UNIX'es, you should define them manually in nxagentd.conf like this:


Action = System.Shutdown:/sbin/halt
Action = System.Restart:/sbin/reboot


Best regards,
Victor