News:

We really need your input in this questionnaire

Main Menu
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

#2191
General Support / Re: trasnformation scripts
March 20, 2017, 11:05:32 PM
Hi,

you can transform it when form event message. Instead of %1, %2, etc. for inserting trap parameters you can use macro %[script_name], and create appropriate script in script library. Whatever this script returns will be inserted. For example, if you have parameter 2 set to either 0 or 1 and you want to return true/false, you can create script like this:


switch($event->parameters[2])
{
   case 0:
      return "true";
   case 1:
      return "false";
}

return "unknown";


Best regards,
Victor
#2192
General Support / Re: Install on Windows Nano Server
March 20, 2017, 11:00:45 PM
I will install it play with it. But I think we should add support for that. I've registered a feature request for that: https://track.radensolutions.com/issue/NX-1221.

Best regards,
Victor
#2193
General Support / Re: SQL Database Error
March 20, 2017, 10:56:29 PM
Hi!

You can uninstall NetXMS server completely (it will left database intact), and then install it without installing bundled SQL Server client and attach to existing database.

Best regards,
Victor
#2194
Hi,

yes, we will switch to SHA256 eventually.

Best regards,
Victor
#2195
General Support / Re: DCI Table "valueAsMac"?
February 23, 2017, 07:40:27 PM
You want to get value as MAC address for table cell? And this table was retrieved by SNMP? Or you are doing direct SNMP request from the script?

Best regards,
Victor

#2196
General Support / Re: World Map - Node Name
February 23, 2017, 07:38:07 PM
Hi,

currently not. You can fill feature request for that.

Best regards,
Victor
#2197
You can't use them in script without node context when CheckTrustedNodes is on.

Best regards,
Victor
#2198
Hi,

we will check. You can report issues at https://track.radensolutions.com

Best regards,
Victor
#2199
Hi,

there should be no changes to it. Could you please turn on debug on agent and post log for parameter request?

Best regards,
Victor
#2200
Then NetXMS server cannot match it to correct device - there are just no enough information. You can setup syslog proxy on agent behind NAT so it will receive syslog messages from original addresses and forward to NetXMS server.

Best regards,
Victor
#2201
Hi,

it is known issue caused by incorrect handling of counter reset. It comes from the fact that NetXMS do not know if DCI is cumulative value or can change both ways. So it assumes latter and when new value less than old value you get those extra large values (not negative because for traffic counters usually used unsigned data types). We plan to fix it by introducing new DCI data types - counter 32 bit and counter 64 bit (to match SNMP types) - for them system will now that they are cumulative and handle resets correctly.

Best regards,
Victor
#2202
Hi,

if IP addresses are readable from vendor MIB on Netonix and Ubiquity AirOS devices we can add a driver for them to create management interfaces correctly.

Best regards,
Victor
#2203
General Support / Re: Event Log Ordering Default
February 23, 2017, 07:22:44 PM
Hi,

default ordering is currently hard-coded. Feel free to add feature request for that.

Best regards,
Victor
#2204
General Support / Re: Status Map Polling time / setup
February 23, 2017, 07:22:05 PM
Hi,

currently answer to both questions in "no". Feel free to register feature requests in our ticket system though :) For polling time change could be quite easy - server can measure and store polling time for last status poll, which can be made available through internal DCI. Having this value exposed you'll be able to do usual stuff like set thresholds and generate alarms.

Possible workaround cold be to create script DCI which will do SNMP request on any OID and measure time taken by that request.

Best regards,
Victor
#2205
General Support / Re: DCI value format string
February 23, 2017, 07:17:33 PM
Yes, %* formatter was added much layter then original topic was discussed. Now it is better to collect value as is and use formatters to display in K/M/G.

Best regards,
Victor