ContainerInstance Table

The ContainerInstance table holds all data for containers that were retrieved from the source connections.

Note: To cater for multi-tenant mode, this table may contain data for multiple tenants. Access requires that the database 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.
Table 1. Database columns for ContainerInstance table

Database Column

Details

ContainerInstanceID

Type: big integer. Key. Generated ID

A unique identifier for this container instance on a host.

HostComputerID

Type: integer. Key

The identifier for the host of this container instance.

ImageComputerID

Type: integer. Key

The identifier for the image of this container instance.

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.