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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67a7b080e5136eb7bd9bebccf817688144a0c433af716f98cba4d048c4a332b8
4
- data.tar.gz: 51c762369b1e08223424f4313c9fc51a74b111ec1df009778536676882413f06
3
+ metadata.gz: a1d8908ee152d57ffa0f9e7157aac2f4fc2b864865b65ea04a5a042cea3ca046
4
+ data.tar.gz: b7e7c68d00f9ad0f4e55451665cff0242688b3e15c66882efc3287b34f0823e7
5
5
  SHA512:
6
- metadata.gz: 166c971d4f8682321d4c5ba02eafc0e6d1128017d26f95680e0796a4949e5b09d7b6a06bc6f236c0a45893ce1fda2463c173ff25a8e5c2b2da0c1597e495af47
7
- data.tar.gz: 350d2af032dc42791a707aa6d4d68cad2f0216fbadfa338296d1b5de47342f767f5a29a9d2874d81ded61db48a4184d4df55f93d15b8cae21c5b61cac18cf03a
6
+ metadata.gz: 482cd9f336a03f6c368152f10e82353c5c4e7e6524ac3a78e1baf44325158881628049b71f386ef47c95bcbfda4c7b15d2cbaa33dc59326e71592d727a4d6ccb
7
+ data.tar.gz: 4774c41f015d68413e63d73763b51fda46cf9d048ed3dfd435fbd061ac48dc22d519e57eb1a22b40e5c6e55956b13ac0048e05fe01b33a72ea34647afbf0fe23
data/.gitignore CHANGED
@@ -3,3 +3,5 @@
3
3
  vendor/
4
4
  *.bundle
5
5
  *.git
6
+ *.gem
7
+ pkg/*
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
- ## Contributing
34
-
35
- 1. Fork it
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
 
@@ -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.3'
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/6pongi/fluent-plugin-jmx'
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.3
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/6pongi/fluent-plugin-jmx
100
+ homepage: https://github.com/niyonmaruz/fluent-plugin-jmx/blob/master/README.md
101
101
  licenses:
102
102
  - MIT
103
103
  metadata: {}