Sha256: fbecb4a82c9384c010484755d9e6406689ce81181f11e62f4bac1e92d51ae58b
Contents?: true
Size: 1.46 KB
Versions: 4
Compression:
Stored size: 1.46 KB
Contents
require 'sequel' require 'sqlite3' module Ring class SQA class Database def add record record[:time] = Time.now.utc.to_i record[:latency] = nil record[:result] = 'no response' Log.debug "adding '#{record}' to database" if CFG.debug? Ping.new(record).save end def update record_id, result, latency=nil if record = Ping[record_id] Log.debug "updating record_id '#{record_id}' with result '#{result}' and latency '#{latency}'" if CFG.debug? record.update(:result=>result, :latency=>latency) else Log.error "wanted to update record_id #{record_id}, but it does not exist" end end def nodes_down first_id max_id = (Ping.max(:id) or first_id) [max_id, Ping.distinct.where(:id=>first_id..max_id).exclude(:result => 'ok')] end def up_since? id, peer Ping.where{id > id}.where(:peer=>peer).count > 0 end def purge older_than=3600 Ping.where{time < (Time.now.utc-older_than).to_i}.delete end private def initialize Sequel::Model.plugin :schema sequel_opts = { max_connections: 1, pool_timout: 60 } if CFG.ram_database? @db = Sequel.sqlite sequel_opts else file = '%s.db' % CFG.afi file = File.join CFG.directory, file File.unlink file rescue nil # delete old database @db = Sequel.sqlite file, sequel_opts end require_relative 'database/model.rb' end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
ring-sqa-0.2.1 | lib/ring/sqa/database.rb |
ring-sqa-0.2.0 | lib/ring/sqa/database.rb |
ring-sqa-0.1.12 | lib/ring/sqa/database.rb |
ring-sqa-0.1.11 | lib/ring/sqa/database.rb |