Um script do PowerShell como esse deve funcionar. Isso pode ser chamado via Nagios e retornará um código de saída 0 e "OK: todas as impressoras são normais" ou um código de saída 2 e informações sobre a (s) impressora (s) que apresentam um problema.
#Initialize variables
$nagiosStatus = "0"
$nagiosDescription = ""
$detectedErrorStateDescriptions = New-Object string[] 12
#Assign error state descriptions - see http://msdn.microsoft.com/en-us/library/windows/desktop/aa394363(v=vs.85).aspx
$detectedErrorStateDescriptions[0] = "Unknown"
$detectedErrorStateDescriptions[1] = "Other"
$detectedErrorStateDescriptions[2] = "No Error"
$detectedErrorStateDescriptions[3] = "Low Paper"
$detectedErrorStateDescriptions[4] = "No Paper"
$detectedErrorStateDescriptions[5] = "Low Toner"
$detectedErrorStateDescriptions[6] = "No Toner"
$detectedErrorStateDescriptions[7] = "Door Open"
$detectedErrorStateDescriptions[8] = "Jammed"
$detectedErrorStateDescriptions[9] = "Offline"
$detectedErrorStateDescriptions[10] = "Service Requested"
$detectedErrorStateDescriptions[11] = "Output Bin Full"
#Check the status of each printer on the system
ForEach ( $printer in ( Get-WmiObject win32_printer ) ) {
If ( ( $printer.DetectedErrorState -ne "0" ) -and ( $printer.DetectedErrorState -ne "2" ) ) {
$nagiosStatus = "2"
If ($nagiosDescription -ne "") {
$nagiosDescription = $nagiosDescription + ", "
}
$nagiosDescription = $nagiosDescription + $printer.Name + ":" + $detectedErrorStateDescriptions[$printer.DetectedErrorState]
}
}
#Output the status
If ( $nagiosStatus -eq "2" ) {
Write-Host "CRITICAL: " $nagiosDescription
}
Else {
Write-Host "OK: All printers are normal"
}
exit $nagiosStatus
Eu não tenho uma instalação do Nagios disponível para testes no momento, mas isso foi modificado por outro script do PowerShell que usei com o Nagios.
Veja o link para obter mais informações sobre possíveis informações que você pode obter do objeto WMI win32_printer.