See logged events
Learn what events we log at Debricked and how to see all of them.
Keep in mind that only users with admin rights have access to the event logs.
To ensure transparency, we log almost all events across our service. This enables you to track everything that happens in your company account and manage various aspects of security, performance, and transparency.
The logs can be accessed through our API, using the endpoints:
To get a list of event logs, simply call the get-request-logs endpoint with appropriate filters. Here is an example of a simple request, fetching all events:
In this case, a start date is specified, while the end date isn’t, which results in data on events from the start date, up to the current date and time. Since the endpoint is paginated, it is required to specify the pages and the page size.
Here is an example of a response:
The breadcrumbs list all the pages the user visited while using the tool. Note that the breadcrumbs are printed in reverse chronological order, i.e., the latest event first and the oldest event last. The URLs in the breadcrumbs are relative to the event URL.
Filters
You can customize the logs by selecting additional filters, such as:
userEmail - filter events performed only by a specific user
url - filter events only affecting a given URL, e.g. https://debricked.com/app/en/vulnerability/6552
eventTypeId - filter on a specific event type, see below
To filter the logs based on events and get a list of all event names and IDs, you can query the get-events endpoint:
Here is an excerpt of the response from the example:
Last updated