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

#4906
General Support / Re: DCI for SNMP tables
December 19, 2012, 01:00:48 PM
Hi!

Yes, support for SNMP tables is not finished yet. I have created a new issue in bugtracker so you can follow a progress: https://www.radensolutions.com/chiliproject/issues/198.

Best regards,
Victor
#4907
Normally, when alarm's repeat count increases (because new event was matched to existing alarm by alarm's key), alarm's state reset to "outstanding". To prevent this, you can use "sticky acknowledge". In that state, alarm will remain acknowledged event after new matching events.
This can be useful when you know that there will be new matching events, but it will not change the situation. For example, if you have network device which will send new SNMP trap every minute until problem solved, sticky acknowledge will help to eliminate unnecessary outstanding alarms.

Best regards,
Victor
#4908
General / Re: NetXMS - SQL Performance
December 18, 2012, 07:32:44 PM
Hi!

Thanks for pointing me on this! The housekeeper code is so wring here... One possible solution could be adding an index on event_log.event_source and replacing

SELECT event_source FROM event_log WHERE event_source=?

with

SELECT COUNT(event_source) FROM event_log WHERE event_source=?

and probably with

IF EXISTS (SELECT event_source FROM event_log WHERE event_source=50220) SELECT 1 ELSE SELECT 0

for MS SQL.

Another option is to remove this check altogether, as it is needed only for one purpose - prevent creation of new object with ID which was used before and still referenced in event log. This can happen, however, only if object(s) with highest IDs deleted, and server restarted before creating new object. It's probably better to just keep track of highest used ID elsewhere.

Best regards,
Victor
#4909
Collected DCI data stored in multiple tables - one table per node. These tables are called idata_nodeid, for example, idata_100.

You can also use Java API to access collected data from external application.

Best regards,
Victor

#4910
General Support / Re: Status NORMAL on closed port
December 14, 2012, 06:26:27 PM
Hi!

You have to manually add network services you want to monitor. Right-click on node object, and select "create network service".

What kind of problem you have with transformation script?

Best regards,
Victor
#4911
General / Re: процесс разработки
December 14, 2012, 06:25:11 PM
Нет, не используем. А зачем он она нам может быть нужна (если я правильно понял, что вопрос о системах вроде MS BizTalk или FLink)?
#4912
Hi!

You can use transformation script to calculate time difference with NetXMS server. Add parameter System.CurrentTime, and use the following transformation script:


return time() - $1;


You'll got difference in seconds between NetXMS server's local time and remote system time.

Best regards,
Victor
#4913
General Support / Re: Add many nodes/services at once
December 14, 2012, 10:06:24 AM
Hi!

There are no bulk load in the console. With API it is possible (Java or C API available).

Best regards,
Victor
#4914
Yes, it's the same.

Best regards,
Victor
#4915
Hi!

You have to load portcheck subagent on agent running on NetXMS server (it could be any other node as well if you need to monitor your service from another point in the network). Just add


SubAgent = portcheck.nsm


to your nxagentd.conf and restart agent.

To do simple connectivity check, create network service object of type "Custom". For testing this type of service, NetXMS just establish TCP connection.

Best regards,
Victor
#4916
Hi!

If I understand correctly you need some kind of automated tool to export dashboard content periodically. Currently it is not possible. Theoretically this can be done, especially if limit set of exportable elements to only charts and labels. I'll think how hard it would be.

Best regards,
Victor
#4917
Hi!

We don't have and don't plan to have commercial edition of NetXMS. What we have is a commercial add-ons for the following:

1. ATM hardware monitoring;
2. ATM video surveillance;
3. Card management systems monitoring.

These add-ons have licensing mechanism inside. Currently we don't have plans to expand this list. Potential user base for these add-ons are limited (banks and few other financial institutions), and it should not have impact on NetXMS community, but we have a chance to earn some money to be able to continue core product development.

Best regards,
Victor
#4918
Yes, it is available in 1.2.4.

Best regards,
Victor
#4919
So far I plan to release it around Christmas, so in 1-2 weeks it should be available.

Best regards,
Victor
#4920
Вообще для pie и bar графиков идея очень хорошая (я сначала как-то именно line графики себе представил, и не понял, как это) - попробую сегодня сделать, посмотрю что получится. По идее делается очень легко.