module MysqlHealth

mysql_health - a service for monitoring MySQL and exposing its health through an HTTP interface Copyright © 2012 Erik Osterman <e@osterman.com>

This file is part of mysql_health.

mysql_health is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

mysql_health is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with mysql_health. If not, see <www.gnu.org/licenses/>.

Constants

VERSION

Public Class Methods

health() click to toggle source
# File lib/mysql_health/command_line.rb, line 27
def self.health 
  @@health
end
health=(health) click to toggle source
# File lib/mysql_health/command_line.rb, line 31
def self.health=(health)
  @@health = health
end
log() click to toggle source
# File lib/mysql_health/command_line.rb, line 35
def self.log
  @@log
end
log=(log) click to toggle source
# File lib/mysql_health/command_line.rb, line 39
def self.log=(log)
  @@log = log
end