Sha256: 694563ec111ae1984fcd9399d1c93ac5851697e6fc65d26b30690b4d8e0eb8a6

Contents?: true

Size: 1.44 KB

Versions: 46

Compression:

Stored size: 1.44 KB

Contents

# Copyright (c) 2010-2017 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

module GoodData
  module Rest
    # class is responsible for storage and aggregation of REST calls information
    module Aggregator
      attr_reader :store

      def initialize_store
        @store = {}
      end

      def clear_store
        @store.clear
      end

      def update_store(domain, method, duration, endpoint)
        domain = domain.to_sym
        method = method.to_sym
        endpoint = endpoint.to_sym
        @store[domain] = {} unless @store.key?(domain)
        @store[domain][method] = {} unless @store[domain].key?(method)
        if @store[domain][method].key?(endpoint)
          record = @store[domain][method][endpoint]
          record[:min] = [duration, record[:min]].min
          record[:max] = [duration, record[:max]].max
          record[:avg] = (record[:avg] * record[:count] + duration).to_f / (record[:count] + 1)
          record[:count] += 1
          @store[domain][method][endpoint] = record
        else
          @store[domain][method][endpoint] = {
            :min => duration,
            :max => duration,
            :avg => duration,
            :count => 1,
            :method => method.to_s,
            :endpoint => endpoint.to_s,
            :domain => domain.to_s
          }
        end
      end
    end
  end
end

Version data entries

46 entries across 46 versions & 1 rubygems

Version Path
gooddata-2.1.10-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.10 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.9-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.9 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.8-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.8 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.7-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.7 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.6-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.6 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.5-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.5 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.4-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.4 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.3-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.3 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.2-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.2 lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.1-java lib/gooddata/rest/rest_aggregator.rb
gooddata-2.1.1 lib/gooddata/rest/rest_aggregator.rb