Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 687 Bytes

restapi-endpoints.md

File metadata and controls

35 lines (27 loc) · 687 Bytes

REST API Endpoints

This section provides a detailed list of avaliable endpoints in Monitor REST API.

Start monitoring

Start monitoring an application.

  • URL: /monitoring/:app_id

  • Method: POST

  • JSON Request:

    • {
         plugin: [string],
         plugin_info : {
             [...]
         }
      }
      
  • Success Response:

    • Code: 204
  • Error Response:

    • Code: 400 BAD REQUEST

Stop submission

Stop monitoring of an application.

  • URL: /monitoring/:app_id/stop

  • Method: PUT

  • Success Response:

    • Code: 204
  • Error Response:

    • Code: 400 BAD REQUEST