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

Topics - gmonk63

#41
General Support / MQTT
January 25, 2018, 07:54:22 PM
Are you guys going to release any documentation on setting this up ?  We have a use case where we have some modbus devices and using modbus2mqtt  we would like to log that data in netxms



Thanks,

Gary Bonner
#42
General Support / 2.1M3 Mqtt support
April 06, 2017, 03:08:14 AM
Just curious.. I see experimental mqtt support was added and looking at the source it is only listed under subagents.  Is both the broker and client running on the agent ?   Just trying to figure out the topology of this. Does the agent publish predefined metrics to the server ?



Thanks,
#43
General Support / V2.1-M2 build problem
February 07, 2017, 12:10:07 AM
getting the following when trying to install..  this is on a Ubuntu 16.04 system installing from source 


/usr/local/bin/nxmibc: symbol lookup error: /usr/local/lib/libnxsnmp.so.2: undefined symbol: wfopen
Makefile:1204: recipe for target 'install-data-hook' failed
make[5]: *** [install-data-hook] Error 127
make[5]: Leaving directory '/home/nmsadmin/netxms-2.1-M2/contrib/mibs'
Makefile:1139: recipe for target 'install-data-am' failed
make[4]: *** [install-data-am] Error 2
make[4]: Leaving directory '/home/nmsadmin/netxms-2.1-M2/contrib/mibs'
Makefile:1094: recipe for target 'install-am' failed
make[3]: *** [install-am] Error 2
make[3]: Leaving directory '/home/nmsadmin/netxms-2.1-M2/contrib/mibs'
Makefile:431: recipe for target 'install-recursive' failed
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory '/home/nmsadmin/netxms-2.1-M2/contrib'
Makefile:481: recipe for target 'install-recursive' failed
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory '/home/nmsadmin/netxms-2.1-M2'
Makefile:775: recipe for target 'install' failed
make: *** [install] Error 2
#44
General Support / False Agent Detection
January 18, 2017, 04:47:40 PM
I have several switches that Netxms  2.0.5 is communicating with SNMPV3   I have seen this issues more than once but never thought too much about it but now its becoming a pain.  For some reason after configuration probably after the configurations polls are executed netxms  sees these layer 2 switches as having agents   which breaks any DCI and summary tables these are associated with..  Any suggestions as to how I can stop this or is this just a bug



Thanks
#45
General Support / CLI
October 31, 2016, 08:13:08 PM
Is it possible to launch on demand topology polls and network discoveries via the command line ?
#46
General Support / nxshell snmp vaules
September 20, 2016, 08:53:46 PM
Is it possible to get snmp values via nxshell ?  I need to get the serial numbers for a certain type of switch and the only way is via snmp




Thanks
#47
General Support / Custom scripts
September 03, 2016, 09:23:39 PM
Can we start a thread or a place for people to post scripts.  I think it would be useful..Im sure there are alot of people that have scripts that could be useful for new comers or some that maybe trying to do the same thing.





Thanks
#48
General Support / ZeroMQ
August 23, 2016, 05:44:33 PM
i dont see any documentation for zeromq.. is this going to be used for pub/sub to alarms or will it be able to do api calls to the server using req/resp  and any zeromq client.


#49
General Support / PING Subagent
August 21, 2016, 09:10:39 PM
Is is possible to cause a node to go into critical or down status based on the results from icmp stats.  I have a subagent setup to monitor latency of several hosts  but when the threshold is met the alarm is generated for the agent and not the instance being monitored ..  I would like to generate  a critical or down status if the latency shows 10k  for that particular instance   
#50
Feature Requests / User permissions
August 06, 2016, 06:04:56 AM
It would be nice to be able to assign nodes to users... So if you have user Tech1 which is only concerned with servers. You can select which servers he should be able to see Alarms for and only those. And Tech2 which is only concerned with PC's  he only recieve alarms for those selected
#51
General Support / DCI checks over SSH
August 04, 2016, 04:08:29 AM
Is there a way through scripting or other to do checks on nodes that dont either support SNMP or Agent  but have ssh access.   Since ssh supports running remote commands such as  if i run "ssh me@remotenode uname -a "  will give me system identification info  could I create a DCI that could run these remote commands via SSH to gather data ?  I have a switch that does not fully support SNMP and  only way to gather interface,cpu or temp stats is either via web or login and run a custom executable which comminticates with switch chip ...so my only options is try and scrape the data from the gui or run the custom commands over ssh and return it to NETXMS but i dont see any way to do that in the DCI setup options...



Thanks
#52
For any one interested I compiled a Agent that will run on a Ubiquity Edge Router/Lite products ... I currently use these as Pollers to proxy snmp or icmp polls  to ease the load on the main server. They also act as distribution devices to the field so it helps to be able to get interface BW and CPU usage for a segment .. Also here is the script that i use to assign nodes to these so i dont have to go one by one ...Just grab the object id of the poller and add the object names in the .txt file   You will have to scp the deb file to the router then run sudo dpkg -i netxms_ubnt_2.0.5.deb to install this will install to /usr/local  and config files to /etc/nxagentd.conf   also you will need to run "sudo ldconfig" after install or else you will have errors when attempting to start  with  "sudo service nxagentd start "  You will also need to vi the nxagentd.conf with your own params....  Hope this can be useful to someone


from org.netxms.client.objects import Node

for name in open("snmp-proxy.txt").readlines():
    node = session.findObjectByName(name.strip())
   
    if node:
        md = NXCObjectModificationData(node.getObjectId())
        proxy = 10254
        md.setSnmpProxy(proxy)
        session.modifyObject(md)
#53
General Support / Migrating to new server
June 30, 2016, 11:27:43 PM
Question I currently have a server ubuntu 14.04 with netxms 2.0.1   I have purchased a newer server and want to migrate all data to the new server which is ubuntu 16.04  but I want to install the latest Netxms version 2.0.4   can i simply install the new version and dump and restore the data base using mysql tools or do i need to do this using nxdbmgr  and what is the difference between using nxdbmgr vs mysql dump  does dbmgr only grab the schema and not the data ?



Thanks
#54
General Support / OpenWRT Agent
June 03, 2016, 02:23:13 AM
Just curious what versions of WRT is netxms agent compatible with ?  I tried to build it on 15.05 and got the following



make[6]: Entering directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src/libnetxms'
  CXX      libnetxms_la-tools.lo
In file included from libnetxms.h:27:0,
                 from tools.cpp:23:
../../include/nms_common.h:1175:13: error: previous declaration of 'void nx_free(void*)' with 'C++' linkage
inline void nx_free(void *p)
             ^
In file included from /home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/features.h:416:0,
                 from /home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/wchar.h:28,
                 from ../../include/unicode.h:119,
                 from ../../include/nms_common.h:72,
                 from libnetxms.h:27,
                 from tools.cpp:23:
/home/gmonk/Desktop/openwrt/staging_dir/toolchain-mips_34kc_gcc-4.8-linaro_uClibc-0.9.33.2/include/malloc.h:119:18: error: conflicts with new declaration with 'C' linkage
extern void free __MALLOC_P ((__malloc_ptr_t __ptr));
                  ^
make[6]: *** [libnetxms_la-tools.lo] Error 1
make[6]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src/libnetxms'
make[5]: *** [all-recursive] Error 1
make[5]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/src'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2'
make[2]: *** [/home/gmonk/Desktop/openwrt/build_dir/target-mips_34kc_uClibc-0.9.33.2/netxms-agent-nossl/netxms-2.0.2/.built] Error 2
make[2]: Leaving directory `/home/gmonk/Desktop/openwrt/feeds/netxms/admin/netxms'
make[1]: *** [package/feeds/netxms/netxms/install] Error 2
make[1]: Leaving directory `/home/gmonk/Desktop/openwrt'
#55
General Support / DCI timestamp delay
April 20, 2016, 07:38:48 AM
Greetings,


I have a script which sends data via nxpush to a DCI and i have noticed that it takes almost 30seconds for the dci to reflect the changes ... is there a way to specify the time stamp using nxpush instead of having  time stamped by the server when it is recieved
#56
General Support / Line Chart Question
March 25, 2016, 02:21:10 AM
Is it possible to assign  data points to the line chart  maybe with a dot or something visible.  It is hard to distinguish  visible changes on the line when there are only slight changes in the data which almost makes it look like a single line that continues to rise slightly
#57
General Support / Dash Board
March 10, 2016, 05:18:20 PM
Does the Dashboard web page element use a internal browser ?  And is there a way to tell it you use a local browser like chrome or FireFox when rendering web pages



Thanks
#58
General Support / SNMP Proxy
February 17, 2016, 05:05:27 PM
Is it possible to configure snmp proxy via nxshell  I see that its is possible during creating but what about after the fact



Thanks
#59
General Support / Duplicate Node generated
February 11, 2016, 06:51:05 PM
I have a layer 3 switch that has several vlan interfaces and netxms has created a new node for each vlan interface  so I have  six nodes all named  L3SWITCH_TEST  and each node has all the same interfaces duplicated the only thing that is different from each node is the id and primary host name which is the vlan interface ip.



Is there a way to prevent netxms from creating all these unnecessary nodes? or does it even matter  ?  I just dont want multiple duplicated checks on the same switch


Thanks
#60
General Support / MYSQL error
February 08, 2016, 10:17:01 PM
Having the following issue when trying to start netxmsd

[08-Feb-2016 13:13:46.520] [DEBUG] Database Connection Pool maintenance thread started
[08-Feb-2016 13:13:46.521] [DEBUG] Database Connection Pool initialized
[08-Feb-2016 13:13:46.521] [DEBUG] Database Connection Pool: handle 0xa9c2a8 acquired (call from config.cpp:321)
[08-Feb-2016 13:13:46.523] [DEBUG] Database Connection Pool: handle 0xa9c2a8 released
[08-Feb-2016 13:13:46.524] [DEBUG] Database Connection Pool: handle 0xa9cb08 acquired (call from config.cpp:167)
[08-Feb-2016 13:13:46.526] [DEBUG] Database Connection Pool: handle 0xa9cb08 released
[08-Feb-2016 13:13:46.527] [DEBUG] Database Connection Pool: handle 0xa9d320 acquired (call from config.cpp:214)
[08-Feb-2016 13:13:46.558] [DEBUG] Database Connection Pool: handle 0xa9d320 released
[08-Feb-2016 13:13:46.558] [DEBUG] Server ID 2B5C7B7D455F2E6A
[08-Feb-2016 13:13:46.558] [DEBUG] Database Connection Pool: handle 0xa9db38 acquired (call from config.cpp:321)
[08-Feb-2016 13:13:46.560] [DEBUG] Database Connection Pool: handle 0xa9db38 released
[08-Feb-2016 13:13:46.561] [DEBUG] DBLockStatus="ERROR"
[08-Feb-2016 13:13:46.561] [ERROR] Error initializing component locks table


im using mysql version 5.5.4