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

#5911
General Support / Re: Data Collection delay
August 17, 2011, 08:06:51 AM
Hi!

Yes, you need to restart NetXMS Core.

For monitoring internal database writer queue, you should look at parameter with source "Internal" (not agent!) and name "Server.AverageDBWriterQueueSize". This parameter is only available for node object representing NetXMS server itself. DCI for this parameter should be created by default.

Best regards,
Victor
#5912
General Support / Re: db export
August 16, 2011, 09:17:05 AM
Hi!

What NetXMS version you are using?

Best regards,
Victor
#5913
General Support / Re: log parsing
August 16, 2011, 09:16:07 AM
1. No. You should create separate xml file for each parser.
2. You can pass as many parameters as you like. Attribute params contains number of parameters, so if you have 4 parameters for the event, you will have <event params="4">. Of course you have to have appropriate number of capturing groups in regular expression.

Best regards,
Victor
#5914
General Support / Re: Stopped Monitoring
August 15, 2011, 10:02:11 PM
Hi!

This could be caused by database writer's queue growing to extremely large size - see my post here: https://www.netxms.org/forum/general-support/data-collection-delay/msg5745/?topicseen#msg5745.

Best regards,
Victor
#5915
General Support / Re: Data Collection delay
August 15, 2011, 10:00:57 PM
Hi!

On "Last Values" page for node you see time stamp of last poll and last collected value, both cached in server's memory. When you are looking at DCI history (either as text or as graph), data shown taken from database. Inside NetXMS data collection going in two steps - at first step, data collected from agents and put into writer's queue. On second step, data is taken from writer's queue by separate background thread and written to database. Usually second step goes instantly after first one, and last value in database is last value collected, but some times there could be bottlenecks in writing data to database and some data may still wait in the writer's queue. In this case you will see that data in history is behind current time. You can check if this is the case by looking at database writer's queue size (either via DCI at monitoring server or via server's command line). If it is constantly large or even growing, then database writer is not able to write all data to database on time. In that case, you should first try to increase number of database writers (by increasing value of NumberOfDatabaseWriters configuration parameter) and, if this does not help, check your database engine for performance problems.

Best regards,
Victor
#5916
Announcements / NetXMS 1.0.12 released
August 15, 2011, 04:56:07 PM
Hi all!

NetXMS version 1.0.12 is out. It is a bugfix release for 1.0.x branch. Changes from previous release:

- nxpush now supports node identification by DNS name or IP address
- Fixed memory leak in netxmsd
- Fixed crash in netxmsd
- Other minor bugfixes
- Fixed issues: #299

Best regards,
Victor
#5917
General Support / Re: error loading database driver
August 15, 2011, 03:45:16 PM
Could you please run from command line in C:\NetXMS\bin

netxmsd.exe -D 9

or

nxdbmgr.exe check

You should get additional information about reason.

Best regards,
Victor
#5918
General Support / Re: error loading database driver
August 15, 2011, 01:51:09 PM
64-bit PostgreSQL driver available at https://www.netxms.org/download/patches/008/pgsql.ddr. It is build against PostgreSQL client 9.0.4-1, which should be installed separately.

Best regards,
Victor
#5919
Feature Requests / Re: Agent Deployment
August 15, 2011, 12:20:18 PM
Creating an MSI package requires a lot of work, and I'm not sure when we will have resources for this. Existing agent installer has command line options for unattended install, so it can be wrapped into MSI. It will not allow full functionality provided by Windows INstaller, but at least will work as workaround for centralized agent deployment.

Best regards,
Victor
#5920
Hi!

Currently you can only monitor URL availability and correctness of returned data, not response time.

Best regards,
Victor
#5921
General Support / Re: Monitoring Ports
August 15, 2011, 10:01:15 AM
Hi!

Yes, it's possible. You can check this topic: https://www.netxms.org/forum/general-support/check-telnet-is-listening-on-host/ for configuration example.

Best regards,
Victor
#5922
General Support / Re: log parsing
August 15, 2011, 09:58:44 AM
hi!

currently named parameters are not supported in the log parser. If you pass multiple parameters, they will be numbered in order they appear in regexp. For example, if you have the following rule:

<match>Error (.*) at (.*)</match>
<event params="2">200000</match>

You will have two parameters - number 1 and number 2, and it will be possible to use them in macro expansion as %1 and %2. For log record

Error 4 at test

with this rule you will have
%1 == "4"
%2 == "test"

Best regards,
Victor
#5923
Hi!

I assume that you are installing NetXMS on Windows, right? Then please check that username you have entered in configuration wizard in DBA field, has sufficient rights for database creation.

Best regards,
Victor
#5924
General Support / Re: error loading database driver
August 15, 2011, 09:53:07 AM
Hi!

Unfortunately PostgreSQL driver is missing in x64 installer - it's a build bug. You should wait for 1.1.4 release, or I can put driver binary on web site if you need it now.

Best regards,
Victor
#5925
General Support / Re: server crash - 1.0.11
August 11, 2011, 10:37:22 AM
Hi!

To clarify - I'm not 100% sure that it will fix your problem, but recently I do the fix for problem with similar symptoms. So it is very likely that it's same problem. Actually, if you have mdmp files from the crash, you can send one to [email protected] so I can double check.

Best regards,
Victor