sensu-plugins-telegram 0.2.0 → 2.0.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +40 -1
- data/README.md +15 -5
- data/bin/handler-telegram.rb +20 -5
- data/lib/sensu-plugins-telegram/version.rb +2 -2
- metadata +17 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 09754171b52d9639979e84af89669724a25b2201
|
4
|
+
data.tar.gz: cb6efb45c3df09c5e6b00c1282727392090219b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e2309858f57f29e237eefef9b7faf04431afc84b24f594ac44baad1925740577ef9b839371fc2efe9d13e3d561fba1c001b2bae61f4e353cabfaebed4e032c0
|
7
|
+
data.tar.gz: 0a4a10e1eb1a52481d7591b6548c28dd9c43ebbe0e45019955df67dd8722b584238ed6528c234de148b17491403c14f99446c2cf8d1c43385fc98b1e166fc61b
|
data/CHANGELOG.md
CHANGED
@@ -1,9 +1,48 @@
|
|
1
|
-
#Change Log
|
1
|
+
# Change Log
|
2
2
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
3
3
|
|
4
4
|
This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
|
5
5
|
|
6
6
|
## [Unreleased]
|
7
|
+
## [2.0.0] - 2017-05-30
|
8
|
+
### Breaking Change
|
9
|
+
- removed ruby 1.9x support
|
10
|
+
|
11
|
+
### Changed
|
12
|
+
- updated authors, email, homepage in .gemspec
|
13
|
+
- misc repo cleanup
|
14
|
+
|
15
|
+
## [1.0.1] - 2017-05-29
|
16
|
+
### Changed
|
17
|
+
- just fixing the ruby api key in .travis.yml for rubygems
|
18
|
+
|
19
|
+
## [1.0.0] - 2017-05-29
|
20
|
+
### Added
|
21
|
+
- Support for custom message erb templates
|
22
|
+
|
23
|
+
## [0.2.0] - 2016-03-23
|
24
|
+
### Added
|
25
|
+
- Emojis!
|
26
|
+
- The json_config command line option, which lets you specify custom configs
|
27
|
+
for different handlers.
|
28
|
+
- the bot_token and error_file_location settings can also be specified
|
29
|
+
directly in the event data.
|
30
|
+
|
31
|
+
### Fixed
|
32
|
+
- Correctly escape HTML entities, so that the TG API doesn't barf at invalid
|
33
|
+
HTML.
|
34
|
+
|
35
|
+
## [0.1.1] - 2016-03-18
|
36
|
+
### Changed
|
37
|
+
- Depend on sensu-plugin ~> 1.1 instead of ~> 1.2.
|
38
|
+
|
7
39
|
## 0.1.0 - 2016-03-18
|
8
40
|
### Added
|
9
41
|
- Initial release
|
42
|
+
|
43
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/2.0.0...HEAD
|
44
|
+
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/1.0.1...2.0.0
|
45
|
+
[1.0.1]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/1.0.0...1.0.1
|
46
|
+
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/v0.2.0...1.0.0
|
47
|
+
[0.2.0]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/v0.1.1...v0.2.0
|
48
|
+
[0.1.1]: https://github.com/sensu-plugins/sensu-plugins-telegram/compare/v0.1.0...v0.1.1
|
data/README.md
CHANGED
@@ -1,10 +1,8 @@
|
|
1
1
|
## Sensu-Plugins-telegram
|
2
2
|
|
3
|
-
|
4
|
-
[](https://codeclimate.com/github/sensu-plugins/sensu-plugins-campfire)
|
7
|
-
[](https://gemnasium.com/sensu-plugins/sensu-plugins-campfire) -->
|
3
|
+
[](https://travis-ci.org/sensu-plugins/sensu-plugins-telegram)
|
4
|
+
[](http://badge.fury.io/rb/sensu-plugins-telegram)
|
5
|
+
[](https://gemnasium.com/sensu-plugins/sensu-plugins-telegram)
|
8
6
|
|
9
7
|
## Functionality
|
10
8
|
|
@@ -51,6 +49,18 @@ This gem also expects a JSON configuration file with the following contents:
|
|
51
49
|
message to Telegram (ie. connectivity issues), the exception mesage will
|
52
50
|
be written to a file in this location. You can then monitor this
|
53
51
|
location to detect any errors with the Telegram handler.
|
52
|
+
- `message_template` (optional): An ERB template to use to format messages
|
53
|
+
instead of the default. Supports the following variables:
|
54
|
+
- `action_name`
|
55
|
+
- `action_icon`
|
56
|
+
- `client_name`
|
57
|
+
- `check_name`
|
58
|
+
- `status`
|
59
|
+
- `status_icon`
|
60
|
+
- `output`
|
61
|
+
- `message_template_file` (optional): A file to read an ERB template from to
|
62
|
+
format messages. Supports the same variables as `message_template`.
|
63
|
+
|
54
64
|
|
55
65
|
### Advanced configuration
|
56
66
|
|
data/bin/handler-telegram.rb
CHANGED
@@ -39,6 +39,7 @@ require 'rubygems' if RUBY_VERSION < '1.9.0'
|
|
39
39
|
require 'sensu-handler'
|
40
40
|
require 'restclient'
|
41
41
|
require 'cgi'
|
42
|
+
require 'erb'
|
42
43
|
|
43
44
|
class TelegramHandler < Sensu::Handler
|
44
45
|
option :json_config,
|
@@ -110,12 +111,26 @@ class TelegramHandler < Sensu::Handler
|
|
110
111
|
end
|
111
112
|
|
112
113
|
def build_message
|
114
|
+
template_file = fetch_setting 'message_template_file'
|
115
|
+
if !template_file.nil?
|
116
|
+
template = File.read(template_file)
|
117
|
+
else
|
118
|
+
template = fetch_setting 'message_template'
|
119
|
+
template ||= default_message
|
120
|
+
end
|
121
|
+
|
122
|
+
message = ERB.new(template).result(binding)
|
123
|
+
|
124
|
+
message
|
125
|
+
end
|
126
|
+
|
127
|
+
def default_message
|
113
128
|
[
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
129
|
+
'<b>Alert <%= action_name %></b> <%= action_icon %>',
|
130
|
+
'<b>Host:</b> <%= client_name %>',
|
131
|
+
'<b>Check:</b> <%= check_name %>',
|
132
|
+
'<b>Status:</b> <%= status %> <%= status_icon %>',
|
133
|
+
'<b>Output:</b> <code><%= output %></code>'
|
119
134
|
].join("\n")
|
120
135
|
end
|
121
136
|
|
metadata
CHANGED
@@ -1,14 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sensu-plugins-telegram
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hernan Schmidt
|
8
|
+
- Sensu-Plugins and contributors
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2017-05-31 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: sensu-plugin
|
@@ -100,14 +101,14 @@ dependencies:
|
|
100
101
|
requirements:
|
101
102
|
- - "~>"
|
102
103
|
- !ruby/object:Gem::Version
|
103
|
-
version: '10.
|
104
|
+
version: '10.5'
|
104
105
|
type: :development
|
105
106
|
prerelease: false
|
106
107
|
version_requirements: !ruby/object:Gem::Requirement
|
107
108
|
requirements:
|
108
109
|
- - "~>"
|
109
110
|
- !ruby/object:Gem::Version
|
110
|
-
version: '10.
|
111
|
+
version: '10.5'
|
111
112
|
- !ruby/object:Gem::Dependency
|
112
113
|
name: redcarpet
|
113
114
|
requirement: !ruby/object:Gem::Requirement
|
@@ -126,30 +127,30 @@ dependencies:
|
|
126
127
|
name: rubocop
|
127
128
|
requirement: !ruby/object:Gem::Requirement
|
128
129
|
requirements:
|
129
|
-
- -
|
130
|
+
- - "~>"
|
130
131
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0.
|
132
|
+
version: 0.40.0
|
132
133
|
type: :development
|
133
134
|
prerelease: false
|
134
135
|
version_requirements: !ruby/object:Gem::Requirement
|
135
136
|
requirements:
|
136
|
-
- -
|
137
|
+
- - "~>"
|
137
138
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0.
|
139
|
+
version: 0.40.0
|
139
140
|
- !ruby/object:Gem::Dependency
|
140
141
|
name: rspec
|
141
142
|
requirement: !ruby/object:Gem::Requirement
|
142
143
|
requirements:
|
143
144
|
- - "~>"
|
144
145
|
- !ruby/object:Gem::Version
|
145
|
-
version: '3.
|
146
|
+
version: '3.4'
|
146
147
|
type: :development
|
147
148
|
prerelease: false
|
148
149
|
version_requirements: !ruby/object:Gem::Requirement
|
149
150
|
requirements:
|
150
151
|
- - "~>"
|
151
152
|
- !ruby/object:Gem::Version
|
152
|
-
version: '3.
|
153
|
+
version: '3.4'
|
153
154
|
- !ruby/object:Gem::Dependency
|
154
155
|
name: yard
|
155
156
|
requirement: !ruby/object:Gem::Requirement
|
@@ -165,7 +166,9 @@ dependencies:
|
|
165
166
|
- !ruby/object:Gem::Version
|
166
167
|
version: '0.8'
|
167
168
|
description: Sensu plugins for interfacing with Telegram messenger
|
168
|
-
email:
|
169
|
+
email:
|
170
|
+
- hschmidt@suse.de
|
171
|
+
- sensu-users@googlegroups.com
|
169
172
|
executables:
|
170
173
|
- handler-telegram.rb
|
171
174
|
extensions: []
|
@@ -177,7 +180,7 @@ files:
|
|
177
180
|
- bin/handler-telegram.rb
|
178
181
|
- lib/sensu-plugins-telegram.rb
|
179
182
|
- lib/sensu-plugins-telegram/version.rb
|
180
|
-
homepage: https://github.com/
|
183
|
+
homepage: https://github.com/sensu-plugins/sensu-plugins-telegram
|
181
184
|
licenses:
|
182
185
|
- MIT
|
183
186
|
metadata:
|
@@ -195,7 +198,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
195
198
|
requirements:
|
196
199
|
- - ">="
|
197
200
|
- !ruby/object:Gem::Version
|
198
|
-
version:
|
201
|
+
version: 2.0.0
|
199
202
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
200
203
|
requirements:
|
201
204
|
- - ">="
|
@@ -203,9 +206,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
203
206
|
version: '0'
|
204
207
|
requirements: []
|
205
208
|
rubyforge_project:
|
206
|
-
rubygems_version: 2.4.
|
209
|
+
rubygems_version: 2.4.5
|
207
210
|
signing_key:
|
208
211
|
specification_version: 4
|
209
212
|
summary: Sensu plugins for interfacing with Telegram messenger
|
210
213
|
test_files: []
|
211
|
-
has_rdoc:
|