mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-05 10:03:45 +01:00
104 lines
3.2 KiB
PowerShell
104 lines
3.2 KiB
PowerShell
# Test Mailbox Database Health
|
|
#
|
|
# This script will look at all mailbox databases
|
|
# and determine the status of each.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# Originally created by Jeff Roberson (jeffrey.roberson@gmail.com)
|
|
# at Bethel College, North Newton, KS
|
|
#
|
|
# Revision History
|
|
# 5/10/2010 Jeff Roberson Creation
|
|
#
|
|
# To execute from within NSClient++
|
|
#
|
|
#[NRPE Handlers]
|
|
#check_mailbox_health=cmd /c echo C:\Scripts\Nagios\MailboxHealth.ps1 | PowerShell.exe -Command -
|
|
#
|
|
# On the check_nrpe command include the -t 20, since it takes some time to load
|
|
# the Exchange cmdlet's.
|
|
Write-Host "Test"
|
|
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
|
|
|
|
$NagiosStatus = "0"
|
|
$NagiosDescription = ""
|
|
|
|
ForEach ($DataBase in Get-MailboxDatabase) {
|
|
ForEach ($Status in Get-MailboxDatabaseCopyStatus -Identity $DataBase.Name) {
|
|
switch ($Status.Status) {
|
|
"Failed" {
|
|
$NagiosStatus = "2"
|
|
if ($NagiosDescription -ne "") {
|
|
$NagiosDescription = $NagiosDescription + ", "
|
|
}
|
|
$NagiosDescription = $NagiosDescription + $Status.Name + " is " + $Status.Status
|
|
}
|
|
|
|
"Dismounted" {
|
|
$NagiosStatus = "2"
|
|
if ($NagiosDescription -ne "") {
|
|
$NagiosDescription = $NagiosDescription + ", "
|
|
}
|
|
$NagiosDescription = $NagiosDescription + $Status.Name + " is " + $Status.Status
|
|
}
|
|
|
|
"Resynchronizing" {
|
|
if ($NagiosStatus -ne "2") {
|
|
$NagiosStatus = "1"
|
|
}
|
|
if ($NagiosDescription -ne "") {
|
|
$NagiosDescription = $NagiosDescription + ", "
|
|
}
|
|
$NagiosDescription = $NagiosDescription + $Status.Name + " is " + $Status.Status
|
|
}
|
|
|
|
"Suspended" {
|
|
if ($NagiosStatus -ne "2") {
|
|
$NagiosStatus = "1"
|
|
}
|
|
if ($NagiosDescription -ne "") {
|
|
$NagiosDescription = $NagiosDescription + ", "
|
|
}
|
|
$NagiosDescription = $NagiosDescription + $Status.Name + " is " + $Status.Status
|
|
}
|
|
|
|
"Mounting" {
|
|
if ($NagiosStatus -ne "2") {
|
|
$NagiosStatus = "1"
|
|
}
|
|
if ($NagiosDescription -ne "") {
|
|
$NagiosDescription = $NagiosDescription + ", "
|
|
}
|
|
$NagiosDescription = $NagiosDescription + $Status.Name + " is " + $Status.Status
|
|
}
|
|
|
|
"Healthy" {}
|
|
"Mounted" {}
|
|
}
|
|
}
|
|
}
|
|
|
|
# Output, what level should we tell our caller?
|
|
if ($NagiosStatus -eq "2") {
|
|
Write-Host "CRITICAL: " $NagiosDescription
|
|
} elseif ($NagiosStatus -eq "1") {
|
|
Write-Host "WARNING: " $NagiosDescription
|
|
} else {
|
|
Write-Host "OK: All Mailbox Databases are mounted and healthy."
|
|
}
|
|
|
|
exit $NagiosStatus
|