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

#5446
Hi!

Is netxms-server-mysql package installed? If yes, what is output of


ldd /usr/local/lib/libnxddr_mysql.so


?

Also, we will build Debian packages for version 1.2.0 in few days.

Best regards,
Victor
#5447
Announcements / NetXMS 1.2.0 released
April 19, 2012, 01:39:46 AM
Hello all!

NetXMS version 1.2.0 is released! Changes since version 1.1.10:

- Number of polls required for status change can be set individually for each interface
- New NXSL functions and object properties for accessing topology information
- New NXSL function FindObject
- New NXSL functions for object creation and binding
- Added option to set native agent port on node creation
- Added support for INFORM messages in SNMP trap receiver
- Implemented automatic creation of ChildStatus DCI when Network Service object created for Node
- Implemented concept of "expected" interface state
- Added option to use DNS names instead of IP addresses as primary host name for discovered nodes
- Added possibility to add parameters and/or specify entry point in scripts called via %[] macro
- Implemented alarm comments
- Initial support for multi-valued (tabular) DCI
- Java console:
   - Added alarm history log viewer
   - Time interval for line charts on dashboards made configurable
   - Dashboard configuration improved; all dashboard elements now can be configured from GUI
   - New tab for container objectss where threshold violations for underlying nodes are shown
   - Multiple dashboards can be displayed in a loop (like slide show)
   - Fixed problems with line chart configuration saving in perspective
   - Resolved issue: Reports not working on Windows
   - Resolved issue: Cannot delete non-existent object from event processing policy
   - Resolved issue: No confirmation shown for object tools with "confirm before execution" flag
   - Resolved issue: EPP editor do not support 'Negate cell'
- Web UI:
   - All functionality from Java console implemented
   - Windows installer for web interface
   - Resolved issue: NetXMS session not closed when web session is expired
- Resolved issue: Internal libexpat failed to compile on debian5
- Resolved issue: Build failed on Solaris 11
- Resolved issue: Incorrect interface status reported by agent on FreeBSD
- Resolved issue: Database upgrade problems if SQLite used as backend database

Best regards,
Victor
#5448
Feature Requests / Re: Network Discovery
April 18, 2012, 10:33:51 PM
Hi!

Good idea. I have added it as new feature for release 1.2.2.

Best regards,
Victor
#5449
General Support / Re: network discovery
April 18, 2012, 10:31:28 PM
Hi!

Active discovery means that system will ping each address in given subnet(s) and add each which responds (if node passes discovery filters).

Best regards,
Victor
#5450
Looks like bug in agent to me. Can you please post here or send to [email protected] your log file?

Best regards,
Victor
#5451
Hi!

We are in process of building version 1.2.0. It will be available later today.

Best regards,
Victor
#5452
Hi!

Currently it's not possible. I'll add this as feature request for 1.2.1 version.

Best regards,
Victor
#5453
General Support / Re: DISK. Parameters Missing
April 16, 2012, 11:01:47 PM
Hi!

In 1.1.x version, all Disk.* parameters was renamed to FileSystem.* parameters. Agent still understand old names, so you can use old templates for example, but they are not shown in the list of supported parameters anymore. If adding new DCI, just use appropriate FileSystem.* parameters.

Best regards,
Victor
#5454
General / Re: About the Event
April 16, 2012, 12:26:12 AM
Hi!

Server sends notification to client when new event created. Client must be subscribed to event notifications. Simple code for receive event notifications can looks like this:



// subscribe
session.subscribe(CHANNEL_EVENTS);

// add notification handler
session.addListener(new SessionListener() {
@Override
public void notificationHandler(final SessionNotification n)
{
if (n.getCode() == NXCNotification.NEW_EVENTLOG_RECORD)
{
Event e = (Event)n.getObject();
// do what you need with event object
}
}
});


Remember that notification handler called in background communication thread and should not perform any long-running tasks.

Best regards,
Victor
#5455
General / Re: Management Console GTK Source
April 16, 2012, 12:18:21 AM
Hi!

There is an error in URL. Correct URL is https://svn.netxms.org/public/netxms/trunk/src/java/netxms-eclipse.

Best regards,
Victor
#5456
General Support / Re: Import multiple nodes
April 13, 2012, 11:58:56 AM
Hi!

Not with standard tools. However, it's relatively easy to write a Java app which will add multiple nodes using Java API.

Best regards,
Victor
#5457
В текущей версии наверное никак. В следующих релизах будут NXSL функции для работы с SNMP, тогда можно будет написать скрипт, который сможет делать такие опросы. Ну или уже сейчас можно написать внешний скрипт, который будет делать что-то подобное.
#5458
Общие вопросы / Re: Драйвера.
April 13, 2012, 11:53:13 AM
в версии 1.2.0 или 1.2.1, смотря как буду успевать, у интерфейсов будет новый аттрибут "expected interface state". Его можно будет выставить в UP, DOWN, или IGNORE. UP - значит интерфейс должен быть поднят, и если нет, то объект интерфейса будет переведен в статус CRITICAL (как это проишодит сейчас). DOWN - все наоборот - интерфейс должен быть в нерабочем состоянии, если он вдруг активен - объект интерфейса будет переведен в статус CRITICAL. IGNORE - состояние интерфейса нас не интересует, и объект интерфейса всегда будет в статусе NORMAL.
#5459
Da, v 1.1.10 edinstvennij sposob smeni IP - eto pomenjat' primary host name v properties.

P.S. Ja pomnju pro predyduschuju problemu s primary host name.

#5460
Try to enable tracing on parser level by replacing <parser> with <parser trace="9">.

Best regards,
Victor