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

#2311
General Support / Re: v2.1-M1 upgrade problem
November 17, 2016, 09:53:32 AM
Hi,

please run nxdbmgr upgrade with -t option and post output.

Best regards,
Victor
#2312
General / Re: Asking for french translation
November 10, 2016, 10:20:10 AM
Hi,

for menus and buttons & character precedes letter that will be used as keyboard shortcut. So for example text

Show &object details

will be displayed as

Show object details

and letter "o" will be keyboard shortcut (and depending on the system will be underlined).

It is better to use existing shortcuts when possible as they are non-overlapping - but if not possible you can choose different shortcuts - it can be fixed later.

Best regards,
Victor
#2313
General Support / Re: Find MAC/IP - where does it search?
November 10, 2016, 10:14:24 AM
Hi,

search for MAC address works only using FDB on switches - so if you don't have your switches in the system it won't find anything. If you do have switches managed by NetXMS, than it is probably a bug. In that case, could you please show FDB for the switch where this node actually connected?

Best regards,
Victor
#2314
Hi,

1) currently no;

2) it is known issue that should be solved in 2.1 (and possibly in 2.0.7).

Best regards,
Victor
#2315
General Support / Re: same threshold on multiple dci
November 10, 2016, 09:45:19 AM
Hi,

in second PostEvent you pass DCI name as tag, not as first event parameter. You have to insert null there (as in first PostEvent call).

Best regards,
Victor
#2316
Это баг. Исправили репозиторий.
#2317
ubnt можно мониторить через агента (он использует http/https) - https://wiki.netxms.org/wiki/Ubiquiti_and_Ligowave_wireless_monitoring
#2318
Общие вопросы / Re: RADIUS Auth protocol
November 08, 2016, 12:48:04 PM
Уже перенесен в 2.0 ветку, будет в релизе 2.0.7.
#2319
General Support / Re: Find text string within log file
November 08, 2016, 12:47:15 PM
Hi,

yes, logwatch is a correct choice. Parser could be following:

<parser>
   <file>/path/to/log/file</file>
   <rules>
      <rule>
         <match>Failed to connect to FX Server</match>
         <event>FX_SERVER_CONNECT_FAILED</event>
      </rule>
   </rules>
</parser>


and add the following to nxagentd.conf:

# this is main section
SubAgent = logwatch.nsm

[LOGWATCH]
Parser = /path/to/parser.xml


you have to create event FX_SERVER_CONNECT_FAILED on server (of course you can name it differently) - it will be generated each time this string will be found in log file.

Best regards,
Victor
#2320
Hi,

there is a bug introduced in 2.1-M1 - SMTP sender do not accept loopback addresses. I'll fix that for next release. In the meantime you can use server's external IP as mail server address.

Best regards,
Victor
#2321
General Support / Re: CLI
November 08, 2016, 11:42:51 AM
Hi,

topology poll can be started via nxadm:

nxadm -c "poll topology <node_id>"

Best regards,
Victor
#2322
Hi,

just noticed from

JAVA: using JVM C:\Program Files (x86)\Java\jre1.8.0_101\jre\bin\server\jvm.dll

that you seems to be using 32 bit JVM, but most likely you have 64 bit agent. You should use 64 bit JVM with 64 bit agent and 32 bit JVM with 32 bit agent.

Best regards,
Victor
#2323
Hi,

can you read this oid using nxsnmpget? Are you using proxy agent?

Best regards,
Victor
#2324
General Support / Re: DCI Hosts Down
November 08, 2016, 11:36:42 AM
Hi,

currently it's not possible to count alarms from script. I'll add access to that information in next release.

Best regards,
Victor
#2325
General Support / Re: Read external web API as DCI
November 08, 2016, 11:30:58 AM
Hi,

you can create external parameter in agent and use curl to get this number, like this:

nxagentd.conf:

ExternalParameter = QueueSize:curl https://example.org/status/queueSize


and then your agent will have parameter QueueSize which you will be able to monitor as usual.

Best regards,
Victor