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

#1576
Общие вопросы / Re: 2.2.6 и Juniper
July 18, 2018, 09:21:22 PM
На самом деле добавилось:

2018.07.18 17:33:47.719 *D* Node::getInterfaceList(node=LAN1 [302091]): cannot create SNMP transport

И это очень странно. Сервер напрямую общается с устройством или через прокси?
#1577
Feature Requests / Re: node discovery poll
July 18, 2018, 09:18:56 PM
Actually, I made a mistake here. There are hook for topology poll (it's not created by default for some reason, should be called Hook::TopologyPoll), but not for discovery poll. I'll add discovery poll hook in next release.

Best regards,
Victor

#1578
Общие вопросы / Re: 2.2.6 и Juniper
July 18, 2018, 07:19:36 PM
Только что выложили 2.2.7. Для отладки как и перед этим включите уровень 6 перед началом configuration poll.
#1579
Announcements / NetXMS 2.2.7 released
July 18, 2018, 07:17:49 PM
Hi all!

NetXMS version 2.2.7 is out. Changes since previous release:

- "Convert to hexadecimal string" option for SNMP table columns
- Improved configuration wizard in Windows server installer
- New command line option /CONFIGENTRY in Windows agent installer
- New dashboard element "Object Details" (based on object queries)
- TCP proxy functionality
- Improved "Alarm Details" view in management console
- Added support for agent actions defined in external subagents
- TCP listener can be disabled in agent configuration file
- Push connector can be disabled in agent configuration file
- Virtual nodes detection via agent
- Basic BIOS and hardware platform information provided by Windows agent
- Fixed issues:
        NX-993 (Windows installer should honor current state of services during upgrade)
        NX-1438 (Increase debug level for thread pool messages)
        NX-1453 (Windows installer option to disable database upgrade)
        NX-1455 (Zone UIN in NXSL function CreateNode)
        NX-1456 (DCI values aggregated on cluster may be incorrect on first few polls after server startup)
        NX-1460 (Configure does not detect pthread_setname_np on macOS)
        NX-1464 (Agent connection via proxy is not working for IPv6 destinations)
        NX-1466 (Line length in agent's external table script limited to 255 characters)
        NX-1467 (Agent cannot process requests for parameters longer than 255 characters)

Best regards,
Victor
#1580
Feature Requests / Re: node discovery poll
July 18, 2018, 07:09:04 PM
This is simple hook script that sets attribute "lastDiscoveryPoll" to current time for all node's subnets:


for(o : GetObjectParents($node))
{
   if (o->type == 1)
   {
      SetCustomAttribute(o, "lastDiscoveryPoll", time());
   }
}


Best regards,
Victor
#1581
Feature Requests / Re: node discovery poll
July 18, 2018, 03:19:56 PM
I'm a bit lost - are we talking about hook script or about manually starting discovery poll? Hook script already exist - you can use it to update attributes on all subnets where current node belongs.

Best regards,
Victor
#1582
General Support / Re: IMPORTANT - Upgrade
July 18, 2018, 03:16:10 PM
Hi,

what is the output if you run status poll and configuration poll from the GUI?

Best regards,
Victor
#1583
Hi,

could you please provide statistics for your server(s)?
- CPU, RAM, disk I/O usage for server machine
- Output of the following commands on debug console:
  - show stats
  - show queues
  - show threads
  - show watchdog
  - show pollers
  - show msgwq
  - show dbcp
  - show dbstats
  - show flags

Best regards,
Victor
#1584
Hi,

status is not propagated from maps to map groups. I've created an issue for that (https://track.radensolutions.com/issue/NX-1468).
Best regards,
Victor
#1585
General Support / Re: Max Parameter Length?
July 18, 2018, 03:05:46 PM
Hi,

It is cut to 255 characters. Some time ago it was the limit on parameter name in DCI definition. When DCI name length limit was increased, limit on agent side was forgotten. I just fix it.

Best regards,
Victor
#1586
General Support / Re: ExternalTable limitations..
July 18, 2018, 02:45:12 PM
Hi,

just fixed it. For historical reasons (part of the code was written when there were no external tables, only external parameters) line length was limited to 255 characters when read from external script. In version 2.2.7 it is extended to 32K.

Best regards,
Victor
#1587
General Support / Re: netxms on mssql 2014
July 18, 2018, 02:30:26 PM
Hi,

"connection error" most likely means that server was not started. Check that "NetXMS COre" service is started. If not, set logging to file and set debug level to 9, then try to start it again, and if it fails, post there log from service startup.

Best regards,
Victor
#1588
Общие вопросы / Re: 2.2.6 и Juniper
July 18, 2018, 02:28:50 PM
Я добавил в 2.2.7 дополнительный дебаг, посмотрим после обновления. Пока совершенно непонятно, что ему не нравится.
#1589
Добавил колонку VLAN в списке интерфейсов.
#1590
This is really weird - I cannot reproduce it on my system. 2.2.6 builds without issues. Your system definitely has more packages installed, but libraries used for tests during configuration phase are the same.

I'll try to add additional checks to avoid false detection of those two functions. As a workaround you can try to edit config.h after configure run and comment out lines starting with
#define HAVE_STRLCPY
#define HAVE_STRLCAT

and then run make.

Best regards,
Victor