Checks if App Monitoring is enabled
This request has no parameters.
Returns the status of App Monitoring.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/monitoring/app' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Enables or disables App Monitoring
The status to set for App Monitoring.
boolean
Sets the status of App Monitoring.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/monitoring/app' \
--user 'email@example.com:<api_token>' \
--header 'Content-Type: application/json'
Checks if IPD Monitoring is enabled
This request has no parameters.
Returns the status of IPD Monitoring.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/monitoring/ipd' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Enables or disables IPD Monitoring
The status to set for IPD Monitoring.
boolean
Confirmation that the status was set.
1
2
3
4
curl --request POST \
--url 'http://{baseurl}/rest/api/2/monitoring/ipd' \
--user 'email@example.com:<api_token>' \
--header 'Content-Type: application/json'
Checks if JMX metrics are being exposed
This request has no parameters.
Returns whether JMX metrics are being exposed.
boolean
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/monitoring/jmx/areMetricsExposed' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Gets the available JMX metrics
This request has no parameters.
Returns the available JMX metrics.
string
1
2
3
4