mysql-statsd 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +19 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +13 -0
- data/Rakefile +1 -0
- data/bin/mysql-statsd +6 -0
- data/config.yml.sample +8 -0
- data/lib/mysql-statsd/version.rb +5 -0
- data/lib/mysql-statsd.rb +36 -0
- data/mysql-statsd.gemspec +24 -0
- data/spec/runner_spec.rb +25 -0
- metadata +106 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Digital Pages
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/mysql-statsd
ADDED
data/config.yml.sample
ADDED
data/lib/mysql-statsd.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require "mysql-statsd/version"
|
2
|
+
require 'yaml'
|
3
|
+
require 'mysql2'
|
4
|
+
require 'statsd-ruby'
|
5
|
+
|
6
|
+
module Mysql
|
7
|
+
module Statsd
|
8
|
+
class Runner
|
9
|
+
attr_reader :config
|
10
|
+
|
11
|
+
def initialize(config_path)
|
12
|
+
@config ||= YAML.load_file config_path
|
13
|
+
end
|
14
|
+
|
15
|
+
def run!
|
16
|
+
statuses.each do |status|
|
17
|
+
statsd.gauge status["Variable_name"].downcase, status["Value"]
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def statsd
|
22
|
+
@statsd ||= ::Statsd.new(config['statsd']['host']).tap { |sd| sd.namespace = config['statsd']['namespace'] }
|
23
|
+
end
|
24
|
+
|
25
|
+
def mysql
|
26
|
+
@mysql ||= Mysql2::Client.new config['mysql']
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def statuses
|
32
|
+
mysql.query "SHOW GLOBAL STATUS"
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mysql-statsd/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "mysql-statsd"
|
8
|
+
gem.version = Mysql::Statsd::VERSION
|
9
|
+
gem.authors = ["Diego Carrion"]
|
10
|
+
gem.email = ["dc.rec1@gmail.com"]
|
11
|
+
gem.description = %q{Picks data from MySQL and sends it to StatsD}
|
12
|
+
gem.summary = %q{Picks data from MySQL and sends it to StatsD}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.add_development_dependency "rspec"
|
16
|
+
|
17
|
+
gem.add_dependency "mysql2"
|
18
|
+
gem.add_dependency "statsd-ruby"
|
19
|
+
|
20
|
+
gem.files = `git ls-files`.split($/)
|
21
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
22
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
23
|
+
gem.require_paths = ["lib"]
|
24
|
+
end
|
data/spec/runner_spec.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require 'mysql-statsd'
|
2
|
+
|
3
|
+
describe Mysql::Statsd::Runner do
|
4
|
+
subject { Mysql::Statsd::Runner.new "spec/config.yml" }
|
5
|
+
|
6
|
+
before :each do
|
7
|
+
Mysql2::Client.any_instance.stub :connect
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should set the statsd namespace as mysql" do
|
11
|
+
subject.statsd.namespace.should == 'ns'
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should set the statds host from the config file" do
|
15
|
+
subject.statsd.host.should == 'statsdhost'
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should set the mysql host from the config file" do
|
19
|
+
subject.mysql.query_options[:host].should == 'mysqlhost'
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should set the mysql user from the config file" do
|
23
|
+
subject.mysql.query_options[:username].should == 'user'
|
24
|
+
end
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mysql-statsd
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Diego Carrion
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-09-04 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: mysql2
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: statsd-ruby
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
description: Picks data from MySQL and sends it to StatsD
|
63
|
+
email:
|
64
|
+
- dc.rec1@gmail.com
|
65
|
+
executables:
|
66
|
+
- mysql-statsd
|
67
|
+
extensions: []
|
68
|
+
extra_rdoc_files: []
|
69
|
+
files:
|
70
|
+
- .gitignore
|
71
|
+
- Gemfile
|
72
|
+
- LICENSE.txt
|
73
|
+
- README.md
|
74
|
+
- Rakefile
|
75
|
+
- bin/mysql-statsd
|
76
|
+
- config.yml.sample
|
77
|
+
- lib/mysql-statsd.rb
|
78
|
+
- lib/mysql-statsd/version.rb
|
79
|
+
- mysql-statsd.gemspec
|
80
|
+
- spec/runner_spec.rb
|
81
|
+
homepage: ''
|
82
|
+
licenses: []
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
none: false
|
89
|
+
requirements:
|
90
|
+
- - ! '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
95
|
+
requirements:
|
96
|
+
- - ! '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
requirements: []
|
100
|
+
rubyforge_project:
|
101
|
+
rubygems_version: 1.8.24
|
102
|
+
signing_key:
|
103
|
+
specification_version: 3
|
104
|
+
summary: Picks data from MySQL and sends it to StatsD
|
105
|
+
test_files:
|
106
|
+
- spec/runner_spec.rb
|