lita-monit 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE +19 -0
- data/README.md +45 -0
- data/Rakefile +6 -0
- data/lib/lita-monit.rb +1 -0
- data/lib/lita/handlers/monit.rb +48 -0
- data/lita-monit.gemspec +23 -0
- data/spec/lita/handlers/monit_spec.rb +4 -0
- data/spec/spec_helper.rb +10 -0
- metadata +140 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4ce6108381821c5344cab9cbf26699861faaf69b
|
4
|
+
data.tar.gz: 9610d98835e565afd3e5ae1467604b580e9c0348
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f069df36fba58cf5afafd32d224c4e3cf391b52ccdd16f8b794d6745d3edcc7cb2488146094c60fcea75912003d9f2dc77c064b4c187a52e5a481802ebf870c5
|
7
|
+
data.tar.gz: 948cbc1e0f54a1b79472b21937f8edffb82128a1c115581db5cbc23f922603b485a6831a80db4f28f0ae52d879b270e599d449aeeae101f5dfc95836766985f4
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Copyright (c) 2013 Sergeev Peter
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# lita-monit
|
2
|
+
|
3
|
+
Lita-monit is a simple handler to catch monit notifications and forward them directly into your chat.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add lita-monit to your Lita instance's Gemfile:
|
8
|
+
|
9
|
+
``` ruby
|
10
|
+
gem "lita-monit"
|
11
|
+
```
|
12
|
+
|
13
|
+
## Configuration
|
14
|
+
|
15
|
+
There are two configuration options provided:
|
16
|
+
|
17
|
+
**token** - is a token string to confirm that it's real monit alert. By default token string is null. So no validation happens and anyone can send notification to your handler. Adding that configuration option is recommended.
|
18
|
+
|
19
|
+
**rooms** - JIDs of rooms to send notification. Default value is :all.
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
To send **monit** notifications you need to make a simple shell script:
|
24
|
+
|
25
|
+
``` shell
|
26
|
+
#!/bin/sh
|
27
|
+
/usr/bin/curl -s \
|
28
|
+
-F "message=$HOST" \
|
29
|
+
-F "service=$SERVICE" \
|
30
|
+
-F "description=$DESCRIPTION" \
|
31
|
+
-F "token=**token**"\
|
32
|
+
http://0.0.0.0:8080/monit
|
33
|
+
```
|
34
|
+
|
35
|
+
By default lita listens 8080 port. Don't forget to add token to configuration options.
|
36
|
+
After that you can add following to your monitrc config
|
37
|
+
``` shell
|
38
|
+
check program check-mysql with path "/opt/monit/check_mysql.sh"
|
39
|
+
if status != 0 then exec /home/user/monit.sh
|
40
|
+
```
|
41
|
+
to call notification for certain events
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
[MIT](http://opensource.org/licenses/MIT)
|
data/Rakefile
ADDED
data/lib/lita-monit.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "lita/handlers/monit"
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require "lita"
|
2
|
+
|
3
|
+
module Lita
|
4
|
+
module Handlers
|
5
|
+
class Monit < Handler
|
6
|
+
def self.default_config(config)
|
7
|
+
config.rooms = :all
|
8
|
+
config.token = nil
|
9
|
+
end
|
10
|
+
|
11
|
+
http.post "/monit", :receive
|
12
|
+
|
13
|
+
def receive(request, response)
|
14
|
+
return unless token_valid?(request)
|
15
|
+
params = build_params(request.params)
|
16
|
+
|
17
|
+
message = build_message(params)
|
18
|
+
target = Source.new(nil, Lita.config.handlers.monit.rooms)
|
19
|
+
puts target
|
20
|
+
robot.send_message(target, message)
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
def build_params(params)
|
25
|
+
{"message" => "", "service" => "", "description" => ""}.merge!(params)
|
26
|
+
end
|
27
|
+
|
28
|
+
def token_valid?(request)
|
29
|
+
token = Lita.config.handlers.monit.token
|
30
|
+
begin
|
31
|
+
token.eql? request.params["token"]
|
32
|
+
rescue
|
33
|
+
false
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def build_message(params)
|
38
|
+
<<-MSG.chomp
|
39
|
+
[Monit Alert] #{params['message']}
|
40
|
+
From #{params['service']}
|
41
|
+
Description #{params['description']}
|
42
|
+
MSG
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
Lita.register_handler(Monit)
|
47
|
+
end
|
48
|
+
end
|
data/lita-monit.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "lita-monit"
|
3
|
+
spec.version = "0.0.1"
|
4
|
+
spec.authors = ["Sergeev Peter"]
|
5
|
+
spec.email = ["petr@evercodelab.com"]
|
6
|
+
spec.description = %q{Lita handler for accepting and forwarding monit alerts}
|
7
|
+
spec.summary = %q{Lita handler for accepting and forwarding monit alerts}
|
8
|
+
spec.homepage = "https://github.com/toothfairy/lita-monit"
|
9
|
+
spec.license = "MIT"
|
10
|
+
|
11
|
+
spec.files = `git ls-files`.split($/)
|
12
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
13
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
14
|
+
spec.require_paths = ["lib"]
|
15
|
+
|
16
|
+
spec.add_runtime_dependency "lita", "~> 2.3"
|
17
|
+
|
18
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
19
|
+
spec.add_development_dependency "rake"
|
20
|
+
spec.add_development_dependency "rspec", ">= 2.14"
|
21
|
+
spec.add_development_dependency "simplecov"
|
22
|
+
spec.add_development_dependency "coveralls"
|
23
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require "simplecov"
|
2
|
+
require "coveralls"
|
3
|
+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
4
|
+
SimpleCov::Formatter::HTMLFormatter,
|
5
|
+
Coveralls::SimpleCov::Formatter
|
6
|
+
]
|
7
|
+
SimpleCov.start { add_filter "/spec/" }
|
8
|
+
|
9
|
+
require "lita-monit"
|
10
|
+
require "lita/rspec"
|
metadata
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: lita-monit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sergeev Peter
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-09-03 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: lita
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
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: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.14'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.14'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: simplecov
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coveralls
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: Lita handler for accepting and forwarding monit alerts
|
98
|
+
email:
|
99
|
+
- petr@evercodelab.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- .gitignore
|
105
|
+
- Gemfile
|
106
|
+
- LICENSE
|
107
|
+
- README.md
|
108
|
+
- Rakefile
|
109
|
+
- lib/lita-monit.rb
|
110
|
+
- lib/lita/handlers/monit.rb
|
111
|
+
- lita-monit.gemspec
|
112
|
+
- spec/lita/handlers/monit_spec.rb
|
113
|
+
- spec/spec_helper.rb
|
114
|
+
homepage: https://github.com/toothfairy/lita-monit
|
115
|
+
licenses:
|
116
|
+
- MIT
|
117
|
+
metadata: {}
|
118
|
+
post_install_message:
|
119
|
+
rdoc_options: []
|
120
|
+
require_paths:
|
121
|
+
- lib
|
122
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - '>='
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
requirements: []
|
133
|
+
rubyforge_project:
|
134
|
+
rubygems_version: 2.0.3
|
135
|
+
signing_key:
|
136
|
+
specification_version: 4
|
137
|
+
summary: Lita handler for accepting and forwarding monit alerts
|
138
|
+
test_files:
|
139
|
+
- spec/lita/handlers/monit_spec.rb
|
140
|
+
- spec/spec_helper.rb
|