Get config reload statistics

GET /_node/stats/reloads

Get information about config reload successes and failures.

Query parameters

  • pretty boolean

    If you append ?pretty=true to the request, the JSON returned will be pretty formatted. Use it for debugging only!

Responses

  • 200 application/json

    A JSON object containing process statistics.

    Hide response attribute Show response attribute object
GET /_node/stats/reloads
curl \
 --request GET 'http://api.example.com/_node/stats/reloads' \
 --user "username:password"
Response examples (200)
{
  "reloads": {
    "failures": 0,
    "successes": 0
  }
}