# frozen_string_literal: true # This class sets creates the performance graphs for each authority during day, month, and year time periods for fetch and search actions. module QaServer class PerformanceGraphingService class << self include QaServer::PerformanceHistoryDataKeys include QaServer::MonitorStatus::GruffGraph class_attribute :authority_list_class self.authority_list_class = QaServer::AuthorityListerService # @param performance_data [Hash] hash of all performance data for all authorities # @see QaServer:PerformanceHistory def create_performance_graphs(performance_data:) performance_data.each_key do |auth_name| create_graphs_for_authority(performance_data, auth_name.to_sym, :search) create_graphs_for_authority(performance_data, auth_name.to_sym, :fetch) create_graphs_for_authority(performance_data, auth_name.to_sym, :all_actions) end end # @param authority_name [String] name of the authority # @param action [Symbol] action performed by the request (e.g. :search, :fetch, :all_actions) # @param time_period [Symbol] time period for the graph (i.e. :day, :month, :year) def performance_graph_file(authority_name: ALL_AUTH, action:, time_period:) File.join(graph_relative_path, graph_filename(authority_name, action, time_period)) end private def create_graphs_for_authority(performance_data, authority_name, action) create_performance_for_day_graph(performance_data, authority_name, action) create_performance_for_month_graph(performance_data, authority_name, action) create_performance_for_year_graph(performance_data, authority_name, action) end def create_performance_for_day_graph(performance_data, authority_name, action) auth_data = authority_performance_data(performance_data, authority_name) return unless auth_data gruff_data = rework_performance_data_for_gruff(auth_data[action][FOR_DAY], BY_HOUR) create_gruff_graph(gruff_data, performance_for_day_graph_full_path(authority_name, action), I18n.t('qa_server.monitor_status.performance.x_axis_hour')) end def create_performance_for_month_graph(performance_data, authority_name, action) auth_data = authority_performance_data(performance_data, authority_name) gruff_data = rework_performance_data_for_gruff(auth_data[action][FOR_MONTH], BY_DAY) create_gruff_graph(gruff_data, performance_for_month_graph_full_path(authority_name, action), I18n.t('qa_server.monitor_status.performance.x_axis_day')) end def create_performance_for_year_graph(performance_data, authority_name, action) auth_data = authority_performance_data(performance_data, authority_name) gruff_data = rework_performance_data_for_gruff(auth_data[action][FOR_YEAR], BY_MONTH) create_gruff_graph(gruff_data, performance_for_year_graph_full_path(authority_name, action), I18n.t('qa_server.monitor_status.performance.x_axis_month')) end def authority_performance_data(data, authority_name) auth_name = authority_name.nil? ? ALL_AUTH : authority_name data[auth_name] end def performance_for_day_graph_full_path(authority_name, action) graph_full_path(graph_filename(authority_name, action, :day)) end def performance_for_month_graph_full_path(authority_name, action) graph_full_path(graph_filename(authority_name, action, :month)) end def performance_for_year_graph_full_path(authority_name, action) graph_full_path(graph_filename(authority_name, action, :year)) end def graph_filename(authority_name, action, time_period) "performance_of_#{authority_name}_#{action}_for_#{time_period}_graph.png" end def rework_performance_data_for_gruff(performance_data, label_key) labels = {} # full_load_data = [] retrieve_data = [] graph_load_data = [] normalization_data = [] performance_data.each do |i, data| labels[i] = data[label_key] retrieve_data << data[STATS][AVG_RETR] graph_load_data << graph_load_time(data) normalization_data << data[STATS][AVG_NORM] end [labels, normalization_data, graph_load_data, retrieve_data] end def graph_load_time(data) # For some sense of backward compatibility and to avoid losing the usefulness of previously collected data, # create the graph using the old :load stat when both :retrieve and :graph_load are 0. If the value truly # is 0, then :load will also be 0. # NOTE: It's ok to use AVG_RETR for the retrieve data point because it is 0. # rubocop:disable Style/TernaryParentheses (data[STATS][AVG_RETR].zero? && data[STATS][AVG_GRPH].zero?) ? data[STATS][AVG_LOAD] : data[STATS][AVG_GRPH] # rubocop:enable Style/TernaryParentheses end def performance_graph_theme(g, x_axis_label) g.theme_pastel g.colors = [QaServer.config.performance_normalization_color, QaServer.config.performance_graph_load_color, QaServer.config.performance_retrieve_color] g.marker_font_size = 12 g.x_axis_increment = 10 g.x_axis_label = x_axis_label g.y_axis_label = I18n.t('qa_server.monitor_status.performance.y_axis_ms') g.minimum_value = 0 g.maximum_value = QaServer.config.performance_y_axis_max end def create_gruff_graph(performance_data, performance_graph_full_path, x_axis_label) g = Gruff::StackedBar.new performance_graph_theme(g, x_axis_label) g.labels = performance_data[0] g.data(I18n.t('qa_server.monitor_status.performance.normalization_time_ms'), performance_data[1]) g.data(I18n.t('qa_server.monitor_status.performance.graph_load_time_ms'), performance_data[2]) g.data(I18n.t('qa_server.monitor_status.performance.retrieve_time_ms'), performance_data[3]) g.write performance_graph_full_path end end end end