[Nagios-users] Dell Openmanage

2012-06-12 Thread Sven Dohmen
Since several months we are using the Dell Openmanage plugin from 
http://folk.uio.no/trondham/software/check_openmanage.html. This has been 
working fine untill the last couple weeks. 

For some servers we are getting the following results back:

W: Controller 0 [PERC 6/i Integrated]: Firmware '6.2.0-0013' is out of 
date
-- SYSTEM: PowerEdge R710, SN: 
INTERNAL ERROR: Use of uninitialized value within %fw_type in string eq at 
(eval 1) line 4976.
INTERNAL ERROR: Use of uninitialized value within %fw_type in pattern 
match (m//) at (eval 1) line 4980.  

I noticed this only happens when 1 of the drivers is out of date. Is there 
a solution for without directly updating the firmware (which is already 
planned over several weeks).

Met vriendelijke groet / With kind regards,
Sven Dohmen
NOC Engineer
Open for Support bv 
Amerikalaan 1 
6199 AE Maastricht-Airport Tel +31 (0)43 88 000 88 
Fax +31 (0)43 88 000 80 
http://www.o4s.nl --
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] check windows's manager tasks

2012-06-12 Thread bruno beatrice
hello,
i'd like check my windows task manager. i'd like to receive a mail when it 
doesn't work. i don't nagios very well. Someone can explain me step by step how 
i must configure my nagios?
thank's
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] Error: Service check command

2012-06-12 Thread Henrique Machado
Hi.

I'm trying to add the check_ftp command for one of my hosts. But i got this
error:

Error: Service check command 'check_ftp -H ftpserver' specified in service
'FTP' for host ' ftpserver' not defined anywhere!
Checked 89 services.


In my commands.cfg I have:

# 'check_ftp' command definition
define command{
command_namecheck_ftp
command_line$USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$
}


What i'm missing?

Tks
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Error: Service check command

2012-06-12 Thread Claudio Kuenzler
On Tue, Jun 12, 2012 at 2:39 PM, Henrique Machado henri@gmail.comwrote:

 Hi.

 I'm trying to add the check_ftp command for one of my hosts. But i got
 this error:

 Error: Service check command 'check_ftp -H ftpserver' specified in service
 'FTP' for host ' ftpserver' not defined anywhere!
 Checked 89 services.


 In my commands.cfg I have:

 # 'check_ftp' command definition
 define command{
 command_namecheck_ftp
 command_line$USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$
 }


 What i'm missing?


Show the service definition which fails.
The command definition looks alright.



 Tks


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Error: Service check command

2012-06-12 Thread Travis Runyard
Don't specify -H ftpserver in the service definition since the command
already knows which host to check.

Good:

define service{
use  generic-service
hostgroup_nameweb-servers
service_descriptionFTP
check_command   check_ftp
}

Bad:

define service{
use  generic-service
hostgroup_nameweb-servers
service_descriptionFTP
check_command   check_ftp -H ftpserver
}

On Tue, Jun 12, 2012 at 6:18 AM, Claudio Kuenzler 
c...@claudiokuenzler.comwrote:


 On Tue, Jun 12, 2012 at 2:39 PM, Henrique Machado henri@gmail.comwrote:

 Hi.

 I'm trying to add the check_ftp command for one of my hosts. But i got
 this error:

 Error: Service check command 'check_ftp -H ftpserver' specified in
 service 'FTP' for host ' ftpserver' not defined anywhere!
 Checked 89 services.


 In my commands.cfg I have:

 # 'check_ftp' command definition
 define command{
 command_namecheck_ftp
 command_line$USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$
 }


 What i'm missing?


 Show the service definition which fails.
 The command definition looks alright.



 Tks


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] High Service Check Latency

2012-06-12 Thread Giorgio Zarrelli
Hi,

check the i/o on disk. If you graph lots of checks or simply write the 
status.dat on slow disk, everything gets slow.

Io you find the disk being too taxed, try moving logs and status.dat on ramdisk.

Giorgio




--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Error: Service check command

2012-06-12 Thread Henrique Machado
Yeah! The good worked for me. Thank you guys.

2012/6/12 Travis Runyard travisruny...@gmail.com

 Don't specify -H ftpserver in the service definition since the command
 already knows which host to check.

 Good:

 define service{
 use  generic-service
 hostgroup_nameweb-servers
 service_descriptionFTP
 check_command   check_ftp
 }

 Bad:

 define service{
 use  generic-service
 hostgroup_nameweb-servers
 service_descriptionFTP
 check_command   check_ftp -H ftpserver
 }

 On Tue, Jun 12, 2012 at 6:18 AM, Claudio Kuenzler 
 c...@claudiokuenzler.comwrote:


 On Tue, Jun 12, 2012 at 2:39 PM, Henrique Machado henri@gmail.comwrote:

 Hi.

 I'm trying to add the check_ftp command for one of my hosts. But i got
 this error:

 Error: Service check command 'check_ftp -H ftpserver' specified in
 service 'FTP' for host ' ftpserver' not defined anywhere!
 Checked 89 services.


 In my commands.cfg I have:

 # 'check_ftp' command definition
 define command{
 command_namecheck_ftp
 command_line$USER1$/check_ftp -H $HOSTADDRESS$ $ARG1$
 }


 What i'm missing?


 Show the service definition which fails.
 The command definition looks alright.



 Tks


 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 Nagios-users mailing list
 Nagios-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/nagios-users
 ::: Please include Nagios version, plugin version (-v) and OS when
 reporting any issue.
 ::: Messages without supporting info will risk being sent to /dev/null

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

Re: [Nagios-users] Dell Openmanage

2012-06-12 Thread Werner, Robert
You can blacklist the Controller Firmware test.  I use the following to 
blacklist the fw on controller 0:
check_openmanage -H $HOSTADDRESS$ -C  snmp_commuinity -b ctrl_fw=0

--
Robert G. Werner
Oracle Apps Systems Administrator
rwer...@pomwonderful.com
559.521.5089

From: Sven Dohmen [mailto:s...@o4s.nl]
Sent: Tuesday, June 12, 2012 1:08 AM
To: nagios-users@lists.sourceforge.net
Subject: [Nagios-users] Dell Openmanage

Since several months we are using the Dell Openmanage plugin from 
http://folk.uio.no/trondham/software/check_openmanage.html. This has been 
working fine untill the last couple weeks.

For some servers we are getting the following results back:

W: Controller 0 [PERC 6/i Integrated]: Firmware '6.2.0-0013' is out of date
-- SYSTEM: PowerEdge R710, SN:
INTERNAL ERROR: Use of uninitialized value within %fw_type in string eq at 
(eval 1) line 4976.
INTERNAL ERROR: Use of uninitialized value within %fw_type in pattern match 
(m//) at (eval 1) line 4980.

I noticed this only happens when 1 of the drivers is out of date. Is there a 
solution for without directly updating the firmware (which is already planned 
over several weeks).

Met vriendelijke groet / With kind regards,

Sven Dohmen
NOC Engineer

[Image removed by sender.]

Open for Support bv
Amerikalaan 1
6199 AE Maastricht-Airport

Tel +31 (0)43 88 000 88
Fax +31 (0)43 88 000 80
http://www.o4s.nl

inline: image001.jpg--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null