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 - Alex Kirhenshtein

#301
General Support / Re: More than 20000 idata_* tables
October 25, 2019, 08:58:54 PM
Hello.

Number of idata tables should be roughly the same as number of nodes in the system.

This query should return list of tables without corresponding record in nodes or clusters:
SELECT s.id,s.name FROM (SELECT substr(t.table_name,7) AS id, t.table_name AS name FROM information_schema.tables t WHERE t.table_schema='mtest' AND t.table_name LIKE 'idata_%') AS s WHERE s.id NOT IN (SELECT id FROM nodes UNION SELECT id FROM clusters);
#302
I assume you are talking about SYS_IF_DOWN, because SYS_NODE_DOWN is unrelated to expected interface status.

I see two ways:
1) Create DCIs
2) Change interfaces back to expected UP/DOWN and filter out SYS_IF_DOWN in EPP (with "stop processing" action). Most likely you'll want to change status propagation on interfaces to Normal, this way they will not affect status of the node itself (expect up/downlinks, probably). All these changes can be scripted (in Hook::ConfigurationPoll).
#303
General Support / Re: interfaces in objects treeview
October 07, 2019, 11:39:49 AM
You can also double click on the node - this will show interfaces for this particular node even if they are hidden globally

Quote from: MarcusH on October 07, 2019, 08:54:23 AM
Thanks for clearing that one up, if it is by design i'll try to stick with it and i kind of got a liking for changing interfaces via object details now :)
#304
Announcements / Re: NetXMS 3.0 released
September 12, 2019, 01:13:21 PM
Plugin in grafana repo will be updated shortly.
In a meantime you can update it directly from git.

Quote from: vir_db on September 12, 2019, 12:34:03 PM
Thanks Viktor,

just another issue: seems that the upgrade brok the grafana plugin. I can get alerts, but I cannot collect any graphs (for ex. CPU Usage)
#305
Hello.

Today we incidentally pushed pre-release build from 3.0 branch to a stable repository for Ubuntu Xenial and Bionic (amd64 only) and this version was available for couple of hours. We are really sorry for this mistake.

Repository is rolled back.

If you upgraded your system, you now have two options - continue to use v3 (which is not yet released as stable, but quite a lot of our customers use it in production environment already) or revert to pre-upgrade backup.

If you'll decide to use v3, management console is available here:
Desktop - https://cloud.netxms.org/index.php/s/C3YvqKOwCgp3Dvz
Web - https://cloud.netxms.org/index.php/s/AJIGoc8w028EBBU
#306
Looks like internal lock. I recommend you to upgrade to 2.2.16. If issue remain, please take snapshot of the process threads (we bundle script capture_netxmsd_threads.sh for that).
#307
Just pushed into repo, please check
#308
Thank you for kind words and for using our product :)
#309
I'll check than, thank for report
#310
Since 2.2.13 we bundle JRE with app. Please try to download dmg again, it was updated a while ago (I accidentally changed signature of the JRE).
If it still failing, open "/Applications/NetXMS\ Console.app/Contents/MacOS/nxmc.ini" with any editor and remove these two lines:

-vm
jre/lib/jli/libjli.dylib
#311
sources.list looks incomplete - I can't see packages.netxms.org there.
Check that correct repository is used (there are references in sources.list to artful, but system is already upgraded to bionic)

In you case source should be

deb http://packages.netxms.org/ubuntu bionic main
#312
Hello.

Please show output of "lsb_release -a" and content of /etc/apt/sources.list and /etc/apt/sources.list.d/*
#313
I use maven for that (see attached pom.xml).

buildUuid is used to distinguish between different reports, so if you want to see old runs of the report after changing report definition - uuid should remain the same.

Directory structure should be like this:

❯ tree
.
├── pom.xml
├── src
│   └── main
│       └── resources
│           ├── i18n.properties
│           └── main.jrxml


Entry point for the report should be main.jrxml, you can use $P{SUBREPORT_DIR} to reference images or subreprots.
#314
Create feature request in the issue tracker and we'll add it
#315
It's not possible to change comment from nxsl script.
As a workaround (depends on what you are trying to achieve) - you can modify custom attribute from script, then create scripted DCI (with retention time="do not save to DB") which will get value of the custom attribute - and select option to show this DCI on the overview page.