Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 531 Bytes

scalingo_container_type.md

File metadata and controls

28 lines (22 loc) · 531 Bytes

Table: scalingo_container_type

The scalingo_container_type table can be used to query information about container types, and you must specify which application in the where or join clause using the app_name column.

Examples

List container types of an application

select
  name,
  amount
from
  scalingo_container_type
where
  app_name='caresteouvert-api';

Count the number of all container types

select
  sum(amount)
from
  scalingo_container_type
where
  app_name='caresteouvert-api';