SteelHouseLabs/apolo

View on GitHub
bin/apolo_tcp_sockets

Summary

Maintainability
Test Coverage
#!/usr/bin/env ruby
#
# Script Name:: apolo_tcp_sockets.rb
# @author Thomas Vincent <thomasvincent@steelhouselabs.com>
#
# Copyright 2014, Steel House Labs.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This script checks the quantity of connections on the database. The quantity
# can be filtered by a given criterion, and inverted if wanted.


require 'apolo'
require 'optparse'

options = { critical: 120, warning: 120, ipv6: false }

begin
  OptionParser.new do |opts|
    opts.on('-c', '--critical MAX', 'Max numbers of open sockets for critical') { |v| options[:critical] = v }
    opts.on('-w', '--warning MAX', 'Max numbers of open sockets for warning') { |v| options[:warning] = v }
    opts.on('-6' '--ipv6 (true|false)', 'Use IP6 or not') { options[:ipv6] = true }
  end.parse!
rescue Exception => msg
  puts msg
  exit
end

# Supress warning messages.
original_verbose, $VERBOSE = $VERBOSE, nil
@@options = options
# Activate warning messages again.
$VERBOSE = original_verbose


class CheckTCPSockets < Apolo::Metrics
  name 'TCP_Sockets'

  # Notifiers
  notify Apolo::Notifiers::Nagios, file: 'nagios.cmd',\
                                   host: 'localhost',\
                                   service: 'TCP_Sockets',\
                                   warning: @@options[:warning].to_i,\
                                   critical: @@options[:critical].to_i

  run do
    # get family options
    family = @@options[:ipv6] ? :INET6 : :INET

    sockets = Apolo::Domains::TCPSockets.connections(family)

    # send notify to nagios
    notify message: "#{sockets.count} connections #{family}", value: sockets.count

  end
end

# create monitor and run it
metrics = CheckTCPSockets.new
metrics.run