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

#436
General Support / Re: SSH DCI Collection
December 14, 2021, 09:53:49 AM
Hi!

Could you please share script you are using? I did some tests and otherwise SSH to Mikrotiks seems to be working.

Best regards,
Victor
#437
Цвет иконки зависит от статуса ноды, можно поменять правила подсчета статуса, чтобы один интерфейс например не загонял ноду в critical.
#438
Currently named capture groups are not supported. Looks like a good idea though, I'll check if we could do that.

Best regards,
Victor
#439
General Support / Re: No Peer in Object Details
November 30, 2021, 05:28:49 PM
I think I've found logical flaw in topology building code. Will fix it today or tomorrow, next patch release likely will work correctly.

Best regards,
Victor
#440
General Support / Re: Database schema upgrade, sqlite
November 30, 2021, 05:06:45 PM
Next it tries to open second connection to database, which I suppose is not working for SQLite. Do you have any network maps configured?

If you DO NOT have any network maps, you can do this step manually by executing the following queries (it will delete any configured links on network maps):


DROP TABLE network_map_links;
CREATE TABLE network_map_links
(
  map_id integer not null,
  link_id integer not null,
  element1 integer not null,
  element2 integer not null,
  link_type integer not null,
  link_name varchar(255) null,
  connector_name1 varchar(255) null,
  connector_name2 varchar(255) null,
  element_data varchar null,
  flags integer not null,
  color_source integer not null,
  color integer not null,
  color_provider varchar(255) null,
  PRIMARY KEY(map_id,link_id)
);
CREATE INDEX idx_network_map_links_map_id ON network_map_links(map_id);
UPDATE metadata SET var_value='9' WHERE var_name='SchemaVersionMinor';


And then run nxdbmgr upgrade again - it should continue from next step.

Best regards,
Victor
#441
General Support / Re: Node / Interface interaction
November 30, 2021, 05:01:18 PM
The problem here is that $object for SYS_IF_DOWN points to node object, not interface object. Correct script will look like this:


iface = $node->getInterface($event->parameters[5]);
return iface != null and iface->peerNode == null;


Best regards,
Victor
#442
Announcements / NetXMS Jira connector 3.9
November 29, 2021, 04:10:29 PM
Hi all!

We just published NetXMS Jira connector version 3.9 which should be compatible with Jira 8. It also supports passwords obfuscated with nxencpasswd.

Best regards,
Victor
#443
General Support / Re: Database schema upgrade, sqlite
November 26, 2021, 06:27:03 PM
Try to run upgrade with option -t - it will trace SQL queries so we will see what query cause this.

Best regards,
Victor
#444
Hi,

are you sure agent can connect to the server on port 4703? Also, did you set up server certificate? Without server certificate TLS session cannot be established.

Best regards,
Victor

#445
General Support / Re: Node / Interface interaction
November 26, 2021, 06:23:45 PM
If you are not interested in port down events on switches you can block them in event processing policy. You can also block only those for switch ports where peer node is known (by using filter script that will check interface object for peer information) - that way you will have alarms for interfaces where something not monitored by NetXMS is connected but not for those where known nodes are connected.

Best regards,
Victor
#446
General Support / Re: No Peer in Object Details
November 26, 2021, 05:59:48 PM
Hi,

could you please provide server log with debug level 7 during topology poll for that node?
Also, when does it start? Was it after server upgrade or after some configuration changes?

Best regards,
Victor
#447
General / Re: NetXMS Data Dictionary
November 22, 2021, 05:18:12 PM
Hi!

We are updating data dictionary periodically, but it not always follow schema changes immediately. I'll ask dev team to update it for current 3.9 version.

Best regards,
Victor
#448
Announcements / Re: NetXMS 3.9 version 3.9.361
November 22, 2021, 05:12:23 PM
Should be in repo for some time already. There was error in publishing process.

Best regards,
Victor
#449
General Support / Re: Graph template split by interface?
November 22, 2021, 05:02:34 PM
No, it is not possible. We will discuss internally if and how we can implement such functionality.

Best regards,
Victor
#450
General Support / Re: Graph template split by interface?
November 17, 2021, 09:35:34 AM
Are those graphs on "Performance" tab or you open them somehow?

Best regards,
Victor