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

#2491
If you use context menu it will extract currently selected DCIs. You can also use "export all" option in view menu (in top right corner).

Best regards,
Victor
#2492
General Support / Re: Windows Server CPU Monitoring
July 07, 2016, 11:57:08 AM
P.S. Actually, for Windows servers you can use performance counters to get momentary CPU usage - select "Windows performance counter" as DCI source and configure appropriate counter.
#2493
General Support / Re: Windows Server CPU Monitoring
July 07, 2016, 11:55:37 AM
Hi,

agent already calculates average for one minute, so you receive average value. If you collect it every second, you'll get it as sliding window, but still it will be average for last 60 seconds.  It is done that way because usually data collection do not happen every second to avoid excessive network traffic and load on the systems involved. Currently it is not possible to get 30 seconds average or momentary CPU usage values from agent.

Best regards,
Victor
#2494
Hi,

I see few options to improve this:

1) rename "Remove" option on template to "Remove from node" (or something similar that will not imply destruction of template itself);
2) add context menu option "remove from template" to node under template, which will remove node from that particular template.

Best regards,
Victor
#2495
Hi,

yes, it is bug in FindObject (fixed in 2.0.5). Anyway, it may not be a good idea to use FindObject - because it finds objects globally, while you need interfaces from that specific node. You can add the following function to your script to get interface by name:


sub FindInterfaceByName(node, ifName)
{
foreach(i : GetNodeInterfaces(node))
{
   if (i->name == ifName)
      return i;
}
return null;
}


and use it like this:


iface = FindInterfaceByName($node, "Se1/0");


Best regards,
Victor
#2496
General Support / Re: Agent Cache
July 07, 2016, 11:05:23 AM
Implemented in 2.1-M1 (agent will be compatible with 2.0.5 server).

Best regards,
Victor
#2497
Hi,

but desktop console can connect? Try to find log file on web UI (it is called .log and should be within application's working directory - in my case it is /var/lib/tomcat7/work/Catalina/localhost/nxmc/eclipse/workspace/.metadata/.log).

Best regards,
Victor
#2498
Hi,

wheezy should be available now as well.

Best regards,
Victor
#2499
General Support / Re: Network Map
June 30, 2016, 12:08:08 PM
You cannot show tooltips non-interactively. However, you can put DCI values on a map using DCI container decoration. Or you can use DCI image and use transparent image when threshold not active and non-transparent image with service information when threshold is active.

Best regards,
Victor
#2500
Добавил в 2.0.5 и 2.1-М1 (вместе с атрибутами source и sourceId).
#2501
Во всех скриптах где есть $event (EPP filter и script action) есть переменная $object, которая указывает на источник события. Добавить источник как атрибут самого события тоже не проблема конечно.
#2502
64 битные счетчики добавлены в 2.0.5 и 2.1-М1.
#2503
General Support / Re: Dashboards - Line Charts
June 29, 2016, 06:37:14 PM
Hi,

I've fixed that, fix will be included in 2.0.5 release.

Best regards,
Victor
#2504
Hi,

proper solution will include changes on agent side. I'll change the agent so it will save parameter names in local database so if server request comes before provider first run agent will respond with collection error instead of unsupported parameter.

Best regards,
Victor
#2505
Hi,

currently it is not possible.

Best regards,
Victor