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

Topics - johnnyva

#1
Should there be a new expected state to handle the DORMANT state?  It's not necessarily DOWN and its not UP.  Or is it considered DOWN?

This is on a Cisco C1121-8PLTEP WAN Router.

Its currently on what looks like a cellular interface (so 4G failover?).
#2
General Support / Millisecond resolution in NXSL
March 02, 2021, 09:19:26 PM
If I wanted to capture the duration between two points in time within NetXMS using NXSL, is it possible to capture millisecond resolution?

Currently I'm just using time() method at start and end time then calculating diff, but this only gives second resolution.
#3
Server environments:
- Instance 1 = v3.8.166 on Ubuntu Bionic (AgentExecuteActionWithOutput doesn't work)
- Instance 2 = v3.4.313 on Ubuntu Xenial (AgentExecuteActionWithOutput works)

When executing nxsl script against Instance 1 environment, and running the following command, I get no output.  This has been a thing for a while (going off my poor memory, I'm sure it used to work, but I don't think it has since 3.6ish? but I could be wrong and maybe it's never worked...)

println(AgentExecuteActionWithOutput($node, "echo test"));

This should print out "test".
When running this against our Instance 2 environment, I get the expected result (i.e. it prints out "test").

This could be a agent config or setting somewhere but struggling to find it.

Both servers have almost the same nxagentd.conf execpt for the MasterServers settings.

Both have the following nxagentd.conf


# Log File
LogFile=/var/log/nxagentd

# IP white list, can contain multiple records separated by comma.
# CIDR notation supported for subnets.
MasterServers=<redacted>,127.0.0.0/8

SubAgent = filemgr.nsm

[filemgr]
RootFolder = /


And when running the nxagentd -C on the working server instance, it does not contain any extra agent settings that might have been applied by agent policies.

Any ideas?