Class: Autoscaler::HerokuScaler
- Inherits:
-
Object
- Object
- Autoscaler::HerokuScaler
- Defined in:
- lib/autoscaler/heroku_scaler.rb
Overview
Wraps the Heroku API to provide just the interface that we need for scaling.
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#exception_handler ⇒ Object
writeonly
Callable object which responds to exceptions during api calls.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(type = 'worker', key = ENV['HEROKU_API_KEY'], app = ENV['HEROKU_APP']) ⇒ HerokuScaler
constructor
A new instance of HerokuScaler.
-
#workers ⇒ Numeric
Read the current worker count (value may be cached).
-
#workers=(n) ⇒ Object
Set the number of workers (noop if workers the same).
Constructor Details
#initialize(type = 'worker', key = ENV['HEROKU_API_KEY'], app = ENV['HEROKU_APP']) ⇒ HerokuScaler
Returns a new instance of HerokuScaler.
9 10 11 12 13 14 15 16 17 18 |
# File 'lib/autoscaler/heroku_scaler.rb', line 9 def initialize( type = 'worker', key = ENV['HEROKU_API_KEY'], app = ENV['HEROKU_APP']) @client = Heroku::API.new(:api_key => key) @type = type @app = app @workers = 0 @known = Time.now - 1 end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app.
20 21 22 |
# File 'lib/autoscaler/heroku_scaler.rb', line 20 def app @app end |
#exception_handler=(value) ⇒ Object
Callable object which responds to exceptions during api calls
53 54 55 |
# File 'lib/autoscaler/heroku_scaler.rb', line 53 def exception_handler=(value) @exception_handler = value end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
21 22 23 |
# File 'lib/autoscaler/heroku_scaler.rb', line 21 def type @type end |
Instance Method Details
#workers ⇒ Numeric
Read the current worker count (value may be cached)
25 26 27 28 29 30 31 |
# File 'lib/autoscaler/heroku_scaler.rb', line 25 def workers if known? @workers else know heroku_get_workers end end |
#workers=(n) ⇒ Object
Set the number of workers (noop if workers the same)
35 36 37 38 39 40 41 |
# File 'lib/autoscaler/heroku_scaler.rb', line 35 def workers=(n) if n != @workers || !known? p "Scaling #{type} to #{n}" heroku_set_workers(n) know n end end |