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

#2731
General Support / Re: SYS_AGENT_UNREACHABLE
January 25, 2016, 11:16:06 AM
You should set full path to log file in LogFile parameter in nxagentd.conf.

Best regards,
Victor
#2732
Hi,

what driver is selected for this Cisco switch (you can see it on object overview page)?

Best regards,
Victor
#2733
General Support / Re: centos 7 init script
January 22, 2016, 06:48:16 PM
Hi,

I've fixed startup scripts, thank you!

Best regards,
Victor
#2734
General Support / Re: Mac Agent and network usage
January 22, 2016, 06:45:25 PM
Hi,

I suppose you mean NetXMS client (GUI application), not agent?

Best regards,
Victor
#2735
Hi!

Do you have zones and agent set as proxy for zone, or it is set as proxy for individual nodes?

Best regards,
Victor
#2736
General Support / Re: SYS_AGENT_UNREACHABLE
January 22, 2016, 06:33:22 PM
Hi,

try to switch agent logging to file if it's not done already (by changing LogFile parameter in nxagentd.conf), set debug level to 6 (by adding DebugLevel = 6 to nxagentd.conf) and run agent for some time. After you got some agent unreachable errors, post your log file (or send it to [email protected]).

Best regards,
Victor
#2737
General Support / Re: Create Rack
January 20, 2016, 04:26:15 PM
Hi,

in 2.0.1 you can configure numbering direction and rack height in rack object properties.

Best regards,
Victor
#2738
Пришлите config.log пожалуйста.
#2739
General Support / Re: Can Netxms Handle this
January 17, 2016, 06:16:41 PM
Hi,

load average 32 for a pool means that you have about 32 tasks running in parallel on this thread pool. You can check history for that parameter and set pool max size at a bit higher value then max for load average and min size to medium value for load average.

Best regards,
Victor
#2740
General Support / Re: Logparser
January 14, 2016, 10:18:00 AM
Hi,

such message is usual when log rotation occurs. To detect log rotation agent compares size returned by stat using file name, and size returned for currently open file descriptior. If first is smaller, it assumes that file was rotated, re-open it, and start reading from the beginning. How often you got this message and is this file actually rotated?

Best regards,
Victor
#2741
General Support / Re: Racks configuration
January 14, 2016, 10:14:37 AM
Hi,

actually currently the only possibility to display something in rack is to create node object for it. So you'll have to create nodes for each disk shelf and place them as needed. For controllers you'll need to set height 1 and rack position 1 and 2.

Best regards,
Victor
#2742
General Support / Re: unsigned int64 bit data polling
January 14, 2016, 10:12:43 AM
If you need to format date like this you can use strftime function:

return strftime("%d-%m-%Y %H:%M", $1);

This will convert UNIX time stamp from $1 into string of format DD-MM-YYYY HH:MM.

Alternatively, you can use string concatenation, like this:

t = gmtime($1);
return t->mday . "-" . t->mon . "-" . t->year;

Best regards,
Victor
#2743
Hi,

attached is patched server core (for 64 bit Windows).

Best regards,
Victor
#2744
General Support / Re: SQL Query Error on 2.0.1
January 14, 2016, 10:00:50 AM
Hi,

what database you are using?

Best regards,
Victor
#2745
К сожалению это именно баг. К следующему релизу обязательно исправим.