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
    • reloads object
      Hide reloads attributes Show reloads attributes object
      • successes integer(int64)
      • failures integer(int64)
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 } }