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

#1966
Hi,

do you have wrong data collected or data is correct but not shown on the map?

For link status - could you please share screenshot of link properties?

Best regards,
Victor
#1967
General Support / Re: Database export failed
October 04, 2017, 11:37:58 PM
P.S. You can also try to use "nxdbmgr migrate" to move data directly to target database without creating intermediate dump.
#1968
General Support / Re: Database export failed
October 04, 2017, 11:37:10 PM
Hi,

it's a bug in DB manager, fixed in upcoming 2.1.2.

Best regards,
Victor
#1969
General Support / Re: L2 MAP Save Layout
October 04, 2017, 11:35:29 PM
Hi,

could it be that objects are being deleted from the map and then re-added? Positions looks like default positions for newly added objects.

Best regards,
Victor
#1970
Hi,

you can use filtering script. If you are handling SYS_IF_DOWN event then parameters of the event will be following:

1) Interface object ID
2) Interface name
3) Interface IP address
4) Interface netmask
5) Interface index

They are accessible within script via $event->parameters[n]. For example, to process only events for interfaces Ge0/0 and Ge0/2:


ifName = $event->parameters[2];
return (ifName == "Ge0/0") || (ifName == "Ge0/2");


Best regards,
Victor
#1971
General Support / Re: Parameters for SMSEagle driver
October 04, 2017, 11:28:42 PM
Hi,

you have to set two server configuration parameters:

SMSDriver to smseagle.sms
SMSDrvConfig to configuration string in key1=value1;key2=value2;... format. SMSEagle driver accepts the following parameters: host,port,login,password. For example:

host=10.10.10.2;port=1234;login=user;password=UserPass

You'll have to restart server after setting SMS driver parameters.

Then you can create SMS sending action as usual and use this action in event processing policy.

Best regards,
Victor
#1972
General Support / Re: Import database backup file
October 04, 2017, 11:23:17 PM
Hi,

that's a bug in export/import procedure. I registered it in our issue tracker: https://track.radensolutions.com/issue/NX-1330

Best regards,
Victor
#1973
Dashboard elements expected to show floating point numbers as well. What elements exactly do not show them? Can you share screenshots of dashboard element configuration and result?

Best regards,
Victor
#1974
Hi,

you can only disable configuration polls for that node completely. Could you please provide output of command

nxget -T node_ip_here System.InstalledProducts

?

Best regards,
Victor
#1975
General Support / Re: adding mibs 2.1.1
September 19, 2017, 10:06:41 PM
Hi,

probably process is crashing. If you try to compile just one MIB, will it go any further?

Best regards,
Victor
#1976
Hi,

maximum number of threads in MAIN pool is hard-coded. We didn't expect that this limit can be reached...

Best regards,
Victor
#1977
Hi,

it's a bug in UI, we will fix it in next patch release.

Best regards,
Victor
#1978
General Support / Re: Show IP in dashboard
September 19, 2017, 10:00:18 PM
Hi,

you mean you see IP in interface overview in NetXMS UI? Then you can use script to get it into your message/DCI/etc. Function GetInterfaceObject can give you Interface object, which contains list of IP addresses.

Best regards,
Victor
#1979
General Support / Re: Add custom columns?
September 19, 2017, 09:56:33 PM
Currently it's not possible.

Best regards,
Victor
#1980
General Support / Re: webui logging
September 19, 2017, 09:55:17 PM
Hi,

are you using Windows installer for web UI server or just deployed war file into your application server?

Best regards,
Victor