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

#2551
General Support / Re: Netxms macro for instance??
May 27, 2016, 09:34:58 AM
Hi,

for threshold violation event it is %6 (or %<instance>). Are you sure you generate email from event related to threshoold?

Best regards,
Victor
#2552
General Support / Re: Disable DCI in script?
May 24, 2016, 06:09:38 PM
Hi,

currently it's not possible. You only can bulk enable/disable DCIs using nxshell scripts.

Best regards,
Victor
#2553
Hi,

in fact export file is just SQLite database. Try to run nxdbmgr import giving your database file as input.

Best regards,
Victor
#2554
Hi,

all mentioned points definitely worth fixing/implementing. What you call "conditions" will definitely be complicated, while rest seems to be relatively easy to implement. I'll try to schedule it for next releases.

Best regards,
Victor
#2555
General Support / Re: Port check on node add
May 24, 2016, 05:53:50 PM
Hi,

you can use portcheck subagent on management server. In the script you can use FindObject function to find management server node, then use AgentReadParameter to check status of a port using ServiceCheck.Custom parameter. For example:


mgmt = FindObject("netxms");
status = AgentReadParameter(mgmt, "ServiceCheck.Custom(" . $node->ipAddr . ",23)");
if (status == 0)
{
    // Port 23 open, do something
}


this script will check if port 23 is open on current node.

Best regards,
Victor
#2556
Windows / Re: Agent development - best-practice
May 24, 2016, 05:38:16 PM
Hi,

you best bet is to take any existing subagent as an example and ask questions here (src/agent/subagents/ecs for example - it is very simple subagent and structure should be easy to understand). You can also purchase training and/or support for your developers from Raden Solutions if you need premium support.

Best regards,
Victor
#2557
А сообщение где появляется? И какие текущие значения параметров пула DATACOLLECTION (должны собираться на верверной ноде)?
#2558
General / Re: Asking for french translation
May 18, 2016, 10:16:44 PM
Hi,

this would be very helpful. I've prepared language files for you: https://cloud.netxms.org/index.php/s/Pm6tl7HZCYxmZfr

You need to translate texts in files inside and send them back to me. Feel free to ask if you will have any questions!

Best regards,
Victor
#2559
General / Re: Asking for french translation
May 16, 2016, 07:30:05 PM
Hi,

French translation is currently just a placeholder - only platform parts are translated. If somebody French-speaking can assist with actual translation I'll provide language file to work with and necessary assistance.

Best regards,
Victor
#2560
Пришлите пожалуйста лог агента с дебагом 9.
#2561
Добрый день!

похоже на самом деле на неправильный threshold - 1.97 это вполне нормальное значение. Пробламе с пулом потоков если его load average превышает его максимальный размер.
#2562
Hi,

should be fairly easy to implement. Added as feature request: https://dev.raden.solutions/issues/1219.

Best regards,
Victor
#2563
Feature Requests / Re: message preview
May 14, 2016, 01:32:30 PM
Hi,

could be implemented. Added as a feature request: https://dev.raden.solutions/issues/1218.

Best regards,
Victor
#2564
Hi,

to directly change maintenance mode on object user should have "modify" access on that object.

Best regards,
Victor
#2565
General Support / Re: netxmsd segmentation faults
May 14, 2016, 01:25:36 PM
Hi,

also 2.0.3 may crash on receiving some SNMP traps (fixed in develop branch as well).

Best regards,
Victor