Page 4 of 5

Re: check_nt!MEMUSE showing wrong info

Posted: Fri Feb 22, 2013 11:16 am
by lmiltchev
Can you telnet into port 5666 on the windows machine from your nagios server?

Code: Select all

telnet 192.168.5.63 5666
You can also use nc (if you have it installed):

Code: Select all

nc -zv 192.168.5.63 5666

Re: check_nt!MEMUSE showing wrong info

Posted: Mon Feb 25, 2013 2:15 am
by lafargeuser
However, telnet is not installed on Nagios. Perhaps, I should be able to telnet.
Pls. let me know how should I get rid of this. I have to do this for more than 200 Windows servers.


My concern is, If I am monitoring Using SNMP, it shows correct Memory Utilization.
So is it Good Idea to monitor servers using SNMP.

Re: check_nt!MEMUSE showing wrong info

Posted: Mon Feb 25, 2013 9:55 am
by scottwilkerson
You could install telnet with

Code: Select all

yum install telnet -y
However I would guess that you havent enabled NRPE in the NSC.ini
http://library.nagios.com/library/produ ... h-nsclient
lafargeuser wrote:If I am monitoring Using SNMP, it shows correct Memory Utilization.
So is it Good Idea to monitor servers using SNMP.
This is just a matter of preference, there is nothing wrong with monitoring with SNMP

Re: check_nt!MEMUSE showing wrong info

Posted: Tue Feb 26, 2013 1:34 am
by lafargeuser
After changes still it shows used memory.
Physical Memory Ok 5d 6h 48m 16s 1/5 26/02/2013 06:26:48 OK: physical memory: 755M

I should see Memory information in below format.

Memory usage: total:8096.25 Mb - used: 1248.49 Mb (8%) - free: 15185.76 Mb (92%)

Re: check_nt!MEMUSE showing wrong info

Posted: Tue Feb 26, 2013 10:28 am
by lmiltchev
Plugins return different info, other words, the format could be different. If you like better the SNMP check format, you should use this one, instead of check_nrpe.

Re: check_nt!MEMUSE showing wrong info

Posted: Wed Feb 27, 2013 1:37 am
by lafargeuser
It was just an example.
There should be solution of it. Because I am able to detect used memory, only I should see physical memory. thats it.
Do i need to do some changes in core config.

Also let me know if I would opt for SNMP monitoring, there are more than 200 windows server. On which I have to do the changes.
So is there any automation can I use , without downtime.

Re: check_nt!MEMUSE showing wrong info

Posted: Wed Feb 27, 2013 11:12 am
by slansing
How have you defined the command on your nagios server when you run it? The plugin will only return the metrics it was written to return, this by no means is a limit however because you can monitor metrics such as these with more detail or in different fashions with SNMP, custom plugins, or performance counters.

Re: check_nt!MEMUSE showing wrong info

Posted: Thu Feb 28, 2013 12:11 am
by lafargeuser
CheckMEM -a MaxWarn=80% MaxCrit=90% ShowAll type=physical

Can you Pls. elaborate more on this.
you can monitor metrics such as these with more detail or in different fashions with SNMP,custom plugins, or performance counters.

Re: check_nt!MEMUSE showing wrong info

Posted: Thu Feb 28, 2013 10:28 am
by slansing
You can monitor system memory usage through a wide variety of check mechanisms, basic standard nrpe or check_nt checks are only the ground level of systems monitoring. You could find the performance counter you want to monitor within windows and then use a custom NRPE check to return the data to you. Are you looking for an example of this?

Re: check_nt!MEMUSE showing wrong info

Posted: Fri Mar 01, 2013 12:54 am
by lafargeuser
Yes. Pls. share one,That will be really helpful.