From 8d93ecc5230917861d7a5d3495e049f3ddc10161 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Sun, 3 Jun 2018 15:03:36 +0300 Subject: fix tests --- lib/oxidized/node/stats.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/oxidized/node/stats.rb') diff --git a/lib/oxidized/node/stats.rb b/lib/oxidized/node/stats.rb index e37e07a..c20a91a 100644 --- a/lib/oxidized/node/stats.rb +++ b/lib/oxidized/node/stats.rb @@ -23,6 +23,18 @@ module Oxidized status ? @stats[status] : @stats end + def get_counter counter=nil + counter ? @stats[:counter][counter] : @stats[:counter] + end + + def successes + @stats[:counter][:success] + end + + def failures + @stats[:counter].reduce(0) { |m,h| h[0] == :success ? m : m+h[1] } + end + private def initialize -- cgit v1.2.1