Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 600 Bytes

scalingo_app_event.md

File metadata and controls

34 lines (27 loc) · 600 Bytes

Table: scalingo_app_event

List events associated to an app.

The scalingo_app_event table can be used to query information about an app event, and you must specify which application in the where or join clause using the app_name column.

Examples

List all events of an application

select
  created_at
  type,
  user_username
from
  scalingo_app_event
where
  app_name='caresteouvert-api';

Filter by type edit_variables

select
  created_at,
  type,
  user_username
from
  scalingo_app_event
where
  app_name='caresteouvert-api'
  and type='edit_variables';