resque-cloudwatch-metrics 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +48 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/resque-cloudwatch-metrics +5 -0
- data/lib/resque/cloudwatch/metrics/version.rb +9 -0
- data/lib/resque/cloudwatch/metrics.rb +138 -0
- data/resque-cloudwatch-metrics.gemspec +30 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a8eb5f6b8c5444de892c7c310384f6a7b4aaf02b
|
4
|
+
data.tar.gz: bee349c2d915e0f8ad874e303062f0a800e23000
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c5e42d49fb5bab5f32531a0c80e2a59ba8d94dc1704378d0d010896b6768fa2fd316f40311682f975eacc8dfaf92adc9fb5ee613d8bb6d5cef2bbb0f224b1c91
|
7
|
+
data.tar.gz: 02ea0c7f59ce26fa7ddca67ab2156dc096cda770ffe1712d05e334d5ddf14991ce8bf0f16489e01be2bd0f482daf4579239f09e0ee651e6a586fa0cef2f3b5bf
|
data/.gitignore
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at m.ishihara@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Masaki Takeuchi
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
# Resque::CloudWatch::Metrics
|
2
|
+
|
3
|
+
Send Resque.info to CloudWatch Metrics
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'resque-cloudwatch-metrics'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install resque-cloudwatch-metrics
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
```
|
24
|
+
Usage: resque-cloudwatch-metrics [options]
|
25
|
+
-h, --host <host>
|
26
|
+
-p, --port <port>
|
27
|
+
-s, --socket <socket>
|
28
|
+
-a, --password <password>
|
29
|
+
-n, --db <db>
|
30
|
+
--url <url>
|
31
|
+
--redis-namespace <namespace>
|
32
|
+
--cw-namespace <namespace>
|
33
|
+
-i, --interval <interval>
|
34
|
+
```
|
35
|
+
|
36
|
+
## Development
|
37
|
+
|
38
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
39
|
+
|
40
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
41
|
+
|
42
|
+
## Contributing
|
43
|
+
|
44
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/m4i/resque-cloudwatch-metrics. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
45
|
+
|
46
|
+
## License
|
47
|
+
|
48
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "resque/cloudwatch/metrics"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'resque/cloudwatch/metrics/version'
|
4
|
+
require 'optparse'
|
5
|
+
require 'aws-sdk-core'
|
6
|
+
require 'resque'
|
7
|
+
|
8
|
+
module Resque
|
9
|
+
module CloudWatch
|
10
|
+
class Metrics
|
11
|
+
DEFAULT_CW_NAMESPACE = 'Resque'
|
12
|
+
|
13
|
+
# http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html
|
14
|
+
MAX_METRIC_DATA_PER_PUT = 20
|
15
|
+
|
16
|
+
class << self
|
17
|
+
def run(args)
|
18
|
+
new(parse_arguments(args)).run
|
19
|
+
end
|
20
|
+
|
21
|
+
def parse_arguments(args)
|
22
|
+
options = {}
|
23
|
+
redis = {}
|
24
|
+
|
25
|
+
opt = OptionParser.new
|
26
|
+
opt.on('-h', '--host <host>') { |v| redis[:host] = v }
|
27
|
+
opt.on('-p', '--port <port>') { |v| redis[:port] = v }
|
28
|
+
opt.on('-s', '--socket <socket>') { |v| redis[:path] = v }
|
29
|
+
opt.on('-a', '--password <password>') { |v| redis[:password] = v }
|
30
|
+
opt.on('-n', '--db <db>') { |v| redis[:db] = v }
|
31
|
+
opt.on('--url <url>') { |v| options[:redis] = v }
|
32
|
+
opt.on('--redis-namespace <namespace>') { |v| options[:redis_namespace] = v }
|
33
|
+
opt.on('--cw-namespace <namespace>') { |v| options[:cw_namespace] = v }
|
34
|
+
opt.on('-i', '--interval <interval>') { |v| options[:interval] = v.to_f }
|
35
|
+
opt.parse(args)
|
36
|
+
|
37
|
+
options[:redis] ||= redis unless redis.empty?
|
38
|
+
options
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def initialize(redis: nil,
|
43
|
+
redis_namespace: nil,
|
44
|
+
interval: nil,
|
45
|
+
cw_namespace: DEFAULT_CW_NAMESPACE)
|
46
|
+
Resque.redis = redis if redis
|
47
|
+
@redis_namespace = redis_namespace
|
48
|
+
@interval = interval
|
49
|
+
@cw_namespace = cw_namespace
|
50
|
+
|
51
|
+
@mutex = Mutex.new
|
52
|
+
end
|
53
|
+
|
54
|
+
def run
|
55
|
+
if @interval
|
56
|
+
loop do
|
57
|
+
thread = Thread.start { run_once }
|
58
|
+
thread.abort_on_exception = true
|
59
|
+
sleep @interval
|
60
|
+
end
|
61
|
+
else
|
62
|
+
run_once
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
private
|
67
|
+
|
68
|
+
def run_once
|
69
|
+
now, infos = @mutex.synchronize { [Time.now, get_infos] }
|
70
|
+
put_metric_data(infos.flat_map { |args| build_metric_data(now, *args) })
|
71
|
+
end
|
72
|
+
|
73
|
+
def get_infos
|
74
|
+
redis_namespaces.map do |redis_namespace|
|
75
|
+
Resque.redis.namespace = redis_namespace
|
76
|
+
[
|
77
|
+
redis_namespace,
|
78
|
+
Resque.info,
|
79
|
+
Resque.queues.map { |name| [name, Resque.size(name)] },
|
80
|
+
]
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def redis_namespaces
|
85
|
+
if @redis_namespace
|
86
|
+
if @redis_namespace.include?('*')
|
87
|
+
suffix = ':queues'
|
88
|
+
Resque.redis.redis.keys(@redis_namespace + suffix).map do |key|
|
89
|
+
key[0 ... - suffix.length].to_sym
|
90
|
+
end
|
91
|
+
else
|
92
|
+
[@redis_namespace.to_sym]
|
93
|
+
end
|
94
|
+
else
|
95
|
+
[Resque.redis.namespace]
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
def build_metric_data(timestamp, redis_namespace, info, queue_sizes)
|
100
|
+
dimensions = [{ name: 'namespace', value: redis_namespace.to_s }]
|
101
|
+
|
102
|
+
%i(pending processed failed queues workers working).map do |key|
|
103
|
+
{
|
104
|
+
metric_name: key.to_s.capitalize,
|
105
|
+
dimensions: dimensions,
|
106
|
+
timestamp: timestamp,
|
107
|
+
value: info[key],
|
108
|
+
unit: 'Count',
|
109
|
+
}
|
110
|
+
end +
|
111
|
+
queue_sizes.map do |name, size|
|
112
|
+
{
|
113
|
+
metric_name: 'Pending',
|
114
|
+
dimensions: dimensions + [{ name: 'queue', value: name }],
|
115
|
+
timestamp: timestamp,
|
116
|
+
value: size,
|
117
|
+
unit: 'Count',
|
118
|
+
}
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
def put_metric_data(metric_data)
|
123
|
+
metric_data.each_slice(MAX_METRIC_DATA_PER_PUT).map do |data|
|
124
|
+
Thread.start(data) do |data|
|
125
|
+
cloudwatch.put_metric_data(
|
126
|
+
namespace: @cw_namespace,
|
127
|
+
metric_data: data,
|
128
|
+
)
|
129
|
+
end
|
130
|
+
end.each(&:join)
|
131
|
+
end
|
132
|
+
|
133
|
+
def cloudwatch
|
134
|
+
@_cloudwatch ||= Aws::CloudWatch::Client.new
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'resque/cloudwatch/metrics/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "resque-cloudwatch-metrics"
|
8
|
+
spec.version = Resque::CloudWatch::Metrics::VERSION
|
9
|
+
spec.authors = ["Masaki Takeuchi"]
|
10
|
+
spec.email = ["m.ishihara@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Send Resque.info to CloudWatch Metrics}
|
13
|
+
spec.homepage = 'https://github.com/m4i/resque-cloudwatch-metrics'
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.required_ruby_version = '>= 2.0'
|
24
|
+
|
25
|
+
spec.add_dependency 'aws-sdk-core', '~> 2'
|
26
|
+
spec.add_dependency 'resque', '~> 1'
|
27
|
+
|
28
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
29
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: resque-cloudwatch-metrics
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Masaki Takeuchi
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-12-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: resque
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.13'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.13'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rake
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '10.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '10.0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- m.ishihara@gmail.com
|
72
|
+
executables:
|
73
|
+
- resque-cloudwatch-metrics
|
74
|
+
extensions: []
|
75
|
+
extra_rdoc_files: []
|
76
|
+
files:
|
77
|
+
- ".gitignore"
|
78
|
+
- CODE_OF_CONDUCT.md
|
79
|
+
- Gemfile
|
80
|
+
- LICENSE.txt
|
81
|
+
- README.md
|
82
|
+
- Rakefile
|
83
|
+
- bin/console
|
84
|
+
- bin/setup
|
85
|
+
- exe/resque-cloudwatch-metrics
|
86
|
+
- lib/resque/cloudwatch/metrics.rb
|
87
|
+
- lib/resque/cloudwatch/metrics/version.rb
|
88
|
+
- resque-cloudwatch-metrics.gemspec
|
89
|
+
homepage: https://github.com/m4i/resque-cloudwatch-metrics
|
90
|
+
licenses:
|
91
|
+
- MIT
|
92
|
+
metadata: {}
|
93
|
+
post_install_message:
|
94
|
+
rdoc_options: []
|
95
|
+
require_paths:
|
96
|
+
- lib
|
97
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
requirements:
|
99
|
+
- - ">="
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '2.0'
|
102
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
104
|
+
- - ">="
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
version: '0'
|
107
|
+
requirements: []
|
108
|
+
rubyforge_project:
|
109
|
+
rubygems_version: 2.5.2
|
110
|
+
signing_key:
|
111
|
+
specification_version: 4
|
112
|
+
summary: Send Resque.info to CloudWatch Metrics
|
113
|
+
test_files: []
|