Embulk input plugin for jstat. Now, this plugin supports only JDK8.
Run this command with your embulk binary.
$ embulk gem install embulk-input-jstat
Specify in your config.yml file
in:
type: jstat
paths: [/tmp, /path/to/jstat_files, /other/path/to/jstats_files]
option: -gcutil
timestamp: false
- type: specify this plugin as
jstat
. - paths: specify paths where jstat files(*.log) are. (optional, default: /tmp)
- option: specify a stat option of jstat, e.g., -gcutil. (optional, default: -gcutil)
- timestamp: specify whether your jstat files include a timestamp column or not. (optional, default: false)
- support JDK7, JDK6.
- Fork it ( https://github.com/ykubota/embulk-input-jstat/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request