Class: Prometheus::Client::Push
- Inherits:
-
Object
- Object
- Prometheus::Client::Push
- Defined in:
- lib/prometheus/client/push.rb
Overview
Push implements a simple way to transmit a given registry to a given Pushgateway.
Constant Summary collapse
- DEFAULT_GATEWAY =
'http://localhost:9091'
- PATH =
'/metrics/jobs/%s'
- INSTANCE_PATH =
'/metrics/jobs/%s/instances/%s'
- HEADER =
{ 'Content-Type' => Formats::Text::CONTENT_TYPE }
Instance Attribute Summary collapse
-
#gateway ⇒ Object
readonly
Returns the value of attribute gateway.
-
#instance ⇒ Object
readonly
Returns the value of attribute instance.
-
#job ⇒ Object
readonly
Returns the value of attribute job.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #add(registry) ⇒ Object
-
#initialize(job, instance = nil, gateway = nil) ⇒ Push
constructor
A new instance of Push.
- #replace(registry) ⇒ Object
Constructor Details
#initialize(job, instance = nil, gateway = nil) ⇒ Push
Returns a new instance of Push.
22 23 24 25 26 27 28 29 |
# File 'lib/prometheus/client/push.rb', line 22 def initialize(job, instance = nil, gateway = nil) @job = job @instance = instance @gateway = gateway || DEFAULT_GATEWAY @uri = parse(@gateway) @path = build_path(job, instance) @http = Net::HTTP.new(@uri.host, @uri.port) end |
Instance Attribute Details
#gateway ⇒ Object (readonly)
Returns the value of attribute gateway.
20 21 22 |
# File 'lib/prometheus/client/push.rb', line 20 def gateway @gateway end |
#instance ⇒ Object (readonly)
Returns the value of attribute instance.
20 21 22 |
# File 'lib/prometheus/client/push.rb', line 20 def instance @instance end |
#job ⇒ Object (readonly)
Returns the value of attribute job.
20 21 22 |
# File 'lib/prometheus/client/push.rb', line 20 def job @job end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
20 21 22 |
# File 'lib/prometheus/client/push.rb', line 20 def path @path end |
Instance Method Details
#add(registry) ⇒ Object
31 32 33 |
# File 'lib/prometheus/client/push.rb', line 31 def add(registry) request('POST', registry) end |
#replace(registry) ⇒ Object
35 36 37 |
# File 'lib/prometheus/client/push.rb', line 35 def replace(registry) request('PUT', registry) end |