Is it possible to query some/any data from the jmx port using curl? I am writing an inspec(chef) test to check that jmx is working fine.
# curl https://localhost:9114
curl: (35) Encountered end of file
# curl -s -w "%{http_code}\n" https://localhost:9114 -o /dev/null
000
Simply doing curl doesn't return anything useful.
Thanks for reading.