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

#4051
From this log it seems that new node was not created. Can you remove all duplicate nodes except node with ID 100 and start server again? Also, please send me result of configuration poll for that node and output of ifconfig -a.

Best regards,
Victor
#4052
General Support / Re: ServiceCheck.HTTP
January 20, 2014, 11:08:17 AM
netsvc subagent need libcurl, and so it will only built if libcurl development package is installed. Try to install libcurl-devel package and run configure and make again.

Best regards,
Victor
#4053
Feature Requests / Re: Entire Network for Android
January 20, 2014, 11:05:37 AM
Hi!

Yes, it could be added. Nobody requests this before :)

Best regards,
Victor
#4054
Hi!

Most likely server has a problem detecting interfaces of server nodes. Can you please provide information about the OS server is running on, result of configuration poll for server node, and output of server starting at debug level 7 (up to message "Server initialization completed")?

Best regards,
Victor
#4055
General Support / Re: ServiceCheck.HTTP
January 20, 2014, 10:45:51 AM
Hi!

Seems that both Windows and Debian packages was built with netsvc subagent omitted. I'll build both versions a bit later and post a download link.

Best regards,
Victor
#4056
Feature Requests / Re: CISCO SMB Switch driver
January 17, 2014, 05:52:16 PM
So basically almost everything is working. CDP may be empty if nobody in the network sends CDP packets except that switch.

Yes, you can send dump by mail.

Best regards,
Victor
#4057
Feature Requests / Re: CISCO SMB Switch driver
January 17, 2014, 04:59:06 PM
Hi!

Most of the functionality should work out of the box. Driver is needed to provide VLAN information and picture of physical ports. Ideally would be to get output of full SNMP walk (starting .1).

Best regards,
Victor
#4058
А под каким пользователем работает сервис NetXMS Core? Пользователь должен входить в группу Administrators для работы с raw сокетами.
#4059
General Support / Re: Event Log parsing
January 17, 2014, 02:34:17 PM
Hi!

You should replace * with parser's name. By default parser name is file name (given in <file>), but you can override it with name attribute, like this:

<parser name="AppLog">
  <file>*Application</file>
  <rules>
    <rule>
      <severity>6</severity>
      <match>(SQL Server Scheduled Job)*(Message: The job failed)*</match>
      <event params="1">100025</event>
    </rule>
  </rules>
</parser>

and then use LogWatch.Parser.MatchedRecords(AppLog)

Best regards,
Victor
#4060
Announcements / Re: NetXMS 1.2.11 released
January 16, 2014, 11:51:47 AM
Hi!

There are new action type - "XMPP message". You can use it in a same way as SMS or email actions to send XMPP messages from event processing policy. It is also possible to execute debug console commands from XMPP-capable messenger (to do this you should map XMPP ID to user account by setting XMPP ID field in user properties, and give user "Execute commands via XMPP" right.

Best regards,
Victor
#4061
Announcements / NetXMS 1.2.11 released
January 15, 2014, 04:10:56 PM
Hi all!

NetXMS version 1.2.11 is out. Changes since previous release:

- Thresholds can be defined as NXSL scripts
- XMPP messaging support
- "Do not save collected data to database" option for data collection items
- Added "follow" option to "download file" object tools
- New attribute "driver" for NXSL class "Node"
- Management console:
   - Stacked line charts implemented
   - Authentication by certificates supported by Java console
   - Russian translation improved
- Fixed issues: #16, #76, #385, #464, #469, #472

Best regards,
Victor
#4062
Общие вопросы / Re: Cannot remove template
January 15, 2014, 04:09:58 PM
Должно быть исправлено в версии 1.2.11.
#4063
Hi!

Try to set debug level on server to 6 and watch for SMS driver messages when it sends SMS. Also, check what messages you got from SMS driver in server log on server startup.

Best regards,
Victor
#4064
General Support / Re: Event Log parsing
January 15, 2014, 03:26:26 PM
Hi!

It probably should be something like this:

<match>(SQL Server Scheduled Job.*Message: The job failed.*)</match>

if you want to capture full text but match only messages with certain words in it.

Best regards,
Victor
#4065
Announcements / Re: NetXMS 1.2.10 released
January 14, 2014, 04:03:27 PM
It depends on your system. Most likely core generation is turned off, you can check it with ulimit command. If you experience crash often, you can just run netxmsd from within debugger, like this:

$ gdb /usr/local/bin/netxmsd
...
(gdb) run -D3

... it runs until crash ...

(gdb) bt

Best regards,
Victor