News:

We really need your input in this questionnaire

Main Menu
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 - Dani@M3T

#301
Announcements / Re: NetXMS 1.2.15 released
July 29, 2014, 05:45:40 PM
Is there somewhere a documentation of the new file management subagent (filemgr.nsm)?
I didn't found anything in the wiki.
#302
General Support / Re: ConditionStatus()
July 28, 2014, 09:28:29 PM
I can confirm it's fixed in V1.2.15.
#303
This bug ist still existing in V1.2.15. Our Peer Node information (LLDP) are still not updated.
#304
General Support / Re: Syslog from source <unknown>
July 28, 2014, 07:28:41 PM
I just tested in V1.2.15, works perfect, thank you.
#305
Announcements / Re: NetXMS 1.2.15 released
July 28, 2014, 07:02:10 PM
I just tested the fixed version. DB update is working now. Thanks for the fast fix!!
#306
to point 1 (configuration of VPN connectors in JAVA console):
Now there is a possibility to 'create' VPN connectors, but you can only specify a name of the connector and that's it. It's still not possible to configure the connector (peer node). In properties are only 'access control', 'comments', 'custom attributes' and 'status calculation'. So I still need the old console application.

to point 2 (event correlation):
The new parameter for SYS_NODE_UP is working as expected.
#307
Announcements / Re: NetXMS 1.2.15 released
July 28, 2014, 02:38:36 PM
Hi Alex

Ok, thanks. So I wait for your patched version.
#308
Announcements / Re: NetXMS 1.2.15 released
July 28, 2014, 11:29:49 AM
Thanks for the new release!
But I get this db upgrade error when I upgrade from V1.2.14 to V1.2.15 on linux 64bit with PostgreSQL:

Upgrading database...
Upgrading from version 318 to 319
Upgrading from version 319 to 320
Upgrading from version 320 to 321
Upgrading from version 321 to 322
Upgrading from version 322 to 323
Upgrading from version 323 to 324
NOTICE:  CREATE TABLE / UNIQUE will create implicit index "tdata_257_record_id_key" for table "tdata_257"
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "tdata_records_257_pkey" for table "tdata_records_257"
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "tdata_rows_257_pkey" for table "tdata_rows_257"
SQL query failed (42830 ERROR:  there is no unique constraint matching given keys for referenced table "tdata_records_257"):
CREATE TABLE tdata_rows_257 (row_id bigint not null,column_id integer not null,value varchar(255) null,PRIMARY KEY(row_id,column_id),FOREIGN KEY (row_id) REFERENCES tdata_records_257(row_id) ON DELETE C                                     ASCADE)
SQL query failed (25P02 ERROR:  current transaction is aborted, commands ignored until end of transaction block):
SELECT id FROM clusters
SQL query failed (25P02 ERROR:  current transaction is aborted, commands ignored until end of transaction block):
SELECT id FROM mobile_devices
SQL query failed (25P02 ERROR:  current transaction is aborted, commands ignored until end of transaction block):
DELETE FROM metadata WHERE var_name='ValidTDataIndex'
Rolling back last stage due to upgrade errors...
Database upgrade failed

#309
hostmib is supported by Windows SNMP server (OID: .1.3.6.1.2.1.25). You can have a look there,maybe you found something usefull.
Try also .1.3.6.1.4.1.77 (but I don't have installed the mib)
In .1.3.6.1.2.1.2 you find network related things.

Try also DCI with Origin 'Windows Performance Counters', but no, this needs the agent  :(


#310
Hi

I just tested on a Win2012R2 node. The same here. I don't think Windows supports .1.3.6.1.4.1.2021 (UCD-SNMP-MIB). Maybe installing the NetXMS agent on the Windows nodes would be the better solution for you.
#311
Thanks!! I saw it in your project tool.
#312
In the script library editor of the java console I miss Copy/Paste (neither CTRL-C nor context menu)
#313
Thank you Victor. So I replaced "%n" by "$node->name".
But my idea must have another problem. I tried to avoid alarms from Service.Check-DCIs (Webserver, DNS and other network services checked by subagnets and external commands from the NetXMS server as proxy node) when the correspondent node is down. But maybe the 'node down' event (which updates the situation) is after the other events. I still get all alarms  :(
When the whole node is down I want to have all events but no alarms other then the node-down-alarm.
#314
I inserted this filtering script in an existing event processing policy and saved the policies.
/* no alarm when node is down */
sub main()
{
   s = FindSituation("NodeDown", %n);
   if (s != NULL)
   {
   if (s->status == 1)
   return false; //don't match rule
   }
   return true; //match rule
}


Then the NetXMS server (netxmsd) crashed.
Server is V1.2.14 on Linux x64. I send the debuglog (LogLevel=9) to [email protected]

Update:
When I write the filtering script without "sub main () {" and "}" the server does not crash. Maybe a bug? Or my fault?
#315
Victor
Could it be possible to get this feature in V1.2.15?