ContainerInstance Table
The ContainerInstance
table holds all data for containers that were retrieved from the source connections.
TenantID
has been set in the SQL Server
connection context information. That setting filters an underlying table to produce this
view of data for the single, selected tenant.
Database Column |
Details |
---|---|
ContainerInstanceID
|
Type: big integer. Key. Generated ID A unique identifier for this container instance on a host. |
ContainerID
|
Type: text (max 256 characters). Key The ID of the container. |
Name
|
Type: text (max 256 characters). Nullable The name of the container. |
ImageTag
|
Type: text (max 256 characters). Nullable The image tag of the container. |
PartialNumberOfProcessors
|
Type: decimal. Nullable The total number of partial processors allocated to the container. |
TotalMemoryLimit
|
Type: big integer. Nullable The total memory limit in bytes available to the container. |
Entrypoint
|
Type: text (max 256 characters). Nullable The entry point of the container. |
Cmd
|
Type: text (max 256 characters). Nullable The starting process of the container. |
ContainerInstanceStatusID
|
Type: integer The current status of the container. |
CreatedDate
|
Type: datetime. Nullable The date when this container was created. |
DeletedDate
|
Type: datetime. Nullable The date when this container was deleted. |
StartedDate
|
Type: datetime. Nullable The date when this container first started. |
StoppedDate
|
Type: datetime. Nullable The date when this container last stopped. |
ContainerPodID
|
Type: integer. Key. Nullable The ID of the pod running this container. |
ContainerImageID
|
Type: big integer. Key A unique identifier for this container image on a host. |
UserName
|
Type: text (max 256 characters). Nullable The user name for the user who is running the container. |
ContainerInstanceTypeID
|
Type: integer The type of container. Foreign key to the ContainerInstanceType table. |