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

#2326
Добрый день,

биты и байты не перепутаны? .1.3.6.1.2.1.31.1.1.1.10.306 и .1.3.6.1.2.1.31.1.1.1.6.306 и возвращают значение в байтах, для получения битов/сек надо значение домножить на 8 в transformation script.
#2327
Добавил атрибут lastAgentCommTime - появится в версии 2.1-М2.
#2328
It's definitely unexpected, and it's definitely bug on our side. I'll investigate it further. Thank you!

Best regards,
Victor
#2329
Hi,

~= will replace $1 which is instance on entry with first capture group, but you don't have one, so returning empty string. Server consider empty string as instruction no use original instance. Also, your regular expression is wrong. Something like this should work (didn't actually test it):


// Each line has format
// index addr type macaddr name
if ($1 ~= "[0-9]+ 10\\.200\\.[0-9]+\\.[0-9]+/[0-9]+ [0-9]+ [0-9A-Fa-f]+ (.*)")
{
   return %(true, $1);
}
return false;


This script checks that IP address part starts with 10.200 and extracts interface name as new instance.

Best regards,
Victor
#2330
General Support / Re: Parser file name
October 20, 2016, 09:19:17 AM
no, you can specify multiple <file> tags in parser, but wildcards are not allowed.

Best regards,
Victor
#2331
General Support / Re: Encoding problems
October 20, 2016, 09:15:30 AM
Hi,

UCS-2/UCS-4 file support in log parser still not implemented properly. I'll try to schedule it for 2.1-M2 release.

Best regards,
Victor
#2332
What is server OS version?

Best regards,
Victor
#2333
General Support / Re: nxshell snmp vaules
October 20, 2016, 09:01:48 AM
Currently it's not possible. I've added request for context support in data collection as feature request (https://dev.raden.solutions/issues/1325).

Best regards,
Victor
#2334
General Support / Re: Interface list is missing
October 20, 2016, 08:58:55 AM
Hi,

could you please post result of walk on .1.3.6.1.2.1.2?

Best regards,
Victor
#2335
Hi,

it's really strange, I don't see anything wrong in capture. Is it possible to provide me remote access via SNMP to your device so I can debug on our side?

Best regards,
Victor
#2336
General Support / Re: OSX Installation Guide
October 19, 2016, 09:37:05 PM
Hi,

from the log it seems that encryption is on. What do you get when running netxmsd -v?

Best regards,
Victor
#2337
General Support / Re: DCI checks over SSH
October 19, 2016, 04:04:28 PM
Hi,

make sure you have

SubAgent = ssh.nsm

in nxagentd.conf on 10.31.1.97.

Best regards,
Victor
#2338
Hi,

By default agent looks for jvm.dll in your PATH or, of JAVA_HOME environment variable is set, in location %JAVA_HOME%\bin\server or %JAVA_HOME%\jre\bin\server. From your log file it seems that JAVA_HOME is not set correctly. Make sure that you either have jvm.dll in PATH, or that JAVA_HOME environment set correctly. Alternatively you can manually specify full path to jvm.dll using JVM parameter in subagent configuration.

Also, if you are on 64bit system make sure that you are using 64 bit version of both JVM and agent.

Best regards,
Victor
#2339
Hi,

from log and netstat it seems that Tomcat listens only on port 443 (not sure from the log if it expects https or plain http connection though).

Best regards,
Victor
#2340
Announcements / Re: NetXMS 2.1-M1 released
October 13, 2016, 12:21:39 PM
I think yes.

Best regards,
Victor