Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Latest commit

 

History

History
1174 lines (686 loc) · 37.2 KB

Public_API.rst

File metadata and controls

1174 lines (686 loc) · 37.2 KB

API Server Public Rest API

Scaling History API

List scaling history of an application

GET /v1/apps/:guid/scaling_histories

Request

Route
GET /v1/apps/:guid/scaling_histories
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
start-time The start time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false. default 0 start-time=1494989539138350432
end-time The end time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false. default 'now' end-time=1494989549117047288
order-direction The order type. The scaling history will be order by timestamp asc or desc. string,"asc" or "desc" false. default desc order-direction=desc
page The page number to query int false. default 1 page=1
results-per-page The number of results per page int false. default 50 results-per-page=10
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o"

Response

Status
200 OK
Body

{

"total_results": 2,

"total_pages": 1,

"page": 1,

"prev_url": null,

"next_url": "/v1/apps/8d0cee08-23ad-4813-a779-ad8118ea0b91/scaling_histories?start-time=1494989539138350432&end-time=1494989539138399999&order-direction=desc&page=2&results-per-page=10",

"resources": [{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"timestamp": 1494989539138350433,

"scaling_type": 1,

"status": 0,

"old_instances": 1,

"new_instances": 2,

"reason": "",

"message": "",

"error": ""

},

{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"timestamp": 1494989539138350435,

"scaling_type": 1,

"status": 0,

"old_instances": 1,

"new_instances": 2,

"reason": "",

"message": "",

"error": ""

}]

}

Application Metric API

List instance metrics of an application

GET /v1/apps/:guid/metric_histories/:metric_type

Request

Route
GET /v1/apps/:guid/metric_histories/memoryused
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
metric_type The metric type String, memoryused,memoryutil,responsetime, throughput or custom metric's name true metric_type=memoryused
start-time The start time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false, default 0 start-time=1494989539138350432
end-time The end time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false, default "now" end-time=1494989549117047288
order-direction The order type. The metric history will be ordered by timestamp asc or desc. string,”asc” or "desc" false. default desc order-direction=asc
page The page number to query int false, default 1 page=1
results-per-page The number of results per page int false, default 50 results-per-page=10
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o"

Response

Status
200 OK
Body

[

"total_results": 2,

"total_pages": 1,

"page": 1,

"prev_url": null,

"next_url": "/v1/apps/8d0cee08-23ad-4813-a779-ad8118ea0b91/metric_histories/memoryused?start-time=1494989539138350432&end-time=1494989539138399999&order-direction=asc&page=2&results-per-page=10",

"resources": [{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"instanceIndex": 0,

"timestamp": 1494989539138350433,

"collected_at": 1494989539138350000,

"metric_type": "memoryused",

"value": "400",

"unit": "megabytes"

},

{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"instance_index": 1,

"timestamp": 1494989539138350433,

"collected_at": 1494989539138350000,

"metric_type": "memoryused",

"value": "400",

"unit": "megabytes"

}]

]

List aggregated metrics of an application

AutoScaler collects the instances' metrics of an application, and aggregate the raw data into an accumulated value for evaluation. This API is used to return the aggregated metric result of an application.

GET /v1/apps/:guid/aggregated_metric_histories/:metric_type

Request

Route
GET /v1/apps/:guid/aggregated_metric_histories/memoryused
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
metric_type The metric type String, memoryused,memoryutil,responsetime, throughput or custom metric's name true metric_type=memoryused
start-time The start time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false, default 0 start-time=1494989539138350432
end-time The end time int, the number of nanoseconds elapsed since January 1, 1970 UTC. false, default "now" end-time=1494989549117047288
order-direction The order type. The metric history will be ordered by timestamp asc or desc. string,”asc” or "desc" false. default desc order-direction=asc
page The page number to query int false, default 1 page=1
results-per-page The number of results per page int false, default 50 results-per-page=10
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o"

Response

Status
200 OK
Body

[

"total_results": 2,

"total_pages": 1,

"page": 1,

"prev_url": null,

"next_url": "/v1/apps/8d0cee08-23ad-4813-a779-ad8118ea0b91/aggregated_metric_histories?start-time=1494989539138350432&end-time=1494989539138399999&order-direction=asc&page=2&results-per-page=10",

"resources": [{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"timestamp": 1494989539138350433,

"metric_type": "memoryused",

"value": "400",

"unit": "megabytes"

},

{

"app_guid": "8d0cee08-23ad-4813-a779-ad8118ea0b91",

"timestamp": 1494989539138350433,

"metric_type": "memoryused",

"value": "400",

"unit": "megabytes"

}]

]

Policy API

Create Policy

PUT /v1/apps/:guid/policy

Request

Route
PUT /v1/apps/:guid/policy
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
Body

A valid JSON input to define scaling policy. Refer to Policy Definition .

Sample request body:

{

"instance_min_count": 1,

"instance_max_count": 4,

"scaling_rules": [{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 30,

"operator": "<",

"cool_down_secs": 300,

"adjustment": "-1"

},

{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 90,

"operator": ">=",

"cool_down_secs": 300,

"adjustment": "+1"

}],

"schedules": {

"timezone": "Asia/Shanghai",

"recurring_schedule": [{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

1,

2,

3

],

"instance_min_count": 1,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_date": "2016-06-27",

"end_date": "2016-07-23",

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

5,

15,

25

],

"instance_min_count": 3,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

4,

5,

6

],

"instance_min_count": 1,

"instance_max_count": 10

},

{

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

10,

20,

30

],

"instance_min_count": 1,

"instance_max_count": 10

}],

"specific_date": [{

"start_date_time": "2015-06-02T10:00",

"end_date_time": "2015-06-15T13:59",

"instance_min_count": 1,

"instance_max_count": 4,

"initial_min_instance_count": 2

},

{

"start_date_time": "2015-01-04T20:00",

"end_date_time": "2015-02-19T23:15",

"instance_min_count": 2,

"instance_max_count": 5,

"initial_min_instance_count": 3

}]

}

}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o

cURL
-d @policy.json \
-X PUT \
-H "Content-Type: application/json" \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NTd9.p3cHAMwwVASl1RWxrQuOMLYRZRe4rTbaIH1RRux3Q5Y"

Response

Status
200 OK
Body
{

"instance_min_count": 1,

"instance_max_count": 4,

"scaling_rules": [{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 30,

"operator": "<",

"cool_down_secs": 300,

"adjustment": "-1"

},

{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 90,

"operator": ">=",

"cool_down_secs": 300,

"adjustment": "+1"

}],

"schedules": {

"timezone": "Asia/Shanghai",

"recurring_schedule": [{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

1,

2,

3

],

"instance_min_count": 1,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_date": "2016-06-27",

"end_date": "2016-07-23",

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

5,

15,

25

],

"instance_min_count": 3,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

4,

5,

6

],

"instance_min_count": 1,

"instance_max_count": 10

},

{

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

10,

20,

30

],

"instance_min_count": 1,

"instance_max_count": 10

}],

"specific_date": [{

"start_date_time": "2015-06-02T10:00",

"end_date_time": "2015-06-15T13:59",

"instance_min_count": 1,

"instance_max_count": 4,

"initial_min_instance_count": 2

},

{

"start_date_time": "2015-01-04T20:00",

"end_date_time": "2015-02-19T23:15",

"instance_min_count": 2,

"instance_max_count": 5,

"initial_min_instance_count": 3

}]

}

}

Delete Policy

Delete /v1/apps/:guid/policy

Request

Route
DELETE /v1/apps/:guid/policy
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X DELETE \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NTd9.p3cHAMwwVASl1RWxrQuOMLYRZRe4rTbaIH1RRux3Q5Y"

Response

Status
200 OK

Get Policy

GET /v1/apps/:guid/policy

Request

Route
GET /v1/apps/:guid/policy
Parameters
Name Description Valid values Required Example values
guid The GUID of the application   true  
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NTd9.p3cHAMwwVASl1RWxrQuOMLYRZRe4rTbaIH1RRux3Q5Y"

Response

Status
200 OK
Body

{

"instance_min_count": 1,

"instance_max_count": 4,

"scaling_rules": [{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 30,

"operator": "<",

"cool_down_secs": 300,

"adjustment": "-1"

},

{

"metric_type": "memoryused",

"breach_duration_secs": 600,

"threshold": 90,

"operator": ">=",

"cool_down_secs": 300,

"adjustment": "+1"

}],

"schedules": {

"timezone": "Asia/Shanghai",

"recurring_schedule": [{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

1,

2,

3

],

"instance_min_count": 1,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_date": "2016-06-27",

"end_date": "2016-07-23",

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

5,

15,

25

],

"instance_min_count": 3,

"instance_max_count": 10,

"initial_min_instance_count": 5

},

{

"start_time": "10:00",

"end_time": "18:00",

"days_of_week": [

4,

5,

6

],

"instance_min_count": 1,

"instance_max_count": 10

},

{

"start_time": "11:00",

"end_time": "19:30",

"days_of_month": [

10,

20,

30

],

"instance_min_count": 1,

"instance_max_count": 10

}],

"specific_date": [{

"start_date_time": "2015-06-02T10:00",

"end_date_time": "2015-06-15T13:59",

"instance_min_count": 1,

"instance_max_count": 4,

"initial_min_instance_count": 2

},

{

"start_date_time": "2015-01-04T20:00",

"end_date_time": "2015-02-19T23:15",

"instance_min_count": 2,

"instance_max_count": 5,

"initial_min_instance_count": 3

}]

}

}

Custom metric API

To scale with custom metric, your application need to emit its own metric to App Autoscaler's metric server.

Given the metric submission is proceeded inside an application, an App Autoscaler specific credential is required to authorize the access.

If App Autoscaler is offered as a service, the credential and autoscaler metric server's URL are injected into VCAP_SERVICES by service binding directly.

If App Autoscaler is offered as a Cloud Foundry extension, the credential need to be generated explictly.

Create credential

PUT /v1/apps/:guid/credential

Optional. A credential with random username/password will be generated by this API by default. Also it is supported to define credential with a specific pair of username and password with below JSON payload.

Request

Route
PUT /v1/apps/:guid/credential
Body

{

"username": "username",

"password": "password"

}

Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o"

Response

Status
200 OK
Body
{

"app_id": "<APP_ID>",

"username": "MY_USERNAME",

"password": "MY_PASSWORD",

"url": "<AUTOSCALER METRIC SERVER URL>"

}

Delete credential

DELETE /v1/apps/:guid/credential

Request

Route
DELETE /v1/apps/:guid/credential
Headers
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o
cURL
-X DELETE \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQwOCIsImVtYWlsIjoiZW1haWwtMzAzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDU1NTc5NzF9.RMJZvSzCSxpj4jjZBmzbO7eoSfTAcIWVSHqFu5_Iu_o"

Response

Status
200 OK

Submit custom metric to Autoscaler metric server

POST /v1/apps/:guid/metrics

Request

Route
POST /v1/apps/:guid/metrics
Body

A JSON payload is required to emit your own metrics with the metric value and the correspondng instance index.

{

"instance_index": <INSTANCE INDEX>,

"metrics": [{

"name": "<CUSTOM METRIC NAME>",

"value": <CUSTOM METRIC VALUE>,

"unit": "<CUSTOM METRIC UNIT>"

}]

}

  • <INSTANCE INDEX> is the index of current application instance. You can fetch the index from environment variable CF_INSTANCE_INDEX
  • <CUSTOM METRIC NAME> is the name of the emit metric which must be equal to the metric name that you define in the policy.
  • <CUSTOM METRIC VALUE> is value that you would like to submit. The value here must be a NUMBER.
  • <CUSTOM METRIC UNIT> is the unit of the metric, optional.
Headers
Basic authorization of autoscaler credential is required when submitting your own metrics to Autoscaler metric server.
cURL
-X PUT \
-d @metric.json \
-H "Content-Type: application/json" \
-H "Authorization: basic xxxx"

Response

Status
200 OK

Error Response

All error response are presented with a appropriate HTTP response code (like 4xx or 5xx) and a body containing a valid JSON Object.

The error response body is specified as:

{

"error": "error msg"

}