Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.12 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.12 KB

Embulk::Input::Jstat

Embulk input plugin for jstat. Now, this plugin supports only JDK8.

Installation

Run this command with your embulk binary.

$ embulk gem install embulk-input-jstat

Configuration

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)

TODO

  • support JDK7, JDK6.

Contributing

  1. Fork it ( https://github.com/ykubota/embulk-input-jstat/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request