fluent-plugin-jmx 0.0.3 → 0.0.4
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/.gitignore +2 -0
- data/README.md +8 -8
- data/fluent-plugin-jmx.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1d8908ee152d57ffa0f9e7157aac2f4fc2b864865b65ea04a5a042cea3ca046
|
|
4
|
+
data.tar.gz: b7e7c68d00f9ad0f4e55451665cff0242688b3e15c66882efc3287b34f0823e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 482cd9f336a03f6c368152f10e82353c5c4e7e6524ac3a78e1baf44325158881628049b71f386ef47c95bcbfda4c7b15d2cbaa33dc59326e71592d727a4d6ccb
|
|
7
|
+
data.tar.gz: 4774c41f015d68413e63d73763b51fda46cf9d048ed3dfd435fbd061ac48dc22d519e57eb1a22b40e5c6e55956b13ac0048e05fe01b33a72ea34647afbf0fe23
|
data/README.md
CHANGED
|
@@ -16,12 +16,16 @@ Or install it yourself as:
|
|
|
16
16
|
|
|
17
17
|
$ gem install fluent-plugin-jmx
|
|
18
18
|
|
|
19
|
+
When you use with td-agent, install it as below:
|
|
20
|
+
|
|
21
|
+
$ sudo /opt/td-agent/embedded/bin/fluent-gem install fluent-plugin-jmx
|
|
22
|
+
|
|
19
23
|
## Configuration
|
|
20
24
|
|
|
21
25
|
### Example
|
|
22
26
|
|
|
23
27
|
<source>
|
|
24
|
-
type jmx
|
|
28
|
+
@type jmx
|
|
25
29
|
tag jmx.memory
|
|
26
30
|
url http://127.0.0.1:8778/jolokia
|
|
27
31
|
mbean java.lang:type=Memory
|
|
@@ -30,13 +34,9 @@ Or install it yourself as:
|
|
|
30
34
|
inner_path used
|
|
31
35
|
</source>
|
|
32
36
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
37
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
38
|
-
4. Push to the branch (`git push origin my-new-feature`)
|
|
39
|
-
5. Create new [Pull Request](../../pull/new/master)
|
|
37
|
+
<match jmx.**>
|
|
38
|
+
@type stdout
|
|
39
|
+
</match>
|
|
40
40
|
|
|
41
41
|
## Copyright
|
|
42
42
|
|
data/fluent-plugin-jmx.gemspec
CHANGED
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'fluent-plugin-jmx'
|
|
7
|
-
spec.version = '0.0.
|
|
7
|
+
spec.version = '0.0.4'
|
|
8
8
|
spec.authors = ['Hidenori Suzuki']
|
|
9
9
|
spec.email = ['hidenori.suzuki@yahoo.com']
|
|
10
10
|
spec.summary = 'a fluent plugin'
|
|
11
11
|
spec.description = 'jolokia input plugin'
|
|
12
|
-
spec.homepage = 'https://github.com/
|
|
12
|
+
spec.homepage = 'https://github.com/niyonmaruz/fluent-plugin-jmx/blob/master/README.md'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-jmx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hidenori Suzuki
|
|
@@ -97,7 +97,7 @@ files:
|
|
|
97
97
|
- lib/fluent/plugin/in_jmx.rb
|
|
98
98
|
- spec/fluent/plugin/in_jmx_spec.rb
|
|
99
99
|
- spec/spec_helper.rb
|
|
100
|
-
homepage: https://github.com/
|
|
100
|
+
homepage: https://github.com/niyonmaruz/fluent-plugin-jmx/blob/master/README.md
|
|
101
101
|
licenses:
|
|
102
102
|
- MIT
|
|
103
103
|
metadata: {}
|