|
{{ 'PAC.Operations.Actions' | translate: { Default: 'Actions' } }}
|
||||||||
|---|---|---|---|---|---|---|---|---|
|
{{ runtimeTitle(runtime) }}
{{ friendlyId(runtime.id) }}
{{ commandLabel(runtime) }}
|
{{ duration(runtime) }}
@if (runtime.live) {
{{ idleExpiryLabel(runtime) }}
{{ maxLifetimeLabel(runtime) }}
|
{{ runtime.pluginName || '-' }}
{{ runtime.serverName }}
@if (runtime.componentKey) {
{{ 'PAC.Operations.Component' | translate: { Default: 'component' } }}:
{{ runtime.componentKey }}
}
|
{{ 'PAC.Operations.TenantShort' | translate: { Default: 'tenant' } }}
{{
runtime.tenantId
? ('PAC.Operations.CurrentTenant' | translate: { Default: 'Current tenant' })
: '-'
}}
{{ 'PAC.Operations.OrganizationShort' | translate: { Default: 'org' } }}
{{
runtime.organizationId
? ('PAC.Operations.CurrentOrganization'
| translate: { Default: 'Current organization' })
: '-'
}}
{{ 'PAC.Operations.Workspace' | translate: { Default: 'workspace' } }}
{{ workspaceLabel(runtime.workspaceId) }}
{{ 'PAC.Operations.Toolset' | translate: { Default: 'toolset' } }}
{{ friendlyNameWithId(runtime.toolsetName, runtime.toolsetId) }}
|
{{ pidLabel(runtime) }}
|
{{ 'PAC.Operations.Execution' | translate: { Default: 'execution' } }}
{{ friendlyId(runtime.executionId) }}
{{ 'PAC.Operations.Conversation' | translate: { Default: 'conversation' } }}
{{ friendlyId(runtime.conversationId) }}
{{ 'PAC.Operations.AppInstanceShort' | translate: { Default: 'app' } }}
{{ friendlyId(runtime.appInstanceId) }}
{{ 'PAC.Operations.InstallationShort' | translate: { Default: 'install' } }}
{{ friendlyId(runtime.resourceInstallationId) }}
|
{{ formatDate(runtime.startedAt) }}
@if (runtime.closedAt) {
{{ 'PAC.Operations.ClosedAt' | translate: { Default: 'Closed' } }}:
{{ formatDate(runtime.closedAt) }}
}
|
{{ runtime.closeReason || '-' }}
@if (runtime.stderrTail) {
{{ 'PAC.Operations.StderrTail' | translate: { Default: 'stderr tail' } }}{{ runtime.stderrTail }}
|