List all App Usage Events
GET /v2/app_usage_events
Events are sorted by internal database IDs. This order may differ from created_at.
Events close to the current time should not be processed because other events may still have open
transactions that will change their order in the results.
Fields
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the event.
|
|
|
|
state
|
The desired state of the app or 'BUILDPACK_SET' when buildpack info has been set.
|
|
- STARTED
- STOPPED
- BUILDPACK_SET
|
|
instance_count
|
How many instance of the app.
|
|
|
|
memory_in_mb_per_instance
|
How much memory per app instance.
|
|
|
|
app_guid
|
The GUID of the app.
|
|
|
|
app_name
|
The name of the app.
|
|
|
|
org_guid
|
The GUID of the organization.
|
|
|
|
space_guid
|
The GUID of the space.
|
|
|
|
space_name
|
The name of the space.
|
|
|
|
buildpack_guid
|
The GUID of the buildpack used to stage the app.
|
|
|
|
buildpack_name
|
The name of the buildpack or the URL of the custom buildpack used to stage the app.
|
|
|
- https://example.com/buildpack.git
- admin_buildpack
|
created_at
|
The timestamp when the event is recorded. It is possible that later events may have earlier created_at values.
|
|
|
|
Parameters
Name |
Description |
Valid Values |
Example Values |
page
|
Page of results to fetch
|
|
|
results-per-page
|
Number of results per page
|
|
|
order-direction
|
Order of the results: asc (default) or desc
|
|
|
inline-relations-depth
|
0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
|
|
|
after_guid
|
Restrict results to App Usage Events after the one with the given guid
|
|
|
Request
Headers
Route
GET /v2/app_usage_events?results-per-page=1&after_guid=1a8b5526-421d-46e0-90b7-de24da2910ce
Query Parameters
results-per-page: 1
after_guid: 1a8b5526-421d-46e0-90b7-de24da2910ce
cURL
curl "https://api.[your-domain.com]/v2/app_usage_events?results-per-page=1&after_guid=1a8b5526-421d-46e0-90b7-de24da2910ce" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI4NiIsImVtYWlsIjoiZW1haWwtMjExQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxNDl9.W7S61lH0UAEVeoADHh2sMM_yo5xo-QcoPRvUpuYIWSY" \
-H "Host: example.org" \
-H "Cookie: "
Response
Headers
Status
200 OK
Body
{
"total_results": 2,
"total_pages": 2,
"prev_url": null,
"next_url": "/v2/app_usage_events?after_guid=1a8b5526-421d-46e0-90b7-de24da2910ce&order-direction=asc&page=2&results-per-page=1",
"resources": [
{
"metadata": {
"guid": "a9c3b370-cad5-4bdd-a432-5955edd9f04b",
"url": "/v2/app_usage_events/a9c3b370-cad5-4bdd-a432-5955edd9f04b",
"created_at": "2014-11-05T01:02:29+00:00"
},
"entity": {
"state": "STARTED",
"memory_in_mb_per_instance": 564,
"instance_count": 1,
"app_guid": "guid-c0791906-b4b7-407b-83f4-00d328a46a80",
"app_name": "name-1197",
"space_guid": "guid-2bea39e9-83e4-4502-98c5-38dd504b49a2",
"space_name": "name-1198",
"org_guid": "guid-84b72dcc-8504-4dc2-9844-e6f45a8732ec",
"buildpack_guid": "guid-6b722def-0a35-4db7-808a-c9495e00d47d",
"buildpack_name": "name-1199"
}
}
]
}