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

#5236
General Support / Re: Web console problem
July 10, 2012, 12:58:35 PM
Hi!

You should not use nxhttpd. It is deprecated, and will be removed in 1.2.2. You should use new web UI, which comes in separate installation package: https://www.netxms.org/download/webui/netxms-webui-1.2.1-x64.exe. It basically contains Jetty and NetXMS web UI war file. You can also deploy war file to existing Java application server. See this for few more details: http://wiki.netxms.org/wiki/Web_Interface_Installation_Guide.

Best regards,
Victor
#5237
Hi!

Line charts is a javascript element running locally in browser, so maybe it takes local timezone of the workstation, or ignores timezone settings. I'll check it.

Best regards,
Victor
#5238
General Support / Re: snmp traps and events
July 09, 2012, 07:41:23 PM
Hi!

No, I didn't change anything in SNMP trap mapping. Can you please send me detailed screenshots of your configuration with problematic trap and event?

Best regards,
Victor
#5239
General Support / Re: Custom Attributes
July 09, 2012, 01:15:51 PM
It will be easy since version 1.2.2 :) I have added new function GetObjectChildren, which can be used for node enumeration. See also example: http://wiki.netxms.org/wiki/Script_Example:_Enumerate_All_Nodes.

For 1.2.1, one possible way could be to add handler for SYS_NODE_UNMANAGED event, and unmanage all (or required) nodes, then manage them again.

Best regards,
Victor
#5240
Feature Requests / Re: agentsless
July 09, 2012, 12:19:17 PM
I agree that this could be useful. I have added this as feature request.

Best regards,
Victor
#5241
Похоже deb пакет собрали без lmsensors :( Я попозже сделаю сборку с lmsensors - сейчас не успеваю.
#5242
Скорее всего уже существует объект с таким IP адресом. Попробуйте поиск по адресу (>адрес в строке фильтра).
#5243
General Support / Re: Custom Attributes
July 06, 2012, 01:53:19 PM
Hi!

There are previously undocumented function SetCustomAttribute. I have added appropriate wiki page: http://wiki.netxms.org/wiki/NXSL:SetCustomAttribute. To set custom attributes for new nodes, you can handle SYS_NODE_ADDED event in event processing policy and start a NXSL script which will populate custom attributes.

Best regards,
Victor
#5244
General Support / Re: Windows Web Setup
July 05, 2012, 11:00:13 AM
Functionality of web console is almost the same as in desktop console. Some parts in web console may not work as good as in desktop console, especially charts and network maps, you cannot save perspectives yet (actually any preferences - we are working on that), and copy to clipboard function is not working.

Best regards,
Victor
#5245
General Support / Re: Windows Web Setup
July 04, 2012, 08:14:17 PM
#5246
Hi!

It looks like new database does not contain NetXMS tables. Other possible problem could be that tables in new database has schema name different from NetXMS database user's schema (maybe I'm using wrong terminology here, I'm not a MS SQL expert - I mean that full table names could be dbo.config for example in new database, but server uses only short names, like config, so it can search for netxms.config instead of dbo.config).

Best regards,
Victor
#5247
Pohoze eto takaja-ze problema: https://www.netxms.org/forum/general-support/nxdbmgr-exe-upgrade-x/msg6645/#msg6645. Poprobujte variant 1 - rukami sozdat' tablicu i potom upgrade s kljuchom -X.
#5248
A kakaja baza ispol'zuetsja?
#5249
General Support / Re: Difference between parameters
July 03, 2012, 11:33:39 PM
Hi!

System.CPU.Usage.IoWait measures how much time CPU spent waiting for I/O completion (or, more precisely, it's a percentage of time that the CPU was idle during which the system had an outstanding disk I/O request), while System.IO.DiskTime measures time disk system was busy processing requests. Not all systems can provide both parameters, and if some do, they can be very different. One example is that if you have two processes - one is I/O intensive and one is CPU intensive, your iowait % will be low, because CPU will not idling, but execute CPU intensive process while I/O intensive process waits for I/O completion.

Best regards,
Victor
#5250
General Support / Re: Threshhold
July 03, 2012, 11:24:34 PM
Value in thresholds can be only constant. You should create DCI which will use correct values and then use constants in thresholds. You can use transformation script to convert absolute value into percentage, like this:

$1 * 100 / GetDCIValueByDescription($node, "MaxAssociations")

Best regards,
Victor

P.S. It is planned to add scripting support to thresholds, but this functionality most likely will be available in version 1.2.3 only.