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

#1
General Support / Re: Select all while in map
April 10, 2015, 02:29:30 AM
Hi,

Is it too much to ask for Ctl-Z for "undo" as well? I'm looking for ways of making larger network maps easier to work with. Without some of the basic features as copy/paste/undo/select it is kind of tedious to deal with larger network maps.

-m
#2
General Support / Select all while in map
April 07, 2015, 02:36:48 AM
Hi,

Maybe I'm just being silly, but I cannot seem to find a way to select everything on a map at the same time in order to move everything at once. Ctl-A does not seem to work. Is it possible?

-m
#3
General Support / Download image from image library
July 29, 2014, 06:37:20 PM
Hi,

I would like to download an image from the image library, modify it, then overwrite the original image in the library with the modified version. I cannot seem to find a way to do this. Is it possible?
#4
General Support / Re: syslog parser
July 01, 2014, 10:12:51 PM
I couldn't get this working with the built-in syslog server. So, I disabled that and configured the OS syslog server to accept remote connections. I then configured LogWatch on the agent and created a parser file et al.

That setup works without issue for me. Not the cleanest implementation, but certainly doable.
#5
Feature Requests / Right click on node -> view logs
June 28, 2014, 10:47:09 PM
It would be nice to be able to right click on a node and have an option to view the nodes logs, whether syslog/traps/etc. Similar to the way the Alarms menu item is there when you right click on a node.
#6
Integration with RANCID or some other way to pull and view a devices configuration would be helpful.
#7
General Support / syslog parser
June 28, 2014, 12:19:45 AM
Hi,

I'm attempting to create a syslog parser without much success. So far I have:

- Verified syslog messages are being correctly received by the server. I can see many events in the syslog monitor from my devices.
- Created an Event Configuration item with ID 100002
- Created a new syslog parser with the following configuration:

<parser name="">
   <rules>
      <rule>
         <match>LOGIN_FAILED.*</match>
         <event params="0">100002</event>
      </rule>
   </rules>
   <macros/>
</parser>


- Created an Event Processing policy with the following information:
Condition -> Events match 100002
Condition -> Severity Filter all items checked
Action -> Alarm create new alarm with an alarm timeout of 600 seconds

This configuration results in nothing occurring. Any insight into this would be appreciated.
#8
Adjusting ExecTimeOut in nxagend.conf solved the issue.
#9
Hi,

I've written an ExternalParameter in my nxagentd.conf file that looks like this:

ExternalParameter = NTP.Check(*):/usr/sbin/ntpdate -q -p1 $1 | /bin/grep "0.00000" | /usr/bin/wc -l

Running this command on the host works fine. However, when I query it from the server I receive the error:

Cannot get current parameter value: Communication failure

I have several other ExternalParameters on this agent, all working correctly. Any insight into this?
#10
That fixed it for me. Thanks much.
#11
Infoblox NIOS

- CPU stats
- Memory stats
- Temperature stats
- DNS stats
- DHCP stats
- Grid stats
#12
Fortinet Fortigate templates
#13
Hi,

I've created a Server Command under Object Tools that calls a bash script stored locally on the NetXMS server and passes the the %OBJECT_IP_ADDR% variable to the script. The script is very basic and looks something like this:

#!/bin/bash --
/usr/bin/do_something $1
echo `date +"%Y-%m-%d %T : "` Something done on device $1 >> script.log


I can run this script manually and the expected output is in the log file and the expected action is completed.

If I run this script using the created Server Command Object Tool, the script is executed but what I see in the log is:

date_and_time: Something done on device BJECT_IP_ADDR

Is there a way to pass the %OBJECT_IP_ADDR% variable to a Server Command Object Tool?