-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* check_printer: added commands sample
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
define command { | ||
# Warning: 7% ARG1: 0.07 | ||
# Critical: 3% ARG2: 0.03 | ||
command_name check_printer_kyocera_toner | ||
command_line $USER1$/check_printer $HOSTADDRESS$ public v2c toner_kyocera_monochrome | ||
} | ||
|
||
define command { | ||
# Warning: 7% ARG1: 0.07 | ||
# Critical: 3% ARG2: 0.03 | ||
command_name check_printer_toner | ||
command_line $USER1$/check_printer $HOSTADDRESS$ public v2c toner $ARG1$ | ||
} | ||
|
||
define command { | ||
# Warning: 7% ARG1: 0.07 | ||
# Critical: 3% ARG2: 0.03 | ||
command_name check_printer_ricoh_toner | ||
command_line $USER1$/check_printer $HOSTADDRESS$ public v2c toner_ricoh_monochrome $ARG1$ | ||
} | ||
|
||
define command { | ||
# Warning: 7% ARG1: 0.07 | ||
# Critical: 3% ARG2: 0.03 | ||
command_name check_printer_ricoh_color_toner | ||
command_line $USER1$/check_printer $HOSTADDRESS$ public v2c toner_ricoh_color $ARG1$ | ||
} | ||
|
||
define command { | ||
# pagecount | ||
command_name check_printer_counter_1 | ||
command_line $USER1$/check_printer $HOSTADDRESS$ public v2c stats_counter 1 | ||
} | ||
|