Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 893 Bytes

README.md

File metadata and controls

54 lines (37 loc) · 893 Bytes

perfmon

Installs the PerfMon server agent as a service to be used in combination with JMeter. See https://jmeter-plugins.org/wiki/PerfMonAgent/

Attributes

See attributes/default.rb

Usage

perfmon::default

Add the perfmon default recipe to your Chef configuration in the Vagrantfile:

config.vm.provision 'cwb', type: 'chef_client' do |chef|
  chef.add_recipe 'perfmon'
  chef.json =
  {
    'perfmon' => {
        # 0 = disabled
        'udp-port' => 0,
        'tcp-port' => 4444,
    },
  }
end

Administration

  • Installation directory: /usr/local/perfmon

  • Start service:

    sudo service perfmon start
  • Stop service:

    sudo service perfmon stop
  • Check logs:

    tail -f /var/log/upstart/perfmon.log

License and Authors

Author:: Joel Scheuner (joel.scheuner.dev@gmail.com)