Skip to main content

List Monitor Events

GET 

/monitors/:monitor_id/events

Retrieves a list of events for a monitor.

Request

Path Parameters

    monitor_id stringrequired

    REQUIRED. Desired monitor ID

Query Parameters

    limit integer

    Default value: 10

    Number of items to return in the response list.

    filter string

    Filter results that match values in the given key separated by a colon. These are not exact matches, so filtering on a value of pet:cat will return cat along with caterpillar pets. Filter parameters may be repeated if multiple filters are desired, but a given field can only be queried once because all filters will be logically ANDed.

    sort string

    Possible values: [asc, desc]

    Default value: desc

    Sort order, desc for descending chronological order of creation date (latest first), asc for ascending order.

    starting_after string

    The token (base64 string) next_page_token returned in the previous page of results. This is used to fetch the next page of results when the sort order is asc.

    ending_before string

    The token (base64 string) next_page_token returned in the previous page of results. This is used to fetch the next page of results when the sort order is desc.

Responses

OK

Schema
    data object
    events object[]
  • Array [
  • id string
    date_created string
    date_modified string
    monitor_id string
    event_timestamp string
    event object
    monitor_event_links object
    monitor object
  • ]
  • request_timestamp string
    response_timestamp string
    request_duration number
    links object
    request string
Loading...