fluent-plugin-zabbix 0.2.0 → 0.2.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.
- checksums.yaml +4 -4
- data/.travis.yml +1 -7
- data/README.md +4 -4
- data/fluent-plugin-zabbix.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d6e28b9d233ac3e55fead20be133e738ec343fb3
|
|
4
|
+
data.tar.gz: d72c18fb161135b2671aedddb6cd8d191ae5d8ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85d3a3adf93609a9863b43ce652049b3e9ba334fa05b245ff53ebdb1a96bad5bc206e26fa472c843007daa88b79e275e04171337979441cb484135e7923d176a
|
|
7
|
+
data.tar.gz: 79803828c3f68e0c9274d095af37404ced81752c090e089669e65c12a606874fe1d42508d75f0cd9495e3b22fc8ef34ca4d559e2f002fa0c7271bdc72f061f87
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@ For messages such as:
|
|
|
22
22
|
tag:metrics {"metrics.field1":300, "metrics.field2":20}
|
|
23
23
|
|
|
24
24
|
<match metrics>
|
|
25
|
-
type zabbix
|
|
25
|
+
@type zabbix
|
|
26
26
|
zabbix_server 192.168.0.1
|
|
27
27
|
port 10051
|
|
28
28
|
host client-hostname
|
|
@@ -33,7 +33,7 @@ or, use `add_key_prefix`
|
|
|
33
33
|
tag:metrics {"field1":300, "field2":20}
|
|
34
34
|
|
|
35
35
|
<match metrics>
|
|
36
|
-
type zabbix
|
|
36
|
+
@type zabbix
|
|
37
37
|
zabbix_server 192.168.0.1
|
|
38
38
|
port 10051
|
|
39
39
|
host client-hostname
|
|
@@ -49,7 +49,7 @@ If you want to specify the host(on zabbix) from record's value, use "host_key" d
|
|
|
49
49
|
tag:metrics {"zabbix_host":"myhostname", "metrics.field1":300, "metrics.field2":20}
|
|
50
50
|
|
|
51
51
|
<match metrics>
|
|
52
|
-
type zabbix
|
|
52
|
+
@type zabbix
|
|
53
53
|
zabbix_server 192.168.0.1
|
|
54
54
|
host_key zabbix_host
|
|
55
55
|
name_keys metrics.field1,metrics.field2
|
|
@@ -59,7 +59,7 @@ v0.0.7~ includes [Fluent::Mixin::ConfigPlaceholders](https://github.com/tagomori
|
|
|
59
59
|
|
|
60
60
|
```
|
|
61
61
|
<match matrics.**>
|
|
62
|
-
type
|
|
62
|
+
@type zabbix
|
|
63
63
|
zabbix_server 192.168.0.1
|
|
64
64
|
host ${hostname}
|
|
65
65
|
add_key_prefix ${tag}
|
|
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
|
|
|
14
14
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
15
15
|
gem.name = "fluent-plugin-zabbix"
|
|
16
16
|
gem.require_paths = ["lib"]
|
|
17
|
-
gem.version = "0.2.
|
|
17
|
+
gem.version = "0.2.1"
|
|
18
18
|
|
|
19
19
|
gem.add_runtime_dependency "fluentd", [">= 0.10", "< 2"]
|
|
20
20
|
gem.add_runtime_dependency "yajl-ruby", "~> 1.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-zabbix
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- FUJIWARA Shunichiro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
version: '0'
|
|
140
140
|
requirements: []
|
|
141
141
|
rubyforge_project:
|
|
142
|
-
rubygems_version: 2.
|
|
142
|
+
rubygems_version: 2.6.6
|
|
143
143
|
signing_key:
|
|
144
144
|
specification_version: 4
|
|
145
145
|
summary: Output data plugin to Zabbix (like zabbix_sender)
|