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

#2656
General Support / Re: libc segfault crash
March 08, 2016, 10:00:41 PM
bt will be enough.

Best regards,
Victor
#2657
Hi,

you can use {instance} macro in performance tab chart title. It will be replaced by actual instance.

Best regards,
Victor
#2658
General Support / Re: Table from ExternalCommand
March 08, 2016, 09:57:26 PM
Hi,

you mean to define external table? Currently it's not possible, but can be implemented.

Best regards,
Victor
#2659
Hi,

in your parser definition you miss <event> tag. Without it parser matches all events but do not send anything to the server.

Best regards,
Victor
#2660
General Support / Customer references needed
March 04, 2016, 11:15:18 AM
Hi all,

we need customer reference from telcos/internet providers for our prospect customer project. It will be very kind if existing users from this area could provide reference for us. We need company name, approximate network size, and minimal information on what is being monitored (everything, only network equipment, etc.). You can post information here or send directly to me in private message. This information won't be published, only provided to our prospect customer.

Thank you!

Best regards,
Victor
#2661
Добрый день!

Нам для одного проекта требуются отзывы пользователей - провайдеров. Если кто-то может предоставить, будем очень благодарны. Надо знать название компании, кол-во устройств которое мониторится, примерно что мониторится (все, только сеть, и т.д.) - можно мне в личку. Публиковаться информация нигде не будет, мы только предоставим ее потенциальному заказчику.

Спасибо!
#2662
Общие вопросы / Re: скриншоты linux
February 22, 2016, 02:27:36 PM
Пока снятие скриншотов на Линуксе не поддерживается. Добавил как feature request: https://dev.raden.solutions/issues/1172
#2663
Спасибо, войдет в релиз 2.0.3.
#2664
General Support / Re: Random Network Interfaces
February 16, 2016, 08:37:01 PM
Hi,

did you check what is reported on Windows server with ipconfig /all command?

Best regards,
Victor
#2665
General Support / Re: SYS_IF
February 16, 2016, 08:33:33 PM
Hi,

SYS_IF_DOWN and SYS_IF_UP events are pre-defined and system will generate exactly these events. But you can change text for any system event, so it could be simplest solution.

Best regards,
Victor
#2666
Hi,

looks like a bug actually. Logical behaviour would be to insert empty values. I'll register this as a bug.

Best regards,
Victor
#2667
General Support / Re: Duplicate Node generated
February 12, 2016, 07:11:25 PM
Seems to be a serious bug then. Could you please provide output of commands

nxadm -c "show ind nodeaddr"
nxadm -c "show ind interface"

(only lines with IP addresses related to that switch).

Best regards,
Victor
#2668
Hi,

there are few errors:

1. you should place your code within main() function or not use functions at all;
2. If this is threshold violation event, then instance will be passed as event's parameter #6, and can be accessed as $event->parameters[6]
3. Expression

return (value != null) && (value > 0);

will return 0 (false) or 1 (true) which is probably not what you want.

Script that will return value of FileSystem.Free for current instance or N/A if it cannot be obtained can looks like following:


value = AgentReadParameter($node, "FileSystem.Free(" . $event->parameters[6] . ")");
return (value != null) ? value : "N/A";


Best regards,
Victor
#2669
General Support / Re: Transformation Script
February 12, 2016, 01:29:24 PM
Hi,

you have to use main (lowercase) or not use main function at all. Correct script would be

return ($1 / 1024 / 1024 / 1024) . " GB";

or

sub main()
{
   return ($1 / 1024 / 1024 / 1024) . " GB";
}

Best regards,
Victor
#2670
Hi,

you can use scripts for that. You can insert return value of script from script library using %[script_name] macro, and in a script you can use AgentReadParameter to read data directly from agent or GetDCIValueByName/GetDCIValueByDescription to get value of another DCI.

Best regards,
Victor