Installs the PerfMon server agent as a service to be used in combination with JMeter. See https://jmeter-plugins.org/wiki/PerfMonAgent/
See attributes/default.rb
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
-
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
Author:: Joel Scheuner (joel.scheuner.dev@gmail.com)