Class: GitLab::Exporter::Database::RowCountProber

Inherits:
Object
  • Object
show all
Defined in:
lib/gitlab_exporter/database/row_count.rb

Overview

The prober which is called when gathering metrics

Instance Method Summary collapse

Constructor Details

#initialize(metrics: PrometheusMetrics.new, **opts) ⇒ RowCountProber

Returns a new instance of RowCountProber.



336
337
338
339
# File 'lib/gitlab_exporter/database/row_count.rb', line 336

def initialize(metrics: PrometheusMetrics.new, **opts)
  @metrics = metrics
  @collector = RowCountCollector.new(**opts)
end

Instance Method Details

#probe_dbObject



341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'lib/gitlab_exporter/database/row_count.rb', line 341

def probe_db
  results = @collector.run
  results.each do |query_name, result|
    labels = { query_name: query_name.to_s }
    result.each do |row|
      @metrics.add("gitlab_database_rows", row[:count].to_f, **labels, **row[:labels])
    end
  end

  self
rescue PG::ConnectionBad
  self
end

#write_to(target) ⇒ Object



355
356
357
# File 'lib/gitlab_exporter/database/row_count.rb', line 355

def write_to(target)
  target.write(@metrics.to_s)
end