fluent-plugin-pushover 0.0.4 → 1.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 +8 -8
- data/README.md +20 -2
- data/fluent-plugin-pushover.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDk5ZjcyMzJkZGI1YWEwZjViOTQ4MzljNDczZjNhMGRiZjhiYjAyMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NTIwMGIxMWUxZGQ5NmQ2ZTYwOWI0Y2M0OTJhZGYwMjYyYWI5NTQwZg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGY4MzBjNjMyNTViYmFmODlmODI5ZmY5NTFkMjE3MmJjOTY4NzU5NmQyMjIx
|
10
|
+
OTgzNzM2NmRiM2U2OGFiZjkxMDk2ODMzNmQ4NjNiOGExNWVhYmRkNGY5OTc4
|
11
|
+
NDdhY2ZhNjM3MGRhYTMzZDFlYzQ4ZWE5N2YyNWI2MmZiMTBjYTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ODUxYTZkNmZkZDlmNmMxNWI4NjE1MDhiMjU1ZTEzYjNkMjIzNzYyMDRlMGU5
|
14
|
+
NjAzZjljZTA4NjA3MzdhOWU0NDliY2VmN2E4NDZjZWMwMjJmZTU5MTI3ODlj
|
15
|
+
MTNhN2YzYzY2YTA0ZmIzOTA1OGI4YzI2MzYxZDQ0ZDA2MTU3OTA=
|
data/README.md
CHANGED
@@ -1,6 +1,24 @@
|
|
1
1
|
fluent-plugin-pushover [](https://travis-ci.org/hkar/fluent-plugin-pushover)
|
2
2
|
=====================
|
3
3
|
|
4
|
-
##
|
5
|
-
|
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
|
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"
|