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 - Tatjana Dubrovica

#16
General Support / Re: Tools > Find Object > query
December 06, 2019, 04:03:06 PM
It's similar to object query dashboard element: NXSL script is executed for every node in the system and if script return true - iti will be included in the list.

Some examples:
1:
haveAlarms = { return $node->alarms->size > 0; }
type == NODE and haveAlarms

2:
type == NODE and name match "^EPE.*"

3:
true

Last will return all objects
#17
Hi,

It is just a warning, that means that node does not return anything on next oids:
.1.3.6.1.2.1.17.1.4.1.2
.1.3.6.1.2.1.17.7.1.2.2.1.2
.1.3.6.1.2.1.17.4.3.1.1

It might be normal situation.
#19
General Support / Re: how to use and configure LDAP
December 05, 2019, 04:01:08 PM
All roles are managed inside the NetXMS, LDAP is used onlu to log in. You can create required groups inside the NetXMS or use groups that are imported from LDAP and just assign required access rights to those groups, you can add groups inside the groups. If your LDAP structure does not change a lot you can use imported groups, but I personally create group with correct rights just in case if in LDAP group will be removed all rights will not be lost. I add LDAP imported groups in to the manually created groups.
#20
General Support / Re: how to use and configure LDAP
December 05, 2019, 01:51:33 PM
We use object class to verify if it is user or group. Your user has classes classes: top,vasco-DPToken, but does not have user or group class(that are defined in your config). It looks like you can use vasco-DPApplication class as a user class. And you should check what class is group class the same way it was done for users.
#21
Recently trap processing script was created. It has node $node, $trap as a string and $varbinds as SNMP_VarBind, event that is about to be generated is accessible via $event global variable.
You can iterate over $node->children, find macAddr and get description. And using method addParameter add one more parameter to event.

Documentation: https://www.netxms.org/documentation/nxsl-3.2/
Some NXSL example available on wiki
#22
Can you also provide how does action call is configured on server side: I mean server action (Configuration->Action Configuration), that calls agent action?
#23
Looks like a bug I'll check it.

What server version do you use?
#24
General Support / Re: netxmsd 3.1 crashing on startup
December 04, 2019, 07:54:04 PM
Problem fixed will be included in next patch release
#25
General Support / Re: Centralized agent upgrade
December 04, 2019, 07:51:21 PM
It should be under: var/lib/netxms/packages/

Found bug that might cause it. npi file should be in the same folder with the file that should be uploaded (check that name of the file inside npi file is the same as the actual file name). In case if file not found package manager shows error, but sill uploads file with 0 sizes and adds it to the list.

Please check if it is your case.
#26
Hi,

It is not possible to turn off caching, but you can set synchronization interval by changing server configuration parameter: "SyncInterval".
#27
General / Re: DCI poll time out, record a value
December 03, 2019, 04:43:31 PM
You can't process error by transformation script. If you want to transform error into some meaningful value you can use script DCI, access agent or SNMP from it or value of other DCI, and return some value in case of error.
#28
General Support / Re: CRON schedule doesn't work?
December 03, 2019, 04:31:57 PM
Cron tab to run script every minute should look like: * * * * *
We support cron expressions with only 5 parts: minutes, hours, day(month), month, day.
Also NetXMS does not support "?" symbol.
#29
Hi,

I've created issue in issue tracker: https://track.radensolutions.com/issue/NX-1722

Is problem only with sound or there is also no vibration and no notifications?

Than you for detailed test.
#30
General Support / Re: Overlapping non routed subnets
December 03, 2019, 03:59:15 PM
Latest NXSL manual:
www.netxms.org/documentation/nxsl-3.0/
NXSL manual for version 2.2:
www.netxms.org/documentation/nxsl-2.2/