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

#1981
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
#1982
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
#1983
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
#1984
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
#1985
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
#1986
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
#1987
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
#1988
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
#1989
Hi,

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

Best regards,
Victor
#1990
Hi,

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

Best regards,
Victor
#1991
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
#1992
General Support / Re: Add custom columns?
September 19, 2017, 09:56:33 PM
Currently it's not possible.

Best regards,
Victor
#1993
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
#1994
General Support / Re: RabbitMQ Monitoring
September 19, 2017, 09:54:13 PM
Hi,

currently there is no ready to use solution. You probably can build shell script that will use RabbitMQ HTTP API to fetch required information and get it into NetXMS via external parameters.

Best regards,
Victor
#1995
Hi,

it's not possible without changes in the console. One possible option could be macro to insert user's custom attributes and UI for editing user's custom attributes. Feel free to register feature request in out tracker.

Best regards,
Victor