Analysis
Using JMX on Vagrant
Getting JMX remote from my desktop to a Vagrant machine took a few tries. Vagrant file configuration to add more memory and forward the HTTP and JMX ports Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "ubuntu/xenial64" config.vm.network "forwarded_port", guest: 8080, host: 8080 config.vm.network "forwarded_port", guest: 9010, host: 9010 config.vm.provider "virtualbox" do |vb| Read more…