I didn’t see this posted before. Anyone know of any plugins to check Konica Minolta machines?
Late reply… …I’m new to this forum.
I have a Konica Minolta c353 and I’m monitoring toner status and some more checks. I did an snmpwalk and found the strings I needed. Here’s what I’ve found…
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Toner status Cyan ; The service description
check_command check_snmp!-C public -o .1.3.6.1.2.1.43.11.1.1.9.1.1 -u % ; The command used to monitor the service
normal_check_interval 1 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Toner status Magenta ; The service description
check_command check_snmp!-C public -o .1.3.6.1.2.1.43.11.1.1.9.1.2 2 -u % ; The command used to monitor the service
normal_check_interval 1 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Toner status Yellow ; The service description
check_command check_snmp!-C public -o .1.3.6.1.2.1.43.11.1.1.9.1.3 -u % ; The command used to monitor the service
normal_check_interval 1 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Toner status Black ; The service description
check_command check_snmp!-C public -o .1.3.6.1.2.1.43.11.1.1.9.1.4 -u % ; The command used to monitor the service
normal_check_interval 1 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Total Counter ; The service description
check_command check_snmp!-C public -o .1.3.6.1.2.1.43.10.2.1.4.1.1 ; The command used to monitor the service
normal_check_interval 10 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Total Full Colour prints ; The service description
check_command check_snmp!-C public -o .1.3.6.1.4.1.18334.1.1.1.5.7.2.2.1.5.2.2 ; The command used to monitor the service
normal_check_interval 10 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
define service{
use generic-service ; Inherit values from a template
host_name PrinterName ; The name of the host or hostgroup the service is associated with
service_description Total Black Prints ; The service description
check_command check_snmp!-C public -o .1.3.6.1.4.1.18334.1.1.1.5.7.2.2.1.5.1.2 ; The command used to monitor the service
normal_check_interval 10 ; Check the service every 10 minutes under normal conditions
retry_check_interval 1 ; Re-check the service every minute until its final/hard state is determined
}
I hope you can use this. Or anyone…