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

#121
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
#122
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
#123
General Support / Re: SNMP Proxy
February 17, 2016, 06:35:45 PM
I think I got it let me know if this correct or not but it seems to work  this will read in from a list of nodes and set each nodes snmp proxy to the following id 10236


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 = 10236
        md.setSnmpProxy(proxy)
        session.modifyObject(md)
#124
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
#125
General Support / Re: Duplicate Node generated
February 13, 2016, 09:48:13 PM
I think this may have been just a weird glitch ..I noticed that only one switch was being duplicated and not the other I deleted the switch and did a db check which found lots of errors that were fixed and added the offending switch  again and so far no duplicates i will update if anything changes
#126
General Support / Re: Duplicate Node generated
February 12, 2016, 06:11:23 PM
The primary node name was automatically set to the IP of each vlan interface
#127
General Support / Re: Duplicate Node generated
February 12, 2016, 01:22:03 AM
here you go ... Since then I have tried multiple times to just delete this switch and is keeps coming back  the server has become quite unstable since adding these two switches SuperX East and SuperX West they are both the same type of foundry switch


#128
General Support / Re: Duplicate Node generated
February 11, 2016, 06:51:37 PM
forgot to mention version is 2.0.1
#129
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
#130
General Support / Re: Cross Compile Help Please
February 09, 2016, 06:35:09 PM
Its is openwrt but they are using a very old version kamikaze    I have not had any problems building the package on later versions ..and all the research I have done points to the issues of the atomic functions not being supported on the gcc version that's included with the kamikaze toolchain I believe 4.2.1 is the version of gcc that is included.
#131
General Support / Re: MYSQL error
February 08, 2016, 10:34:31 PM
I got it solved .... I accidently passed db_schema instead of db_init  when initializing the db ......sorry
#132
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
#133
General Support / Re: Cannot load MIB file from Server
February 07, 2016, 07:59:16 PM
Some MIBS are dependent on others so when you run into those issues you have to look in the mib and find all its dependencies for instance generally near the top of the mib you find these IMPORT statments    generally the standard and RFC MIBS   are included in the netxms mibs folder.

*Note this mib only imports from RFC which should be fine and not give an error

IMPORTS
                    enterprises, OBJECT-TYPE, NetworkAddress, IpAddress,                 
                    Counter, Gauge, TimeTicks
                    FROM RFC1155-SMI
                    ifIndex, ipAdEntAddr, ipRouteDest, tcpConnLocalAddress,
                    tcpConnLocalPort, tcpConnRemAddress, tcpConnRemPort
                    FROM RFC1213-MIB;

*Note this mib imports from a standard mib as well but also from another vendor mib RUGGEDCOM-MIB so if i did not include the RUGGEDCOM-MIB in the folder i would recieve the error of not being able to resolve
IMPORTS
    MODULE-IDENTITY, OBJECT-IDENTITY,
    OBJECT-TYPE, Integer32              FROM SNMPv2-SMI
    TEXTUAL-CONVENTION, TruthValue,
    DisplayString                    FROM SNMPv2-TC
    OBJECT-GROUP                  FROM SNMPv2-CONF   
    ruggedcomMgmt                  FROM RUGGEDCOM-MIB;



also post the mibs your are trying to import  and i can see if i get the same issues
#134
General Support / Re: GPS
February 07, 2016, 01:31:22 AM
Thats greats news.. Is 2.0.3  source available to download and build for testing ?   
#135
General Support / Re: DCI question
February 03, 2016, 02:30:03 AM
Thanks,  Ive read the hints but wasnt sure how it pertained to triggering events weather the script needed to return a boolean or value  but from your script i see it needs to return a boolean in order to generate the event ... Thanks for your help