Class: Prometheus::Client::Rack::Exporter

Inherits:
Object
  • Object
show all
Defined in:
lib/prometheus/client/rack/exporter.rb

Overview

Exporter is a Rack middleware that provides a sample implementation of a HTTP tracer. The default label builder can be modified to export a differet set of labels per recorded metric.

Constant Summary collapse

FORMATS =
[Formats::Text, Formats::JSON]
FALLBACK =
Formats::JSON

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(app, options = {}) ⇒ Exporter

Returns a new instance of Exporter.



19
20
21
22
23
24
# File 'lib/prometheus/client/rack/exporter.rb', line 19

def initialize(app, options = {})
  @app = app
  @registry = options[:registry] || Client.registry
  @path = options[:path] || '/metrics'
  @acceptable = build_dictionary(FORMATS, FALLBACK)
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



14
15
16
# File 'lib/prometheus/client/rack/exporter.rb', line 14

def app
  @app
end

#pathObject (readonly)

Returns the value of attribute path.



14
15
16
# File 'lib/prometheus/client/rack/exporter.rb', line 14

def path
  @path
end

#registryObject (readonly)

Returns the value of attribute registry.



14
15
16
# File 'lib/prometheus/client/rack/exporter.rb', line 14

def registry
  @registry
end

Instance Method Details

#call(env) ⇒ Object



26
27
28
29
30
31
32
33
# File 'lib/prometheus/client/rack/exporter.rb', line 26

def call(env)
  if env['PATH_INFO'] == @path
    format = negotiate(env['HTTP_ACCEPT'], @acceptable)
    format ? respond_with(format) : not_acceptable(FORMATS)
  else
    @app.call(env)
  end
end