Sha256: 8ce8e2761742cae2a428cbb9f5efd3cb2c66e80529e39b6dd42cac0508dae558
Contents?: true
Size: 1.1 KB
Versions: 16
Compression:
Stored size: 1.1 KB
Contents
#! /usr/bin/env ruby # # check-windows-processor-queue-length.rb # # DESCRIPTION: # This plugin checks the Processor Queue Length # It uses Typeperf to get the processor usage. # # OUTPUT: # plain text # # PLATFORMS: # Windows # # DEPENDENCIES: # gem: sensu-plugin # # USAGE: # # NOTES: # Tested on Windows 2012R2. # # LICENSE: # Andy Royle <ajroyle@gmail.com> # Released under the same terms as Sensu (the MIT license); see LICENSE for details. # require 'sensu-plugin/check/cli' class CheckWindowsProcessorQueueLength < Sensu::Plugin::Check::CLI option :warning, short: '-w WARNING', default: 5, proc: proc(&:to_i) option :critical, short: '-c CRITICAL', default: 10, proc: proc(&:to_i) def run io = IO.popen('typeperf -sc 1 "system\\processor queue length"') cpu_queue = io.readlines[2].split(',')[1].delete('"').to_i critical "Processor Queue at at #{cpu_queue}%" if cpu_queue > config[:critical] warning "Processor Queue at #{cpu_queue}%" if cpu_queue > config[:warning] ok "Processor Queue at #{cpu_queue}%" end end
Version data entries
16 entries across 16 versions & 1 rubygems