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

#31
General Support / Re: Parameters for SMSEagle driver
February 02, 2018, 04:41:44 PM
Hi,

thank You for the information.
Currently my netxms-version is 2.0.5 (Yes I know ist old!) and I tried using the configuration you gave me. The problem is, that I don't see any packet going out to the IP of my smsgateway.
Can someone tell me what I'm doing wrong?
Best regards
Georg
#32
General Support / Parameters for SMSEagle driver
October 02, 2017, 04:08:02 PM
Hello together,

what are the parameters to be configured when using a smseagle-device sending SMS directly from action configuration.

Best regards

Goerg
#33
Hello Netxms-team,

it is common usage installing components not only at the frontside of a rack but on the backside too.
As of this is it possible expanding the rack concept with an attribute like frontsidemount, backsidemount and frontandbacksidemount (for components that use both sides) and expanding the rackview to frontside view and backside view of the rack

Best regards

Georg
#34
Is there a possibility accessing custom attributes within the script of a condition Attribute?

Best regards

Georg
#35
Hello together,

writing a threshold condition for a table dci I would need to refer to a value of an other column in that table.

Example:
Having columns:
* Amps with an ampervalue describing actual power consumptions
* maxamps with an value for maximal allowed powerconsuption

I will need a condition like:
if (amps >= maxamps)
  Activationevent
else
  Deactivationevent;

Is there a way to implement such a condition with thersholds GUI?

As a workaround currently I create an activationevent within transformationscript.....

Best regards

Georg
#36
Thank You for this simple solution that worked for me now....
Grouping it in a cluster with the N5k-object helped me administrating the objects.... (Yes i know thats not really the intetntion of this object-type...)
#37
Hello,

does anyone has a solution for the following Problem?

At our datacenter we use Cisco Nexus-Switches with so called FEXes. FEX are used similar to linecards as they build one Switch for configuration with Nexus-Switches but are connected to the NEXUS with LWL-links. As of this they can be placed at different Locations than the NEXUS. It is not possible adressing the FEXes  separately.
Modelling the datacenter with racks it would be great also describing the position of FEXes and placing them into racks but not only the position of the NEXUS switch.

Does anyone has an idea how to do this with NETXMS?

Best regards

Georg
#38
General Support / Accessing Mapping Tables
July 28, 2016, 10:29:02 AM
Hello,

is there a possibility to walk through the mappingtable entries row by row with a NXSL-function within a script?

Best regards

Georg
#39
General Support / Re: Can Netxms Handle this
January 08, 2016, 03:44:24 PM
some time ago I had a similar problem after upgrading libmysql.
I solved this by increasing these parameters:
   * ConnectionPoolBaseSize to 20
   * ConnectionPoolMaxSize to 500

With the growth of my network I increased these parameters to:
   * NumberOfConfigurationPollers, NumberOfStatusPollers, NumberOfDataCollectors
   * NumberOfDatabaseWrites to 4

Best regards

Georg
#40
General Support / Server Crash after some time
October 08, 2015, 06:13:44 PM
Hello,

my environment is Netxms 1.2.17 with mysql 5.6.25 on Opensuse 13.2.
Currently I have the problem that netxms crashes after some time if prepared statementbuffer of the database ist full. It seems that each time automatic Configurationpolling is done there is a constant amount of Statements prepared, that will not be processed and only bee cleared if Server is shut down.
Doing a databasecheck with your tool dose not Report any Errors.

Best regards

Georg
#41
General Support / Re: Request user input from nxsl
September 01, 2015, 06:25:15 PM
Hi,

Your advise in mind how to call the nxsl-Script everything worked fine for Nodes!
Trying to execute the same script for a Container within the gui does not work at all.
I inserted a println-statement to the script to see the object-Id that is called, but I don't get any Output for a containerobject.
Executing the script directly from commandline on Linux with an id identifying a Container I will get the expected result for that container.

Best regards

Georg
#42
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
#43
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)

#44
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....
#45
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..)