Home
Version 3
Events API

Events API

List App Exited Events

GET /v2/events

Request

Route

GET /v2/events?q=type:app.crash

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: timestamp, type, actee
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
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.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response
q: type:app.crash

Body

Name Description Default Valid Values Example Values
guid The guid of the event.
type The type of the event.
  • app.crash
  • audit.app.update
  • audit.app.create
  • audit.app.delete-request
  • audit.space.create
  • audit.space.update
  • audit.space.delete-request
  • audit.service_broker.create
  • audit.service_broker.update
  • audit.service_broker.delete
  • audit.service.create
  • audit.service.update
  • audit.service.delete
  • audit.service_plan.create
  • audit.service_plan.update
  • audit.service_plan.delete
  • audit.service_plan_visibility.create
  • audit.service_plan_visibility.update
  • audit.service_plan_visibility.delete
  • audit.service_dashboard_client.create
  • audit.service_dashboard_client.delete
  • audit.service_instance.create
  • audit.service_instance.update
  • audit.service_instance.delete
  • audit.user_provided_service_instance.create
  • audit.user_provided_service_instance.update
  • audit.user_provided_service_instance.delete
  • audit.service_binding.create
  • audit.service_binding.delete
  • app.crash
  • audit.app.update
actor The GUID of the actor.
actor_type The actor type.
  • user
  • app
actor_name The name of the actor.
actee The GUID of the actee.
actee_type The actee type.
  • space
  • app
actee_name The name of the actee.
timestamp The event creation time.
metadata The additional information about event. {}
space_guid The guid of the associated space.
organization_guid The guid of the associated organization.

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEwNyIsImVtYWlsIjoiZW1haWwtNjVAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyOTY2NDEzNn0.khWK6QrTGqKT_26gbR-fXAc2trNAsk59l2kRtxWbJ_Y
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/events?q=type:app.crash" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEwNyIsImVtYWlsIjoiZW1haWwtNjVAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyOTY2NDEzNn0.khWK6QrTGqKT_26gbR-fXAc2trNAsk59l2kRtxWbJ_Y" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "38f280cd-3042-4020-8d5a-65ac1ad622fe",
        "url": "/v2/events/38f280cd-3042-4020-8d5a-65ac1ad622fe",
        "created_at": "2015-04-15T00:55:36Z",
        "updated_at": null
      },
      "entity": {
        "type": "app.crash",
        "actor": "48aa36f7-2d20-4a9b-ad51-85e85e466ff8",
        "actor_type": "app",
        "actor_name": "name-671",
        "actee": "48aa36f7-2d20-4a9b-ad51-85e85e466ff8",
        "actee_type": "app",
        "actee_name": "name-671",
        "timestamp": "2015-04-15T00:55:36Z",
        "metadata": {
          "instance": 0,
          "index": 1,
          "exit_status": "1",
          "exit_description": "out of memory",
          "reason": "crashed"
        },
        "space_guid": "cd4d9803-3f54-428d-a2c4-590570e83832",
        "organization_guid": "5b442fed-a54f-4364-8978-5dfc5a2371f4"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: f3242153-d0cd-4bd2-9007-0521918aa4ed
Content-Length: 999
X-Content-Type-Options: nosniff