Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section

Start Runtime Analytics

Request Method GET
Description

Returns information on a specified connector within Datameer X including version number, class name, file information (uuid, path, description, name), typeID, and properties information.

URI Syntax
Code Blocknoformat
curl -u '<username>:<password>' -X GET 'http:// <Datameer-serverIP> /api/admin/runtime-analytics/start'
Example Response

No response given.

Verification

To verify action, use the View Status command.  

Code Block
{
  "data": {
    "status": {
      "state": "[UP]|[STARTING]",
      "message": "",
      "embedded": true
    }
  },
  "_links": {
    "self": {
      "href": "/api/admin/runtime-analytics"
    }
  }
}
Section

Stop Runtime Analytics

Request Method GET
Description

Returns information on a specified connector within Datameer X including version number, class name, file information (uuid, path, description, name), typeID, and properties information.

URI Syntax
Code Blocknoformat
curl -u '<username>:<password>' -X GET 'http://<Datameer-serverIP>/api/admin/runtime-analytics/stop'
Example Response

No response given.


Verification

To verify action, use the View Status command.  

Code Block
{
  "data": {
    "status": {
      "state": "STOPPED",
      "message": "",
      "embedded": true
    }
  },
  "_links": {
    "self": {
      "href": "/api/admin/runtime-analytics"
    }
  }
}
Section

View Status of Runtime Analytics

Request Method GET
Description

Returns information on a specified connector within Datameer X including version number, class name, file information (uuid, path, description, name), typeID, and properties information.

URI Syntax
Code Blocknoformat
curl -u '<username>:<password>' -X GET ' http://<Datameer-serverIP>:<port-number>/api/admin/runtime-analytics'
Example Response
Code Block
{
  "data": {
    "status": {
      "state": "UP",
      "message": "",
      "embedded": true
    }
  },
  "_links": {
    "self": {
      "href": "/api/admin/runtime-analytics"
    }
  }
}