matron 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f3eec5d372c5edfe77af0bdb017226c700f94ee4
4
+ data.tar.gz: 9e550917bbe3519933594057e94f6780e09a3682
5
+ SHA512:
6
+ metadata.gz: d2efa6af70d62296897fcd220a725ffe2a4cfcee7e93637cd54b67ef80e551e96e3f1dda2419ff37006d5287d579799d02b478cbc05b4ba86ed59a68c3efb305
7
+ data.tar.gz: 006f05af444497302020bbf6f5477e1a05fbbc863760702bcf9724d99ec81a4380e708950584f5764f440bb27e669c8dd97bb8fec7f46a7af724d42cf986921a
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in matron.gemspec
4
+ gemspec
@@ -0,0 +1,36 @@
1
+ # Matron
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/matron`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'matron'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install matron
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/matron.
36
+
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "matron"
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,13 @@
1
+ require 'sequel'
2
+
3
+ require 'matron/client'
4
+
5
+ require "matron/version"
6
+ require 'matron/sql/process'
7
+ require 'matron/sql/processes'
8
+ require 'matron/hosts'
9
+ require 'matron/monitor'
10
+
11
+ module Matron
12
+
13
+ end
@@ -0,0 +1,11 @@
1
+ module Matron
2
+ class Hosts
3
+ def app_for_host host
4
+ ::Diplomat::Kv.get "matron/hosts/#{host}"
5
+ end
6
+
7
+ def hosts_for_app app
8
+ Matron::Client.new(app).hosts
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,36 @@
1
+ module Matron
2
+ class Monitor
3
+ def initialize db_configs=["mysql://root:root@localhost/main-website-rails_development"]
4
+ @db_connections = db_configs.map do |db_config|
5
+ Sequel.connect db_config
6
+ end
7
+ end
8
+
9
+ def monitor
10
+ @db_connections.each do |db|
11
+ monitor_db_connection db
12
+ end
13
+ end
14
+
15
+ protected
16
+
17
+ def monitor_db_connection( db )
18
+ processes = Matron::Sql::Processes.new(db).process_list
19
+ processes.each do |process|
20
+ monitor_process process
21
+ end
22
+ end
23
+
24
+ def monitor_process process
25
+ app = Matron::Hosts.app_for_host process.host
26
+ if app
27
+ app_config = Matron::Hosts.config_for_app app
28
+ if app_config
29
+ if app_config[:max_query_time].to_i > 0 && process.time > app_config[:max_query_time]
30
+ process.kill!
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,23 @@
1
+ module Matron
2
+ module Sql
3
+ class Process
4
+ attr_reader :process_id, :user, :host, :db, :command, :time, :state, :info
5
+
6
+ def initialize db_connection, row
7
+ @db_connection = db_connection
8
+ self.process_id = row[:Id]
9
+ self.user = row[:User]
10
+ self.host = row[:Host]
11
+ self.db = row[:db]
12
+ self.command = row[:Command]
13
+ self.time = row[:Time]
14
+ self.state = row[:State]
15
+ self.info = row[:Info]
16
+ end
17
+
18
+ def kill!
19
+ @db_connection.run "kill #{process_id}"
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,17 @@
1
+ module Matron
2
+ module Sql
3
+ class Processes
4
+ attr_reader :shard_index
5
+
6
+ def initialize db
7
+ @db = db
8
+ end
9
+
10
+ def process_list( hosts )
11
+ DB['SHOW PROCESSLIST'].map do |row|
12
+ ::Matron::Sql::Process.new @db, row
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,3 @@
1
+ module Matron
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'matron/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "matron"
8
+ spec.version = Matron::VERSION
9
+ spec.authors = ["Misha Conway"]
10
+ spec.email = ["mishaAconway@gmail.com"]
11
+
12
+ spec.summary = "Watches long running sql queries and does not tolerate bad behavior."
13
+ spec.description = "Watches long running sql queries and does not tolerate bad behavior."
14
+ spec.homepage = "https://github.com/MishaConway/matron"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = "exe"
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency 'matron-client', '0.1.0'
22
+ spec.add_runtime_dependency 'sequel', "~> 4.42.1"
23
+ spec.add_runtime_dependency 'mysql2'
24
+ spec.add_development_dependency "bundler", "~> 1.12"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ end
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: matron
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Misha Conway
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-01-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: matron-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: sequel
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 4.42.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 4.42.1
41
+ - !ruby/object:Gem::Dependency
42
+ name: mysql2
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.12'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.12'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ description: Watches long running sql queries and does not tolerate bad behavior.
84
+ email:
85
+ - mishaAconway@gmail.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - Gemfile
92
+ - README.md
93
+ - Rakefile
94
+ - bin/console
95
+ - bin/setup
96
+ - lib/matron.rb
97
+ - lib/matron/hosts.rb
98
+ - lib/matron/monitor.rb
99
+ - lib/matron/sql/process.rb
100
+ - lib/matron/sql/processes.rb
101
+ - lib/matron/version.rb
102
+ - matron.gemspec
103
+ homepage: https://github.com/MishaConway/matron
104
+ licenses: []
105
+ metadata: {}
106
+ post_install_message:
107
+ rdoc_options: []
108
+ require_paths:
109
+ - lib
110
+ required_ruby_version: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: '0'
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ requirements: []
121
+ rubyforge_project:
122
+ rubygems_version: 2.6.7
123
+ signing_key:
124
+ specification_version: 4
125
+ summary: Watches long running sql queries and does not tolerate bad behavior.
126
+ test_files: []