-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from avalonmediasystem/resque
Resque and ResqueScheduler
- Loading branch information
Showing
4 changed files
with
100 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright 2011-2013, The Trustees of Indiana University and Northwestern | ||
# University. Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed | ||
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
# CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations under the License. | ||
# --- END LICENSE_HEADER BLOCK --- | ||
|
||
module Avalon | ||
module About | ||
class Resque < AboutPage::Configuration::Node | ||
render_with 'generic_hash' | ||
|
||
validates_each :connected? do |record, attr, value| | ||
record.errors.add attr, ": Resque.redis.ping did not return 'PONG'" unless value | ||
end | ||
|
||
def initialize(resque) | ||
@resque = resque | ||
end | ||
|
||
def connected? | ||
@resque.redis.ping == "PONG" | ||
rescue | ||
false | ||
end | ||
|
||
def to_h | ||
@resque.info | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2011-2013, The Trustees of Indiana University and Northwestern | ||
# University. Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software distributed | ||
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
# CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations under the License. | ||
# --- END LICENSE_HEADER BLOCK --- | ||
|
||
module Avalon | ||
module About | ||
class ResqueScheduler < AboutPage::Configuration::Node | ||
render_with 'generic_hash' | ||
|
||
validates_each :reachable? do |record, attr, value| | ||
record.errors.add attr, " == false" unless value | ||
end | ||
|
||
def initialize(resque_scheduler) | ||
@resque_scheduler = resque_scheduler | ||
@resque = @resque_scheduler.parent | ||
end | ||
|
||
def reachable? | ||
!@resque.redis.get(@resque_scheduler.master_lock.key).nil? | ||
rescue | ||
false | ||
end | ||
|
||
def to_h | ||
{ | ||
'server environment' => @resque_scheduler.env, | ||
'current master' => @resque_scheduler.master_lock.value | ||
} | ||
rescue | ||
{} | ||
end | ||
end | ||
end | ||
end |