Sha256: 4607973068d4ad81c9f2f4bafddb7a9b76ef9b6c055219542fe2fa29191183d4

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

# custom type collector for prometheus_exporter for handling the metrics sent from
# PrometheusExporter::Instrumentation::Unicorn
class PrometheusExporter::Server::UnicornCollector < PrometheusExporter::Server::TypeCollector
  MAX_UNICORN_METRIC_AGE = 60

  UNICORN_GAUGES = {
    workers_total: 'Number of unicorn workers.',
    active_workers_total: 'Number of active unicorn workers',
    request_backlog_total: 'Number of requests waiting to be processed by a unicorn worker.'
  }.freeze

  def initialize
    @unicorn_metrics = []
  end

  def type
    'unicorn'
  end

  def metrics
    return [] if @unicorn_metrics.length.zero?

    metrics = {}

    @unicorn_metrics.map do |m|
      UNICORN_GAUGES.map do |k, help|
        k = k.to_s
        if (v = m[k])
          g = metrics[k] ||= PrometheusExporter::Metric::Gauge.new("unicorn_#{k}", help)
          g.observe(v)
        end
      end
    end

    metrics.values
  end

  def collect(obj)
    now = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
    obj["created_at"] = now
    @unicorn_metrics.delete_if { |m| m['created_at'] + MAX_UNICORN_METRIC_AGE < now }
    @unicorn_metrics << obj
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prometheus_exporter-0.4.14 lib/prometheus_exporter/server/unicorn_collector.rb
prometheus_exporter-0.4.13 lib/prometheus_exporter/server/unicorn_collector.rb