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 - gkaudewitz

#46
General Support / Re: Request user input from nxsl
September 01, 2015, 08:56:04 AM
Thank's for the correction concerning the function FindObject. I tried the function FindNodeObject too several times.
But the problem persists.

NetXMS Scripting Host  Version 2.0-RC1
Copyright (c) 2005-2015 Victor Kirhenshtein

Error 11 in line 4: Function not found


Best regards

Georg
#47
General Support / Re: Request user input from nxsl
August 31, 2015, 11:40:58 PM
It's confusing....

runnig the following script with /data/netxms/bin/nxscript /data/scripts/first.nxsl 124 ddd dddd I always get the same error:

NetXMS Scripting Host  Version 2.0-RC1
Copyright (c) 2005-2015 Victor Kirhenshtein

Error 11 in line 4: Function not found


An object with ID 124 exists in my testdatabase. There is no differencs wether I run the script from objecttools or from Linux commandline.

sub main()
{

obj = FindObject(null,$1);
if (obj == null)
   { println "Object not found Id:" . $1;
     return;
   };
SetCustomAttribute(obj,"Bau",$2);
SetCustomAttribute(obj,"Etage",$3);
SetCustomAttribute(obj,"Raum",$4);

//println "Hello World " . $1 . " " . $2 . " " . $3 . " " . $4 . " " . $5;
}


Is it necessary to set some path or lib-variables?

I'm using version 2.0-RC1(8035)

#48
General Support / Re: Request user input from nxsl
August 31, 2015, 10:50:22 AM
Sorry I just read that inputfields for object Tools have been implemented with 2.0-RC1....
#49
General Support / Re: Request user input from nxsl
August 31, 2015, 10:41:08 AM
Thaks for fast answering my questions to all of you.

I tried all other combinations of brackets and % but not this one...

One more question now: I've tested a script on an other system running on 2.0-RC1 and got a window requesting values for the parmeters. My production system still is running on 1.1.17 there I get no window requesting the values. Is there a difference between 2.0 and 1.1.17 or is there a Problem with my production Environment (Java on the Client or something else..)
#50
General Support / Re: Request user input from nxsl
August 30, 2015, 11:08:35 PM
Hello Victor,

thank's for the tip! But how can I pass the values of the Input Fields to a servercommand that will call nxscript for inserting the values of the Input Fields as Custom Attributes?
The node  identified by %n can be passed in the commandline  in Object Tools.
Best regards
Georg
#51
General Support / Request user input from nxsl
August 29, 2015, 03:30:27 PM
Hello together,

is there a possibility to request some userinput from a script? This input from a mask the user can fill within the GUI should be attached for example to the current node or container as CustomAttributes.

Best regards

Georg
#52
General Support / Availabilty of only IP-Nodes
February 16, 2015, 05:29:04 PM
Hello everybody,
I have used NetXMS for monitoring networkcomponents via SNMP so far.
Now my silly question:
I have some components that do not talk SNMP for which monitoring is limited to its accessibility by ping. How can I configure this in NetXMS? I wouldn't like to maintain a crontab in Linux if possible.

Best regards

georg
#53
Announcements / Re: NetXMS 1.2.17 released
December 08, 2014, 04:04:03 PM
Hi Victor,

is it possible upgrading directly from 1.2.12 to 1.2.17?

Best regards

Georg
#54
General Support / Alarmlog with relativ filter
February 11, 2014, 10:31:17 AM
Hello together,

viewing the Alarm log it is possible applying filters with absolute values like between data and date or after/before date.
Is there a possibility viewing alarms with a filter like last 8 or 24 hours or last week without defining the exact date.

Best regards

Georg
#55
General Support / Insert Data to Mapping Tables
February 07, 2014, 01:33:52 PM
Hello,

is it possible to insert bulk data from an excelsheet or csv-file to a mapping table?

Best regards

Georg
#56
Implementing this feature for interfaces DCI-Class should be expanded by several DCI-Properties you can access by GUI like defining delta calculation, transformscript, performance Tab Attributes, thresholds and custom sceduled polls.
Best regards
Georg
#57
General Support / VLAN Interfaces on L2-Switches
April 22, 2013, 04:13:20 PM
Hello together,

is it possible preventing generation of VLAN-interfaces for L2-switches like Cat4500 that do not really have an IP-adress on the Switch?

When configuring the switch the first time it is possible putting these interfaces to "unmange" but when a new VLAN is added it is a lot of work putting this VLAN to "unmange" on all switches ...

Best regards

Georg
#58
Hello Victor,

first the node I'm looking for events is a normal switch that I can plug into the network or detach.
The two managementservers are in the same IP-subnet with the switch. On the server for prospective pruduction use I have a node for the relevant router in that network, but routing topology discovery is turned off for all configured nodes. There are no other nodes created that are behind this node.

Best regards and thanks fast reply

Georg
#59
Having two installations of Netxms one for testing purposes (Netxms 1.2.5, Windows Server 2003, 32 bit) one that should go into production (Netxms 1.2.5, Windows Server 2003R2, 64bit) both updated from Netxms 1.2.4 there is different behavior in eventgeneration.
The problem occures when monitoring a node that is reachable and will get unreachable. Here are the events of the two systems.
Production system:
SYS_NODE_NORMAL -> SYS_NODE_UNREACHABLE -> (directly to) SYS_NODE_UNKNOWN -> (when node will be reconnected) SYS_NODE_UP -> SYS_IF_UP -> SYS_NODE_NORMAL

Test system:
SYS_NODE_NORMAL -> SYS_NODE_DOWN -> SYS_IF_DOWN -> SYS_NODE_CRITICAL -> (when node will be reconnected) SYS_NODE_UP -> SYS_IF_UP -> SYS_NODE_NORMAL

The behavior at the testsystem is what I expect for monitoring. At the production system before upgrading to 1.2.5 I did not investigate events, but there I got an alarm too when the node was detached. Now with 1.2.5 on the production system this isn't the case.

Can anyone help me solving this problem?

Best regards

Georg
#60
hello together,

is there a way to start a netxms script at the management console for a specific interface of a node where node and Interfacedata are passed to.
Somthing like Your builtin DCI-Creation for an interface a little bit more flexible and expandable e.g. generating a set set of DCIs for that interface or node controlled by a self written script.

Best regards

Georg

B.T.W.: Is there just a possibility to create a DCI with it's parameters via script?