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

#211
General Support / Re: MAC addresses
March 10, 2016, 12:58:13 AM
Tools > Find MAC address

Is that what you were looking for?
#212
General Support / Re: libc segfault crash
March 09, 2016, 03:23:28 PM
You can install the debug packages, which will provide the debug symbols.
netxms-server-dbg, netxms-agent-dbg,  etc.
#213
First thing that comes to mind is that you are not doing a delta calculation on the DCIs you created.

Show us complete config of your DCI and we will be able to tell you more.
#214
General Support / Re: Agent Screenshot
March 04, 2016, 12:31:31 AM
If the session agent is running, the feature should work (does for me on Windows).
#215
General Support / Re: Sum values from nodes
March 01, 2016, 05:19:41 PM
Its pretty much the same thing:


val1 = GetDCIValueByDescription(FindObject("node1"), "DCI1 description");
val2 = GetDCIValueByDescription(FindObject("node2"), "DCI2 description");

if (val1 == null || val2 == null)
  return 0;

return val1 + val2;


Functions can be found here:
https://wiki.netxms.org/wiki/NXSL_Function_Reference

Please be award of security implications:
https://wiki.netxms.org/wiki/SG:Security_Issues
#216
I suggest either using nxshell or NetXMS API to do this.
I personally use the NetXMS Java API to mass insert/update nodes in NetXMS programatically.

Documentation is available on the wiki.
#217
General Support / Re: CISCO Logging and Log Parser
February 29, 2016, 04:15:53 PM
You can send parameters to the event from the Syslog Parser using standard regex capture groups.

For example regex

.*SPANTREE-2-BLOCK_BPDUGUARD: (.*)

Would send the rest of the message (what gets captured inside the brackets) to the event.
Configure the parameters to 1, and handle the rest in EPP/action.
#218
General Support / Re: Sum values from nodes
February 29, 2016, 04:12:39 PM
Take a look in this thread, it discusses something very similar:
https://www.netxms.org/forum/general-support/dci-question/

If you need help, post more info.
#219
Feature Requests / Re: View for Data Collection
February 28, 2016, 03:10:32 PM
There is already a feature request for this on the tracker, feel free to monitor its progress here:
https://dev.raden.solutions/issues/687
#220
You can just do "nxagentd -v" or "netxmsd -v" to find out the versions.
#221
General Support / Re: Transformation Script
February 12, 2016, 02:48:32 PM
For anyone looking at this in the future, this also describes how script entry works:
https://wiki.netxms.org/wiki/UM:NetXMS_Scripting_Language_(NXSL)#Script_entry_point
#222
What build does the web console show you?
Its in the bottom right corner.
#223
Feature Requests / Re: nxdbmgr check
February 10, 2016, 01:10:51 AM
Should like a useful feature, please register a feature request on the bug tracker :)
https://dev.raden.solutions/projects/netxms/issues
#224
General Support / Re: graphs on stack
February 08, 2016, 05:39:04 PM
The legend shows each DCI separately.
So the legend correctly states avg. for each DCI.

If you stack the graphs, on the graph itself, you will of course see totaled (stacked) result.

For area and gradient, its all in the graph properties.

You can watch this video, it covers almost all graphing options available in NetXMS:
https://youtu.be/iIAAIUp9Wd0
#225
If you kept the database, do not re-initialize it after server reinstall.

Simply point your server at the already existing database.