fluent-plugin-pushover 0.0.4 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NGJjNjViOGJjNDhhM2FmNWFjYzk0YWMyYjQ1NWU4ZmM2NmYxMjBlNA==
4
+ MDk5ZjcyMzJkZGI1YWEwZjViOTQ4MzljNDczZjNhMGRiZjhiYjAyMw==
5
5
  data.tar.gz: !binary |-
6
- MDBlZmUxOTQ1ZGVhYTlhYTIwMTAxMzE1NDA4YTgwMWE2OGRiYzlmMg==
6
+ NTIwMGIxMWUxZGQ5NmQ2ZTYwOWI0Y2M0OTJhZGYwMjYyYWI5NTQwZg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWU0MDdmMzUyNjAzOWU1OGY0NDE0ZmEzMTFjNDBmOTE1MWRlN2VlM2JhNTNl
10
- OGIxMDZlMDQ5NmIxNGU0Y2I4MDJlZjgyMzIyYjk4OGU0ZDQ4N2Q5MWYzNTc2
11
- ZmRiMThiZGUxYWM3NmJmOTI2ZDllYWE3OTE3MWMxOGYyYTdjODQ=
9
+ OGY4MzBjNjMyNTViYmFmODlmODI5ZmY5NTFkMjE3MmJjOTY4NzU5NmQyMjIx
10
+ OTgzNzM2NmRiM2U2OGFiZjkxMDk2ODMzNmQ4NjNiOGExNWVhYmRkNGY5OTc4
11
+ NDdhY2ZhNjM3MGRhYTMzZDFlYzQ4ZWE5N2YyNWI2MmZiMTBjYTg=
12
12
  data.tar.gz: !binary |-
13
- MWQwN2NkOGM1NGNhMDM2ZjEyMGJkZjRiZmVkODkwMGRhYmQzMWE5ZjZlOGZl
14
- MTZlYTg2NzM2MjdmOTFlODk5YTY2MWYxOWY5MjJhOWUyNWJiNjlhN2FmOGI3
15
- N2MwYzZmYzg3ZTE5YjFkN2ZjZmQxMjZlMWZiOGNjY2FkMGY0OTI=
13
+ ODUxYTZkNmZkZDlmNmMxNWI4NjE1MDhiMjU1ZTEzYjNkMjIzNzYyMDRlMGU5
14
+ NjAzZjljZTA4NjA3MzdhOWU0NDliY2VmN2E4NDZjZWMwMjJmZTU5MTI3ODlj
15
+ MTNhN2YzYzY2YTA0ZmIzOTA1OGI4YzI2MzYxZDQ0ZDA2MTU3OTA=
data/README.md CHANGED
@@ -1,6 +1,24 @@
1
1
  fluent-plugin-pushover [![Build Status](https://travis-ci.org/hkar/fluent-plugin-pushover.svg?branch=master)](https://travis-ci.org/hkar/fluent-plugin-pushover)
2
2
  =====================
3
3
 
4
- ## License
5
- Apache License, Version 2.0
4
+ ## Installation
5
+
6
+ td-agent-gem install fluent-plugin-pushover
7
+
8
+ ## Setting
9
+
10
+ ```
11
+ <match error_5xx.**>
12
+ type pushover
6
13
 
14
+ # Set account_token (app token) and user_key (id of client)
15
+ account_token <YOUR_TOKEN> # Required
16
+ user_key <YOUR_TOKEN> # Required
17
+
18
+ # Set log level to prevent info error for Fluentd v0.10.43 or later.
19
+ log_level warn
20
+ </match>
21
+ ```
22
+
23
+ ## License
24
+ Apache License, Version 2.0
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-pushover"
6
- s.version = "0.0.4"
6
+ s.version = "1.0.0"
7
7
  s.authors = ["Jan Karásek"]
8
8
  s.email = ["devel@hkar.eu"]
9
9
  s.homepage = "https://github.com/hkar/fluent-plugin-pushover"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-pushover
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Karásek