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

#3976
General Support / Re: Memory usage console
February 11, 2014, 02:06:11 AM
Hi!

My console normally uses around 100MB, but my MIB file is much smaller. I agree with you that MIB file can be loaded into memory on first access, not after start. Will change it.

Best regards,
Victor
#3977
It is possible to add threshold to status DCI and generate some custom event instead of SYS_NODE_DOWN, and do all processing for this custom event. But status and SYS_NODE_DOWN have one important difference - status also takes current alarms into consideration. So, if there is active critical alarm, status will be 4 (critical), but SYS_NODE_DOWN will not be generated, because node itself is reachable. Starting from upcoming 1.2.12 release, it is also possible to create DCI which will check node down flag. If you put threshold on such DCI and will generate some custom node down event, you'll get exactly what you need. To create such DCI, create new DCI with source "Internal" and parameter name "Dummy", and use the following transformation script:


return ($node->runtimeFlags & 0x04) ? 1 : 0;


This DCI will return 1 if node is down and 0 otherwise.

Best regards,
Victor
#3978
General Support / Re: AlliedTelesis - network topology
February 11, 2014, 01:49:16 AM
Access to real equipment can really help. Can you contact me directly so we can organize it?
#3979
General Support / Re: Server with BMC-Board as one node
February 11, 2014, 01:45:58 AM
NetXMS server uses IP address resolved from host name (or IP address) specified as "primary host name" in node properties. You can see it in overview page as "Primary IP".

Best regards,
Victor
#3980
General Support / Re: Service.Check
February 11, 2014, 01:43:53 AM
Hi!

All ServiceCheck parameters just connects over TCP to target and do some handshaking. If I understand correctly you need to monitor local processes? Then you can just use Process.Count to check that required processes are running.

Best regards,
Victor
#3981
General Support / Re: DCI Threshold on string
February 11, 2014, 01:40:41 AM
Hi!

You can check that current string value differs from previous value by using "diff" threshold. But this will not work as you need - you won't be able to check what part of string was changed and so identify what service is not running. Better solution here would be instance discovery or tables - but this requires list or table DCI with all services, which is not available either. My recomendation is to wait for 1.2.12 release - I will add Service list and table support to agent and you'll be able to configure what you need without additional workarounds.

Best regards,
Victor
#3982
General Support / Re: agent 1.2.10 crash on AIX 6100-08
February 10, 2014, 04:03:29 PM
Thanks for nailing it, I'll include fix in next release.

Best regards,
Victor
#3983
General Support / Re: agent 1.2.10 crash on AIX 6100-08
February 08, 2014, 02:00:20 PM
Hi!

Can you please send me core file (to [email protected])?

Best regards,
Victor
#3984
General Support / Re: NetXMS-1.2.11 Crash on FreeBSD-9.2
February 05, 2014, 08:41:15 PM
Please try this version: https://www.dropbox.com/s/rft98tv0ahnekv6/netxms-1.2.12.tar.gz. Note that it will upgrade your database, you won't be able to go back to 1.2.11, so do backup first.

Best regards,
Victor
#3985
General Support / Re: Request timed out
February 05, 2014, 05:53:22 PM
What database you are using?

Best regards,
Victor
#3986
General Support / Re: NetXMS-1.2.11 Crash on FreeBSD-9.2
February 05, 2014, 05:52:47 PM
Yes, please try MySQL 5.5. Also, I'll prepare test update later today - I've found some potentially problematic places in our MySQL driver.

Best regards,
Victor
#3987
Feature Requests / Re: Dashboard container
February 04, 2014, 09:03:40 PM
Quote from: Marco Incalcaterra on February 04, 2014, 03:39:05 PM
BTW having a slide show feature can be another additional nice feature to be implemented :)

It is implemented for quite a while :) To create a slide show, create new dashboard, add element of type "Dashboard", and in properties of this element, add dashboards you want to display and delay between switches.

Best regards,
Victor
#3988
Feature Requests / Re: Dashboard container
February 04, 2014, 02:48:45 PM
Currently you can put one dashboard under another, so you can create empty dashboards instead of containers. I agree that it looks a bit strange though. I see two possible solutions: a) add special object type "dashboard container"; or b) automatically configure empty dashboard with child dashboards to work in "slide show" mode showing all dashboards below in a cycle.

Best regards,
Victor
#3989
General Support / Re: mobile client outside private lan
February 04, 2014, 02:46:11 PM
Hi!

If your company security policy prohibits traffic forwarding from outside directly to internal network, we have experimental client proxy, which can be placed in DMZ. You can try to build it from latest sources by giving --with-client-proxy  option to configure.

Best regards,
Victor
#3990
General Support / Re: NetXMS-1.2.11 Crash on FreeBSD-9.2
February 04, 2014, 02:43:49 PM
Hi!

There was another installation crashing in very similar way, on console connect, but on Windows. There problem was solved by replacing MySQL client library with latest version. Is there any updates for MySQL client?

Best regards,
Victor