Class: SelectRailsLog::Printer::HistgramPrinter

Inherits:
BasePrinter show all
Defined in:
lib/select_rails_log/printer/histgram_printer.rb

Constant Summary collapse

PLOT_TOTAL_DURATION =
"Total duration"

Constants included from Constants

Constants::ACTION, Constants::CLIENT, Constants::COMPLETED, Constants::CONTROLLER, Constants::DEBUG, Constants::DEFAULT_OUTPUT, Constants::DURATION, Constants::HTTP_METHOD, Constants::HTTP_STATUS, Constants::ID, Constants::INTERVAL, Constants::LOGS, Constants::MESSAGE, Constants::PARAMETERS, Constants::PATH, Constants::PERFORMANCE, Constants::PERFORMANCE_ACTIVE_RECORD, Constants::PERFORMANCE_ALLOCATIONS, Constants::PERFORMANCE_VIEWS, Constants::PID, Constants::RAW_LOGS, Constants::REQUEST_ID, Constants::SEVERITY, Constants::STARTED, Constants::TIME

Instance Attribute Summary

Attributes inherited from Extension

#options

Instance Method Summary collapse

Methods inherited from BasePrinter

#output_directory?, #output_stdout?, #print, #runnable?

Methods inherited from Extension

option_initializers, #runnable?

Constructor Details

#initializeHistgramPrinter

Returns a new instance of HistgramPrinter.



15
16
17
18
19
# File 'lib/select_rails_log/printer/histgram_printer.rb', line 15

def initialize(*)
  super

  @plot_data = []
end

Instance Method Details

#closeObject



21
22
23
24
# File 'lib/select_rails_log/printer/histgram_printer.rb', line 21

def close
  print_plot
  super
end