chef-jabber-snitch 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/MIT-LICENSE.txt +20 -0
- data/README.org +27 -0
- data/Rakefile +2 -0
- data/chef-jabber-snitch.gemspec +21 -0
- data/lib/chef-jabber-snitch.rb +81 -0
- metadata +101 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/MIT-LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Alice Kaerast
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.org
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
* Install
|
2
|
+
|
3
|
+
: gem install chef-jabber-snitch
|
4
|
+
|
5
|
+
* Usage
|
6
|
+
|
7
|
+
** Configure Chef to Use The Handler
|
8
|
+
|
9
|
+
Append the following to your Chef client configs, usually at =/etc/chef/client.rb=
|
10
|
+
|
11
|
+
: # Notify admins via IRC when a Chef run fails
|
12
|
+
: require 'chef-jabber-snitch'
|
13
|
+
:
|
14
|
+
: jabber_user = "nick@gmail.com"
|
15
|
+
: jabber_password = "password"
|
16
|
+
: jabber_server = "talk.google.com"
|
17
|
+
: jabber_to = "nick@gmail.com"
|
18
|
+
: github_user = "foobar"
|
19
|
+
: github_token = "asKkwqofovX3shBmtMf8EWhDzSr7ouUb"
|
20
|
+
: enable_ssl = true
|
21
|
+
:
|
22
|
+
: jabber_handler = JabberSnitch.new(jabber_user, jabber_password, jabber_server, jabber_to, github_user, github_token)
|
23
|
+
: exception_handlers << jabber_handler
|
24
|
+
|
25
|
+
* License
|
26
|
+
|
27
|
+
Chef-Jabber-Snitch is released under the [[https://github.com/kaerast/chef-jabber-snitch/blob/master/MIT-LICENSE.txt][MIT license]].
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "chef-jabber-snitch"
|
3
|
+
s.version = "0.0.1"
|
4
|
+
s.platform = Gem::Platform::RUBY
|
5
|
+
s.authors = ["Alice Kaerast"]
|
6
|
+
s.email = ["alice.kaerast@webanywhere.co.uk"]
|
7
|
+
s.homepage = "https://github.com/kaerast/chef-jabber-snitch"
|
8
|
+
s.summary = %q{An exception handler for OpsCode Chef runs (GitHub Gists & Jabber)}
|
9
|
+
s.description = %q{An exception handler for OpsCode Chef runs (GitHub Gists & Jabber)}
|
10
|
+
s.has_rdoc = false
|
11
|
+
s.license = "MIT"
|
12
|
+
|
13
|
+
#s.rubyforge_project = "chef-irc-snitch"
|
14
|
+
|
15
|
+
s.add_dependency('chef')
|
16
|
+
#s.add_dependency('carrier-pigeon')
|
17
|
+
s.add_dependency('xmpp4r')
|
18
|
+
|
19
|
+
s.files = `git ls-files`.split("\n")
|
20
|
+
s.require_paths = ["lib"]
|
21
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'chef'
|
3
|
+
require 'chef/handler'
|
4
|
+
require 'net/http'
|
5
|
+
require 'uri'
|
6
|
+
require 'json'
|
7
|
+
require 'xmpp4r/client'
|
8
|
+
include Jabber
|
9
|
+
|
10
|
+
class JabberSnitch < Chef::Handler
|
11
|
+
|
12
|
+
def initialize(jabber_user, jabber_password, jabber_server = 'talk.google.com', jabber_to, github_user, github_token)
|
13
|
+
@jabber_user = jabber_user
|
14
|
+
@jabber_password = jabber_password
|
15
|
+
@jabber_server = jabber_server
|
16
|
+
@jabber_to = jabber_to
|
17
|
+
@github_user = github_user
|
18
|
+
@github_token = github_token
|
19
|
+
@timestamp = Time.now.getutc
|
20
|
+
end
|
21
|
+
|
22
|
+
def fmt_run_list
|
23
|
+
node.run_list.map {|r| r.type == :role ? r.name : r.to_s }.join(', ')
|
24
|
+
end
|
25
|
+
|
26
|
+
def fmt_gist
|
27
|
+
([ "Node: #{node.name} (#{node.ipaddress})",
|
28
|
+
"Run list: #{node.run_list}",
|
29
|
+
"All roles: #{node.roles.join(', ')}",
|
30
|
+
"",
|
31
|
+
"#{run_status.formatted_exception}",
|
32
|
+
""] +
|
33
|
+
Array(backtrace)).join("\n")
|
34
|
+
end
|
35
|
+
|
36
|
+
def report
|
37
|
+
|
38
|
+
if STDOUT.tty?
|
39
|
+
Chef::Log.error("Chef run failed @ #{@timestamp}")
|
40
|
+
Chef::Log.error("#{run_status.formatted_exception}")
|
41
|
+
else
|
42
|
+
Chef::Log.error("Chef run failed @ #{@timestamp}, snitchin' to chefs via IRC")
|
43
|
+
|
44
|
+
gist_id = nil
|
45
|
+
begin
|
46
|
+
timeout(10) do
|
47
|
+
res = Net::HTTP.post_form(URI.parse("http://gist.github.com/api/v1/json/new"), {
|
48
|
+
"files[#{node.name}-#{@timestamp.to_i.to_s}]" => fmt_gist,
|
49
|
+
"login" => @github_user,
|
50
|
+
"token" => @github_token,
|
51
|
+
"description" => "Chef run failed on #{node.name} @ #{@timestamp}",
|
52
|
+
"public" => false
|
53
|
+
})
|
54
|
+
gist_id = JSON.parse(res.body)["gists"].first["repo"]
|
55
|
+
Chef::Log.info("Created a GitHub Gist @ https://gist.github.com/#{gist_id}")
|
56
|
+
end
|
57
|
+
rescue Timeout::Error
|
58
|
+
Chef::Log.error("Timed out while attempting to create a GitHub Gist")
|
59
|
+
end
|
60
|
+
|
61
|
+
message = "Chef failed on #{node.name} (#{fmt_run_list}): https://gist.github.com/#{gist_id}"
|
62
|
+
|
63
|
+
begin
|
64
|
+
timeout(10) do
|
65
|
+
jid = Jid::new(@jabber_user)
|
66
|
+
cl = Client::new(jid)
|
67
|
+
cl.connect(@server,5222)
|
68
|
+
cl.auth(@password)
|
69
|
+
to = @jabber_user
|
70
|
+
subject = "Chef failure"
|
71
|
+
m = Message::new(to, message).set_type(:normal).set_id('1').set_subject(subject)
|
72
|
+
cl.send m
|
73
|
+
Chef::Log.info("Informed chefs via Jabber '#{message}'")
|
74
|
+
end
|
75
|
+
rescue Timeout::Error
|
76
|
+
Chef::Log.error("Timed out while attempting to message Chefs via Jabber")
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
end
|
metadata
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chef-jabber-snitch
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Alice Kaerast
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2012-03-19 00:00:00 +00:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: chef
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: xmpp4r
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
hash: 3
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
version: "0"
|
47
|
+
type: :runtime
|
48
|
+
version_requirements: *id002
|
49
|
+
description: An exception handler for OpsCode Chef runs (GitHub Gists & Jabber)
|
50
|
+
email:
|
51
|
+
- alice.kaerast@webanywhere.co.uk
|
52
|
+
executables: []
|
53
|
+
|
54
|
+
extensions: []
|
55
|
+
|
56
|
+
extra_rdoc_files: []
|
57
|
+
|
58
|
+
files:
|
59
|
+
- .gitignore
|
60
|
+
- Gemfile
|
61
|
+
- MIT-LICENSE.txt
|
62
|
+
- README.org
|
63
|
+
- Rakefile
|
64
|
+
- chef-jabber-snitch.gemspec
|
65
|
+
- lib/chef-jabber-snitch.rb
|
66
|
+
has_rdoc: false
|
67
|
+
homepage: https://github.com/kaerast/chef-jabber-snitch
|
68
|
+
licenses:
|
69
|
+
- MIT
|
70
|
+
post_install_message:
|
71
|
+
rdoc_options: []
|
72
|
+
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ">="
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
hash: 3
|
81
|
+
segments:
|
82
|
+
- 0
|
83
|
+
version: "0"
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
hash: 3
|
90
|
+
segments:
|
91
|
+
- 0
|
92
|
+
version: "0"
|
93
|
+
requirements: []
|
94
|
+
|
95
|
+
rubyforge_project:
|
96
|
+
rubygems_version: 1.3.7
|
97
|
+
signing_key:
|
98
|
+
specification_version: 3
|
99
|
+
summary: An exception handler for OpsCode Chef runs (GitHub Gists & Jabber)
|
100
|
+
test_files: []
|
101
|
+
|