Module: RightSupport::Stats

Defined in:
lib/right_support/stats.rb,
lib/right_support/stats/helpers.rb,
lib/right_support/stats/activity.rb,
lib/right_support/stats/exceptions.rb

Overview

Copyright © 2009-2012 RightScale Inc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Defined Under Namespace

Classes: Activity, Exceptions

Constant Summary collapse

MAX_STAT_NAME_WIDTH =

Maximum characters in stat name

11
MAX_SUB_STAT_NAME_WIDTH =

Maximum characters in sub-stat name

17
MAX_SUB_STAT_VALUE_WIDTH =

Maximum characters in sub-stat value line

80
SEPARATOR =

Separator between stat name and stat value

" : "
MINUTE =

Time constants

60
HOUR =
60 * MINUTE
DAY =
24 * HOUR

Class Method Summary collapse

Class Method Details

.activity_str(value) ⇒ Object

Convert activity information to displayable format

Parameters

value(Hash|nil)

Information about activity, or nil if the total is 0

“total”(Integer)

Total activity count

“percent”(Hash)

Percentage for each type of activity if tracking type, otherwise omitted

“last”(Hash)

Information about last activity

“elapsed”(Integer)

Seconds since last activity started

“type”(String)

Type of activity if tracking type, otherwise omitted

“active”(Boolean)

Whether activity still active if tracking whether active, otherwise omitted

“rate”(Float)

Recent average rate if measuring rate, otherwise omitted

“duration”(Float)

Average duration of activity if tracking duration, otherwise omitted

Return

str(String)

Activity stats in displayable format without any line separators



435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
# File 'lib/right_support/stats/helpers.rb', line 435

def self.activity_str(value)
  str = ""
  str += enough_precision(sort_value(value["percent"]).reverse).map { |k, v| "#{k}: #{v}%" }.join(", ") +
         ", total: " if value["percent"]
  str += "#{value['total']}"
  str += ", last: #{last_activity_str(value['last'], single_item = true)}" if value["last"]
  str += ", rate: #{enough_precision(value['rate'])}/sec" if value["rate"]
  str += ", duration: #{enough_precision(value['duration'])} sec" if value["duration"]
  value.each do |name, data|
    unless ["total", "percent", "last", "rate", "duration"].include?(name)
      str += ", #{name}: #{data.is_a?(String) ? data : data.inspect}"
    end
  end
  str
end

.brokers_str(brokers, options = {}) ⇒ Object

Convert broker information to displayable format

Parameter

brokers(Hash)

Broker stats with keys

“brokers”(Array)

Stats for each broker in priority order as hash with keys

“alias”(String)

Broker alias

“identity”(String)

Broker identity

“status”(Symbol)

Status of connection

“disconnect last”(Hash|nil)

Last disconnect information with key “elapsed”, or nil if none

“disconnects”(Integer|nil)

Number of times lost connection, or nil if none

“failure last”(Hash|nil)

Last connect failure information with key “elapsed”, or nil if none

“failures”(Integer|nil)

Number of failed attempts to connect to broker, or nil if none

“retries”(Integer|nil)

Number of attempts to connect after failure, or nil if none

“exceptions”(Hash|nil)

Exceptions raised per category, or nil if none

“total”(Integer)

Total exceptions for this category

“recent”(Array)

Most recent as a hash of “count”, “type”, “message”, “when”, and “where”

“heartbeat”(Integer|nil)

Number of seconds between AMQP heartbeats, or nil if heartbeat disabled

“returns”(Hash|nil)

Message return activity stats with keys “total”, “percent”, “last”, and “rate”

with percentage breakdown per request type, or nil if none
options(Hash)

Formatting options

:name_width(Integer)

Fixed width for left-justified name display

:sub_name_width(Integer)

Maximum characters in displayed sub-stat name

:sub_stat_value_width(Integer)

Maximum characters in displayed sub-stat value line

Return

str(String)

Broker display with one line per broker plus exceptions



315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
# File 'lib/right_support/stats/helpers.rb', line 315

def self.brokers_str(brokers, options = {})
  name_width = options[:name_width] || MAX_STAT_NAME_WIDTH
  sub_name_width = options[:sub_name_width] || MAX_SUB_STAT_NAME_WIDTH
  sub_stat_value_width = options[:sub_stat_value_width] || MAX_SUB_STAT_VALUE_WIDTH

  value_indent = " " * (name_width + SEPARATOR.size)
  sub_value_indent = " " * (name_width + sub_name_width + (SEPARATOR.size * 2))
  str = sprintf("%-#{name_width}s#{SEPARATOR}", "brokers")
  brokers["brokers"].each do |b|
    disconnects = if b["disconnects"]
      "#{b["disconnects"]} (#{elapsed(b["disconnect last"]["elapsed"])} ago)"
    else
      "none"
    end
    failures = if b["failures"]
      retries = b["retries"]
      retries = " w/ #{retries} #{retries != 1 ? 'retries' : 'retry'}" if retries
      "#{b["failures"]} (#{elapsed(b["failure last"]["elapsed"])} ago#{retries})"
    else
      "none"
    end
    str += "#{b["alias"]}: #{b["identity"]} #{b["status"]}, disconnects: #{disconnects}, failures: #{failures}\n"
    str += value_indent
  end
  str += sprintf("%-#{sub_name_width}s#{SEPARATOR}", "exceptions")
  str += if brokers["exceptions"].nil? || brokers["exceptions"].empty?
    "none\n"
  else
    exceptions_str(brokers["exceptions"], sub_value_indent, options) + "\n"
  end
  str += value_indent
  str += sprintf("%-#{sub_name_width}s#{SEPARATOR}", "heartbeat")
  str += if [nil, 0].include?(brokers["heartbeat"])
    "none\n"
  else
    "#{brokers["heartbeat"]} sec\n"
  end
  str += value_indent
  str += sprintf("%-#{sub_name_width}s#{SEPARATOR}", "returns")
  str += if brokers["returns"].nil? || brokers["returns"].empty?
    "none\n"
  else
    wrap(activity_str(brokers["returns"]), [sub_stat_value_width, sub_stat_value_width + sub_value_indent.size],
         sub_value_indent, /, /) + "\n"
  end
end

.elapsed(time) ⇒ Object

Convert elapsed time in seconds to displayable format

Parameters

time(Integer|Float)

Elapsed time

Return

(String)

Display string



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/right_support/stats/helpers.rb', line 78

def self.elapsed(time)
  time = time.to_i
  if time <= MINUTE
    "#{time} sec"
  elsif time <= HOUR
    minutes = time / MINUTE
    seconds = time - (minutes * MINUTE)
    "#{minutes} min #{seconds} sec"
  elsif time <= DAY
    hours = time / HOUR
    minutes = (time - (hours * HOUR)) / MINUTE
    "#{hours} hr #{minutes} min"
  else
    days = time / DAY
    hours = (time - (days * DAY)) / HOUR
    minutes = (time - (days * DAY) - (hours * HOUR)) / MINUTE
    "#{days} day#{days == 1 ? '' : 's'} #{hours} hr #{minutes} min"
  end
end

.enough_precision(value) ⇒ Object

Determine enough precision for floating point value(s) so that all have at least two significant digits and then convert each value to a decimal digit string of that precision after applying rounding When precision is wide ranging, limit precision of the larger numbers

Parameters

value(Float|Array|Hash)

Value(s) to be converted

Return

(String|Array|Hash)

Value(s) converted to decimal digit string



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/right_support/stats/helpers.rb', line 108

def self.enough_precision(value)
  scale = [1.0, 10.0, 100.0, 1000.0, 10000.0, 100000.0]
  enough = lambda { |v| (v >= 10.0   ? 0 :
                        (v >= 1.0    ? 1 :
                        (v >= 0.1    ? 2 :
                        (v >= 0.01   ? 3 :
                        (v >  0.001  ? 4 :
                        (v >  0.0    ? 5 : 0)))))) }
  digit_str = lambda { |p, v| sprintf("%.#{p}f", (v * scale[p]).round / scale[p])}

  if value.is_a?(Float)
    digit_str.call(enough.call(value), value)
  elsif value.is_a?(Array)
    min, max = value.map { |_, v| enough.call(v) }.minmax
    precision = (max - min) > 1 ? min + 1 : max
    value.map { |k, v| [k, digit_str.call([precision, enough.call(v)].max, v)] }
  elsif value.is_a?(Hash)
    min, max = value.to_a.map { |_, v| enough.call(v) }.minmax
    precision = (max - min) > 1 ? min + 1 : max
    value.to_a.inject({}) { |s, v| s[v[0]] = digit_str.call([precision, enough.call(v[1])].max, v[1]); s }
  else
    value.to_s
  end
end

.exceptions_str(exceptions, indent, options = {}) ⇒ Object

Convert exception information to displayable format

Parameters

exceptions(Hash)

Exceptions raised per category

“total”(Integer)

Total exceptions for this category

“recent”(Array)

Most recent as a hash of “count”, “type”, “message”, “when”, and “where”

indent(String)

Indentation for each line

options(Hash)

Formatting options

:sub_stat_value_width(Integer)

Maximum characters in displayed sub-stat value line

Return

(String)

Exceptions in displayable format with line separators



488
489
490
491
492
493
494
495
496
497
498
499
# File 'lib/right_support/stats/helpers.rb', line 488

def self.exceptions_str(exceptions, indent, options = {})
  sub_stat_value_width = options[:sub_stat_value_width] || MAX_SUB_STAT_VALUE_WIDTH
  indent2 = indent + (" " * 4)
  exceptions.to_a.sort.map do |k, v|
    sprintf("%s total: %d, most recent:\n", k, v["total"]) + v["recent"].reverse.map do |e|
      where = " IN #{e["where"]}" if e["where"]
      indent + wrap("(#{e["count"]}) #{time_at(e["when"])} #{e["type"]}: #{e["message"]}#{where}",
                    [sub_stat_value_width, sub_stat_value_width + indent2.size],
                    indent2, / |\/\/|\/|::|\.|-/)
    end.join("\n")
  end.join("\n" + indent)
end

.hash_str(hash) ⇒ Object

Convert arbitrary nested hash to displayable format Sort hash by key, numerically if possible, otherwise as is Display any floating point values with one decimal place precision Display any empty values as “none”

Parameters

hash(Hash)

Hash to be displayed

Return

(String)

Single line hash display



511
512
513
514
515
516
517
518
519
520
521
522
# File 'lib/right_support/stats/helpers.rb', line 511

def self.hash_str(hash)
  str = ""
  sort_key(hash).map do |k, v|
    "#{k}: " + if v.is_a?(Float)
      enough_precision(v)
    elsif v.is_a?(Hash)
      "[ " + hash_str(v) + " ]"
    else
      "#{v || "none"}"
    end
  end.join(", ")
end

.last_activity_str(last, single_item = false) ⇒ Object

Convert last activity information to displayable format

Parameters

last(Hash)

Information about last activity

“elapsed”(Integer)

Seconds since last activity started

“type”(String)

Type of activity if tracking type, otherwise omitted

“active”(Boolean)

Whether activity still active if tracking whether active, otherwise omitted

single_item

Whether this is to appear as a single item in a comma-separated list

in which case there should be no ':' in the formatted string

Return

str(String)

Last activity in displayable format without any line separators



463
464
465
466
467
468
469
470
471
472
473
474
# File 'lib/right_support/stats/helpers.rb', line 463

def self.last_activity_str(last, single_item = false)
  str = "#{elapsed(last['elapsed'])} ago"
  str += " and still active" if last["active"]
  if last["type"]
    if single_item
      str = "#{last['type']} (#{str})"
    else
      str = "#{last['type']}: #{str}"
    end
  end
  str
end

.nil_if_zero(value) ⇒ Object

Convert 0 value to nil This is in support of displaying “none” rather than 0

Parameters

value(Integer|Float)

Value to be converted

Returns

(Integer|Float|nil)

nil if value is 0, otherwise the original value



52
53
54
# File 'lib/right_support/stats/helpers.rb', line 52

def self.nil_if_zero(value)
  value == 0 ? nil : value
end

.percentage(values) ⇒ Object

Convert values hash into percentages

Parameters

values(Hash)

Values to be converted whose sum is the total for calculating percentages

Return

(Hash)

Converted values with keys “total” and “percent” with latter being a hash with values as percentages



63
64
65
66
67
68
69
# File 'lib/right_support/stats/helpers.rb', line 63

def self.percentage(values)
  total = 0
  values.each_value { |v| total += v }
  percent = {}
  values.each { |k, v| percent[k] = (v / total.to_f) * 100.0 } if total > 0
  {"percent" => percent, "total" => total}
end

.service_up_str(stats) ⇒ Object

Converts service uptime stats to displayable format

Parameters

stats(Integer|Hash)

Service uptime in seconds if an Integer, otherwise a Hash containing

"uptime", "total_uptime", "restarts", "graceful_exits", "crashes", and "last_crash_time" values

Return

(String)

Service uptime display



273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
# File 'lib/right_support/stats/helpers.rb', line 273

def self.service_up_str(stats)
  if stats.is_a?(Integer)
    elapsed(stats)
  else
    str = elapsed(stats["uptime"])
    if (r = stats["restarts"]) && r > 0
      non_graceful = (n = r - stats["graceful_exits"]) > 0 ? "#{n} non-graceful, " : ""
      str += ", restarts: #{r} (#{non_graceful}up #{elapsed(stats["total_uptime"])} total)"
    end
    if (c = stats["crashes"]) && c > 0
      str += ", crashes: #{c} (last #{elapsed(Time.now.to_i - stats["last_crash_time"])} ago)"
    end
    str
  end
end

.sort_key(hash) ⇒ Object

Sort hash elements by key in ascending order into array of key/value pairs Sort keys numerically if possible, otherwise as is

Parameters

hash(Hash)

Data to be sorted

Return

(Array)

Key/value pairs from hash in key sorted order



204
205
206
# File 'lib/right_support/stats/helpers.rb', line 204

def self.sort_key(hash)
  hash.to_a.map { |k, v| [k =~ /^\d+$/ ? k.to_i : k, v] }.sort
end

.sort_value(hash) ⇒ Object

Sort hash elements by value in ascending order into array of key/value pairs

Parameters

hash(Hash)

Data to be sorted

Return

(Array)

Key/value pairs from hash in value sorted order



215
216
217
# File 'lib/right_support/stats/helpers.rb', line 215

def self.sort_value(hash)
  hash.to_a.sort { |a, b| a[1] <=> b[1] }
end

.stats_str(stats, options = {}) ⇒ Object

Converts server statistics to a displayable format

Parameters

stats(Hash)

Statistics with generic keys “name”, “identity”, “hostname”, “revision”, “service uptime”,

"machine uptime", "memory KB", "stat time", "last reset time", "version", and "brokers" with
"revision", "machine uptime", "memory KB", "version", and "brokers" being optional;
any other keys ending with "stats" have an associated hash value that is displayed in sorted
key order, unless "stats" is preceded by a non-blank, in which case that character is prepended
to the key to drive the sort order
options(Hash)

Formatting options

:name_width(Integer)

Maximum characters in displayed stat name

:sub_name_width(Integer)

Maximum characters in displayed sub-stat name

:sub_stat_value_width(Integer)

Maximum characters in displayed sub-stat value line

Return

(String)

Display string



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/right_support/stats/helpers.rb', line 235

def self.stats_str(stats, options = {})
  name_width = options[:name_width] || MAX_STAT_NAME_WIDTH

  str = stats["name"] ? sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "name", stats["name"]) : ""
  str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "identity", stats["identity"]) +
         sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "hostname", stats["hostname"])
  if stats.has_key?("revision")
    str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "revision", stats["revision"])
  end
  str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "stat time", time_at(stats["stat time"], with_year = true)) +
         sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "last reset", time_at(stats["last reset time"], with_year = true)) +
         sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "service up", service_up_str(stats["service uptime"]))
  if stats.has_key?("machine uptime")
    str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "machine up", elapsed(stats["machine uptime"]))
  end
  if stats.has_key?("memory")
    str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "memory KB", stats["memory"])
  end
  if stats.has_key?("version")
    str += sprintf("%-#{name_width}s#{SEPARATOR}%s\n", "version", stats["version"].to_i)
  end
  if stats.has_key?("brokers")
     str += brokers_str(stats["brokers"], options)
  end
  stats.to_a.sort_by { |(k, v)| k.to_s =~ /(.)stats$/ ? ($1 == ' ' ? '~' : $1) + k : k }.each do |k, v|
    str += sub_stats_str(k[0..-7], v, options) if k.to_s =~ /stats$/
  end
  str
end

.sub_stats_str(name, value, options = {}) ⇒ Object

Convert grouped set of statistics to displayable format Provide special formatting for stats named “exceptions” Break out percentages and total count for stats containing “percent” hash value sorted in descending percent order and followed by total count Convert to elapsed time for stats with name ending in “last” Add “/sec” to values with name ending in “rate” Add “ sec” to values with name ending in “time” Add “%” to values with name ending in “percent” and drop “percent” from name Use elapsed time formatting for values with name ending in “age” Display any nil value, empty hash, or hash with a “total” value of 0 as “none” Display any floating point value or hash of values with at least two significant digits of precision

Parameters

name(String)

Display name for the stat

value(Object)

Value of this stat

options(Hash)

Formatting options

:name_width(Integer)

Fixed width for left-justified name display

:sub_name_width(Integer)

Maximum characters in displayed sub-stat name

:sub_stat_value_width(Integer)

Maximum characters in displayed sub-stat value line

Return

(String)

Single line display of stat



384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
# File 'lib/right_support/stats/helpers.rb', line 384

def self.sub_stats_str(name, value, options = {})
  name_width = options[:name_width] || MAX_STAT_NAME_WIDTH
  sub_name_width = options[:sub_name_width] || MAX_SUB_STAT_NAME_WIDTH
  sub_stat_value_width = options[:sub_stat_value_width] || MAX_SUB_STAT_VALUE_WIDTH

  value_indent = " " * (name_width + SEPARATOR.size)
  sub_value_indent = " " * (name_width + sub_name_width + (SEPARATOR.size * 2))
  sprintf("%-#{name_width}s#{SEPARATOR}", name) + value.to_a.sort.map do |attr|
    k, v = attr
    name = k =~ /percent$/ ? k[0..-9] : k
    sprintf("%-#{sub_name_width}s#{SEPARATOR}", name) + if v.is_a?(Float) || v.is_a?(Integer)
      str = k =~ /age$/ ? elapsed(v) : enough_precision(v)
      str += "/sec" if k =~ /rate$/
      str += " sec" if k =~ /time$/
      str += "%" if k =~ /percent$/
      str
    elsif v.is_a?(Hash)
      if v.empty? || v["total"] == 0
        "none"
      elsif v["total"]
        wrap(activity_str(v), [sub_stat_value_width, sub_stat_value_width + sub_value_indent.size],
             sub_value_indent, ", ")
      elsif k =~ /last$/
        last_activity_str(v)
      elsif k == "exceptions"
        exceptions_str(v, sub_value_indent, options)
      else
        wrap(hash_str(v), [sub_stat_value_width, sub_stat_value_width + sub_value_indent.size],
             sub_value_indent, /, /)
      end
    else
      "#{v || "none"}"
    end + "\n"
  end.join(value_indent)
end

.time_at(time, with_year = false) ⇒ Object

Format time value in local time

Parameters

time(Integer)

Time in seconds in Unix-epoch to be formatted

with_year(Boolean)

Whether to include year, defaults to false

(String)

Formatted time string



188
189
190
191
192
193
194
# File 'lib/right_support/stats/helpers.rb', line 188

def self.time_at(time, with_year = false)
  if with_year
    Time.at(time).strftime("%a %b %d %H:%M:%S %Y")
  else
    Time.at(time).strftime("%a %b %d %H:%M:%S")
  end
end

.wrap(string, max_length, indent, separators) ⇒ Object

Wrap string by breaking it into lines at the specified separators Allow for presence of color encoding when measuring string length

Parameters

string(String)

String to be wrapped

max_length(Integer|Array)

Maximum length of a line, or array containing

maximum length of first line followed by maximum for any subsequent line
including indent
indent(String)

Indentation for each line after first

separators(Regexp)

Separators where string can wrap

Return

(String|Array)

Multi-line string



146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/right_support/stats/helpers.rb', line 146

def self.wrap(string, max_length, indent, separators)
  # Strip color encoding from string
  strip = lambda { |string| string.gsub(/\e\[[0-9]*m/, "") }

  # Split string at specified separators and return an array of arrays
  # containing string segments and associated separator
  split = lambda do |string, separators|
    head, sep, tail = string.partition(separators)
    if tail == ""
      [[head, sep]]
    else
      [[head, sep]].concat(split.call(tail, separators))
    end
  end

  all = []
  line = ["", last_sep = ""]
  limit = max_length.is_a?(Array) ? max_length[0] : max_length
  length = 0
  separators = /#{separators}/ if separators.is_a?(String)
  split.call(string, separators).each do |str, sep|
    if (length + strip.call(str).size + last_sep.size + sep.size) > limit
      all.push(line) unless line[0] == ""
      line = [indent, last_sep = ""]
      length = indent.size
      limit = max_length.is_a?(Array) ? max_length[1] : max_length
    end
    line[0] += (str = last_sep + str)
    line[1] = last_sep = sep
    length += strip.call(str).size
  end
  all.push(line)
  all[0..-2].inject("") { |a, (str, sep)| a + str + sep + "\n" } + all[-1][0]
end