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

#1
General Support / NetXMS Agent 3.0?
July 23, 2019, 01:18:46 PM
Hello,

Any ideas when the NetXMS agent 3.0 will be released? I believe I was told it would be around mid-july?
#2
General Support / Version 3 Agent Release Date?
June 24, 2019, 11:23:02 AM
Hi all,

Does anyone know when version 3 of NetXMS Agent for Windows will be released?
#3
General Support / Database Issues
June 06, 2019, 04:15:58 PM
Hi could someone help/advise me with my questions raised on here. I don't appear to be getting a response back?
https://track.radensolutions.com/issue/NX-1636
#4
General Support / Node part of DCI Template
June 04, 2019, 10:55:21 AM
Hi there, I have a specific windows template setup with a free space threshold of 10gb. I wanted to change it for a node, but I get this message. How to I remove it from the Template, but keep the parameters that you can see in the screenshot.

Thanks!
#5
We are using the log watch feature to monitor the logs of our Interfaces in different file paths etc.

Do within the nxagentd.conf file we are doing;
[LOGWATCH]
Parser = C:\NetXMS\etc\interface1.xml
Parser = C:\NetXMS\etc\interface2.xml


Then within Interface1.xml we are doing;
<parser>
  <file>C:\inetpub\Interface1\logs\Log_%Y_%m_%d.txt</file>
  <rules>
    <rule>
      <match>Error(.*)</match>
      <event>100050</event>
    </rule>
  </rules>
</parser>


The trouble we are having is both Interface 1, 2 etc use the same event to fire on in NetXMS. Ideally we'd like to stick to the one event but be able to identify which interface/log directory has fired it.

Is it possible to add something to the XMLS for us to be able to tell which Interface has fired the error? I.e. Interface 1 or Interface 2 using the same event? Or do we need to setup separate events for each one?

#6
Hello,

I am using the FileSize param in order to calculate the size of a file within a directory.
File.Size(S:\ftp\blah\,*,0)

A threshold has been setup.
Last Polled Values
Samples: 1
< : Less then 64000000000
Activation Event SVC_File_Size_Alert
Deactivation Event Sys_threshold_Rearmed

The file size is 65000000000+ but yet the current state is still 1 when this should be 0.

Any ideas?
#7
Hello,

I currently use FileCount within NetXMS to check a backup file has been placed within the dir. The only thing is it can take a while to transfer across so I want to check the file size is greater than 60gb for example.

Is this possible, if so how?
#8
General Support / Monitoring FTP?
April 03, 2019, 04:24:09 PM
Hi,

I was looking at trying to monitor an FTP. Basically I want to be able to create a poll on a node that'll connect to an external FTP server with credentials and then basically give a value of 1 or 0 depending if it can connect or not.

Anyone set anything like this up?
#9
Hello,

I'm just spent several days setting up NetXMS exactly how we want it. I got locked out of NetXMS so decided to restart the NetXMS Core service. Upon restarting this, it appears the Windows Template has changed back to the default....! This has then updated all of the nodes with the standard/default template. Surely the templates are stored in the database so these shouldn't change when the service is restarted?!?!

Could someone shed some light on this please and how we can go about backing this up....
#10
General Support / Disk space free? Volume...
March 26, 2019, 06:04:05 PM
Hello,

I am using the agent to monitor disk space on a few windows boxes. It's pulling in a drive called Volume. I'm not sure what this is I only want 'NORMAL' windows drives such as C:\ D:\ E:\ G:\ to be pulled in. Is there anyway to exclude the volume drives from the Windows Template?

See screenshot attached.

Also I've setup a generic email for LOW and NO DISK SPACE is it possible to have the node name in this email? If so what shortcode do I use to include this? It would just save creating multiple emails/actions for each node?
#11
What exactly does this mean? Anyway to avoid overwriting it?
'This DCI was added by instance discovery, all local changes can be overwritten at any moment'
#12
Hi all.

I was looking for the threshold column in the database (OK or an Error). I know the table 'thresoholds' exists in the NetXMS database but I'm not sure if this is what I need?


I can see the column current_state is in there which I what I presume either means Ok when 0 and error when 1.

Can someone confirm for me please?
#13
General Support / False Positives?
October 12, 2018, 05:42:31 PM
Hello,

We're using NetXMS to secondary monitor one of our SQL servers. The server is monitored also by Redgate. For some reason we're receiving email alerts for High CPU, but upon checking Redgate and NetXMS it isn't that high at all.

It looks like from NetXMS the threshold is set to; Last(2) > 90

Any ideas? I was to late to check the graphs, but I did hop onto Redgate and was literally nothing being used of the CPU!


False positives or bad setup?
#14
General Support / Incorrect Physical Memory Value
June 14, 2018, 03:59:37 PM
Hello,

I'm using NetXMS 2.2.1 9502.

I'm monitoring a Windows Server 2016 box but it appears the Free Physical Memory Value is incorrect.

It's showing me; 46.7M free
When I log onto the box I can see within Windows 4.4GB is available of the RAM.

Any ideas?
#15
Hello,

I am currently trying to monitor both a Terminal Server and Domain Controller. I have the Terminal Server added as a node using the hostname remote.exmaple.com which uses port 4701 (translates to 4700). I've then also tried to add the Domain Controller which sits on the same network using the hostname and IP which uses port 4702 and translates to 4700 but I get the error;

'Create new node' has encountered a problem.

Cannot create node object "DC1": IP conflict with node TS1

Any ideas on how I can resolve this or get around it?
#16
General Support / Changing Free/Used Space to GB
April 24, 2018, 11:28:24 AM
Hello,

I am currently using NetXMS for monitoring space on the servers I use. I was wondering if its possible to change the Free/Used Sapce to show the value in GB rather than a percentage?
FileSystem.FreePerc({instance})
FileSystem.UsedPerc({instance})

I noticed in instance discovery it has this (no idea what it does or if its useful)
type = AgentReadParameter($node, "FileSystem.Type(" . $1 . ")");
if ((type == null) || (type == "") || (type == "CDFS"))    
   return false;
return true;


Thanks!