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

#3211
Общие вопросы / Re: ICMP.PACKET_LOSS
February 23, 2015, 10:41:35 PM
Тут вопрос от чего считать loss - сейчас PING субагент дает % потерь за минуту, и они могут иметь какой-то смысл поскольку пинг делается несколько раз в минуту. Как ето сделать только на серверной стороне - пока у меня четкого представления нет. Слать с сервера пинги с небольшим интервалом на все настроенные ноды на случай если понадобится - вариант на мой взгляд плохой. Один из вариантов как это сделать на DCI - собирать response time в одном DCI, конвертировать 10000 в 100 а все остальное в 0, и сделать скрипт DCI который будет доставать среднее для DCI #1 - это и будет packet loss за последние N опросов.
#3212
Possibly problem caused by the fact that even if proxy is used for communications, primary host name resolution happens on server, so if it still resolves to old address on server side then server will continue using old IP.

Best regards,
Victor
#3213
Looks like result of database corruption. If I remember correctly lost_interface_#### objects was created in some older versions after errors. Current version should not create them. As they likely had unreachable IP addresses, status poll just take longer due to timeouts.

Best regards,
Victor
#3214
General Support / Re: Netxms OracleDB errors
February 23, 2015, 09:58:42 PM
Hi,

seems that metadata is incorrect for some reason. Try to stop server and execute the following query:


UPDATE metadata SET var_value='CREATE TABLE tdata_records_%d (record_id number(20) not null,row_id number(20) not null,instance varchar(255) null,PRIMARY KEY(row_id),FOREIGN KEY (record_id) REFERENCES tdata_%d(record_id) ON DELETE CASCADE)' WHERE var_name='TDataTableCreationCommand_1';


then drop table(s) having ORA-00001 errors and run nxdbmgr check again (it should re-create all missing tables correctly).

Best regards,
Victor
#3215
General Support / Re: Invalid network mask - v 1.2.17
February 23, 2015, 09:10:55 PM
Hi,

most likely you already have (presumably incorrect) subnet object for /24. You can check what's inside and delete subnet object (make sure that nodes inside it bound to at least one container, then they will not be deleted with the subnet), then do configuration poll on a node - it should create correct /26 subnet object.
Also, in 2.0 we do some fixes to subnet creation and binding logic, it will help in such situations.

Best regards,
Victor
#3216
Про world map - согласен, и сделать это по идее не сложно. Добавил в трекер (https://dev.raden.solutions/issues/777).

Про базы не совсем понял - какие именно базы и как их объединять?
#3217
Сейчас можно настроить что-то похожее. Для любой ноды можно создать internal DCI PingTime. Соответственно в Last Values будет время отклика на ping во время последнего status poll. Затем можно настроить DCI Summary Table по этому параметру и видеть в виде таблицы времена отклика для узлов.
#3218
General / Re: WebUI can not generate the war file
February 23, 2015, 08:18:21 PM
Do you have WAR products feature (org.eclipse.libra.warproducts.feature.feature.group) installed? If yes, what version? I use 0.3.1.

Best regards,
Victor
#3219
Hi,

O_RDONLY means that agent wants read only access to the file. Sharing mode is controlled by third argument, which is set to _SH_DENYNO, meaning that agent allows both read and write shared access to the file. However, the problem may be with the application writing to the file - if application requests exclusive access (i.e. not permitting read access by others), it will not be able to open file for writing. We cannot do anything about it. If you can control the application in question you can change it or request application developers to allow shared read access to the log.

Best regards,
Victor
#3220
Feature Requests / Re: Plan for IPV6 in NetXMS?
February 16, 2015, 10:06:11 AM
Hi,

we are gradually implementing IPv6 support under the hood. Management console and agents can communicate over IPv6 already, and there are internal changes to support both IPv4 and IPv6 addresses on objects. Final 2.0 release will fully support IPv6, and you will see IPv6 subnets in M3 or M4.

Best regards,
Victor
#3221
General Support / Re: Graph on Email Alerts
February 16, 2015, 10:03:13 AM
Hi,

no, currently it's not possible. Implementing such feature within NetXMS itself can be quite complicated because we will need to implement in-memory graph creation on server side (currently all visualization done on client side).

Best regards,
Victor
#3222
Poll count 300 means 5 hours to change status - is it what you intend?

Best regards,
Victor
#3223
Announcements / Re: NetXMS 2.0-M2 released
February 16, 2015, 10:00:33 AM
I've added session agent termination to  agent installer. The only problem is that session agent will be unavailable until restart because installer will not be able to start it again in another user session.

Best regards,
Victor
#3224
General Support / Re: Not discovering all nodes
February 13, 2015, 05:39:20 PM
If those nodes respond to ICMP ping, you can try to configure active discovery for problematic networks. Also, NetXMS will not add non-responding nodes - are they accessible from NetXMS server?

Best regards,
Victor
#3225
General Support / Re: Netxms OracleDB errors
February 13, 2015, 05:37:22 PM
Hi,

please send me output of query

SELECT * FROM metadata

from your database. For now, try to answer y only to invalid object fix - that way it will fix at least this problem.

Best regards,
Victor