Class: QaServer::PerformancePerByteDataService

Inherits:
Object
  • Object
show all
Extended by:
PerformanceHistoryDataKeys
Defined in:
app/services/qa_server/performance_per_byte_data_service.rb

Constant Summary

Constants included from PerformanceHistoryDataKeys

QaServer::PerformanceHistoryDataKeys::ALL_ACTIONS, QaServer::PerformanceHistoryDataKeys::ALL_AUTH, QaServer::PerformanceHistoryDataKeys::AVG_ACTN, QaServer::PerformanceHistoryDataKeys::AVG_FULL, QaServer::PerformanceHistoryDataKeys::AVG_GRPH, QaServer::PerformanceHistoryDataKeys::AVG_LOAD, QaServer::PerformanceHistoryDataKeys::AVG_NORM, QaServer::PerformanceHistoryDataKeys::AVG_RETR, QaServer::PerformanceHistoryDataKeys::BPMS_GRPH, QaServer::PerformanceHistoryDataKeys::BPMS_NORM, QaServer::PerformanceHistoryDataKeys::BPMS_RETR, QaServer::PerformanceHistoryDataKeys::BY_DAY, QaServer::PerformanceHistoryDataKeys::BY_HOUR, QaServer::PerformanceHistoryDataKeys::BY_MONTH, QaServer::PerformanceHistoryDataKeys::FETCH, QaServer::PerformanceHistoryDataKeys::FOR_DATATABLE, QaServer::PerformanceHistoryDataKeys::FOR_DAY, QaServer::PerformanceHistoryDataKeys::FOR_MONTH, QaServer::PerformanceHistoryDataKeys::FOR_YEAR, QaServer::PerformanceHistoryDataKeys::HIGH_ACTN, QaServer::PerformanceHistoryDataKeys::HIGH_FULL, QaServer::PerformanceHistoryDataKeys::HIGH_GRPH, QaServer::PerformanceHistoryDataKeys::HIGH_LOAD, QaServer::PerformanceHistoryDataKeys::HIGH_NORM, QaServer::PerformanceHistoryDataKeys::HIGH_RETR, QaServer::PerformanceHistoryDataKeys::LOW_ACTN, QaServer::PerformanceHistoryDataKeys::LOW_FULL, QaServer::PerformanceHistoryDataKeys::LOW_GRPH, QaServer::PerformanceHistoryDataKeys::LOW_LOAD, QaServer::PerformanceHistoryDataKeys::LOW_NORM, QaServer::PerformanceHistoryDataKeys::LOW_RETR, QaServer::PerformanceHistoryDataKeys::MSPB_GRPH, QaServer::PerformanceHistoryDataKeys::MSPB_NORM, QaServer::PerformanceHistoryDataKeys::MSPB_RETR, QaServer::PerformanceHistoryDataKeys::SEARCH, QaServer::PerformanceHistoryDataKeys::SRC_BYTES, QaServer::PerformanceHistoryDataKeys::STATS

Class Method Summary collapse

Class Method Details

.calculate(authority_name:, action:, n: 10) ⇒ Object

Performance data based on size of data.

Examples:

returns for n=2

{ data_raw_bytes_from_source: [16271, 16271],
  retrieve_bytes_per_ms: [67.24433786890475, 55.51210410757532],
  retrieve_ms_per_byte: [0.014871140555351083, 0.018014089288745542]
  graph_load_bytes_per_ms_ms: [86.74089418722461, 54.97464153778724],
  graph_load_ms_per_byte: [0.011528587632974647, 0.018190205011389522],
  normalization_bytes_per_ms: [64.70169466560836, 89.25337465693322],
  normalization_ms_per_byte: [0.01530700843338457, 0.015455545718983178]
}

Parameters:

  • authority_name (String)

    name of an authority

  • action (Symbol)

    :search, :fetch, or :all_actions

  • n (Integer) (defaults to: 10)

    calculate stats for last n records



26
27
28
29
# File 'app/services/qa_server/performance_per_byte_data_service.rb', line 26

def calculate(authority_name:, action:, n: 10)
  records = records_by(authority_name, action)
  stats_calculator_class.new(records: records, n: n).calculate
end