У меня есть несколько компьютеров с локальными USB-принтерами. Я хотел бы иметь возможность отслеживать такие вещи, как замятие бумаги и уровень тонера с помощью Nagios, но все, что мне удалось найти, связано с использованием SNMP.
Как я могу использовать Nagios для мониторинга локальных USB-принтеров?
Сценарий PowerShell, подобный этому, должен помочь. Это может быть вызвано через Nagios и вернет код выхода 0 и «ОК: все принтеры в норме» или код выхода 2 и информацию о принтере (ах), у которых возникла проблема.
#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
В настоящий момент у меня нет доступной для тестирования установки Nagios, но она изменена на основе другого сценария PowerShell, который я использовал с Nagios.
Видеть http://msdn.microsoft.com/en-us/library/windows/desktop/aa394363(v=vs.85).aspx для получения дополнительной информации о возможной информации вы можете получить из объекта win32_printer WMI.