{{ t('This host is currently disabled!') }}
| {{ t('User') }} | {{ t('Start time') }} | {{ t('End time') }} | {{ t('Comment') }} | {{ t('Cancel') }} |
|---|---|---|---|---|
| {{ downtime.authorName }} | {{ downtime.scheduledStartTime }} | {{ downtime.scheduledEndTime }} | {{ downtime.commentData }} |
@if (downtime.allowEdit && downtime.isCancellable) {
|
| {{ t('Check command') }} | @if (PermissionsService.hasPermissionObservable(['commands', 'edit'])|async) { {{ result.checkCommand.Command.name }} } @else { {{ result.checkCommand.Command.name }} } |
| {{ t('Command line') }} |
{{ result.mergedHost.hostCommandLine }}
|
| {{ t('Output') }} | |
|
{{ t('Last time') }}
|
{{ result.hoststatus.last_time_up }} |
| {{ t('Check period') }} |
|
| {{ t('Check interval') }} | {{ result.mergedHost.checkIntervalHuman }} |
| {{ t('Retry interval') }} | {{ result.mergedHost.retryIntervalHuman }} |
| {{ t('Parent host state') }} | {{ t('Parent host name') }} | {{ t('Last state change') }} |
|---|---|---|
|
|
{{ parenthost.name }} | {{ result.parentHostStatus[String(parenthost.uuid)].last_state_change }} | }
| {{ t('Contacts') }} |
@for (contact of result.mergedHost.contacts; track contact) {
@if (( PermissionsService.hasPermissionObservable(['contacts', 'edit'])|async ) && contact.allowEdit) {
{{ contact.name }}
} @else {
{{ contact.name }}
}
}
|
| {{ t('Contact groups') }} |
@for (contactgroup of result.mergedHost.contactgroups; track contactgroup) {
@if (( PermissionsService.hasPermissionObservable(['contactgroups', 'edit'])|async ) && contactgroup.allowEdit) {
{{ contactgroup.container.name }}
} @else {
{{ contactgroup.container.name }}
}
}
|
| {{ t('Notification period') }} |
|
| {{ t('Notification interval') }} | {{ result.mergedHost.notificationIntervalHuman }} |
| {{ t('Notification enabled') }} |
@if (result.hoststatus.notifications_enabled) {
|
| {{ t('Notify on') }} |
@if (result.mergedHost.notify_on_recovery) {
|
| {{ t('IP address') }} |
|
| {{ t('Flap detection enabled') }} |
@if (result.hoststatus.flap_detection_enabled) {
|
| {{ t('Priority') }} |
@for (priority of priorities; track priority) {
|
| {{ t('UUID') }} |
{{ result.mergedHost.uuid }}
|
| {{ t('Container') }} | @if (PermissionsService.hasPermissionObservable(['browsers', 'index'])|async) { @for (container of result.mainContainer; track container) { / @if (container.id != null) { {{ container.name }} } @if (container.id === null) { {{ container.name }} } } } @else { @for (container of result.mainContainer; track container) { / {{ container.name }} } } |
| {{ t('Shared containers') }} |
@if (PermissionsService.hasPermissionObservable(['browsers', 'index'])|async) {
@for (sharing of result.sharedContainers |keyvalue; track sharing) {
@for (container of sharing.value; track container) {
/
@if (container.id != null) {
{{ container.name }}
}
@if (container.id === null) {
{{ container.name }}
}
}
}
} @else {
@for (sharing of result.sharedContainers |keyvalue; track sharing) {
@for (container of sharing.value; track container) {
/
{{ container.name }}
}
}
}
|
| {{ t('Tags') }} |
@for (tag of tags; track tag) {
|
| {{ t('Satellite') }} |
|
| {{ t('Satellite') }} | {{ result.masterInstanceName }} |
| {{ t('Notes') }} | {{ result.mergedHost.notes }} |
| {{ t('Description') }} | {{ result.mergedHost.description }} |
| {{ t('Used by') }} |
@if (PermissionsService.hasPermissionObservable(['hosts', 'usedBy'])|async) {
@if (result.objects.Instantreports.length > 0) {
|
| {{ t('Uptime') }} | {{ softwareInformation.packagesHostDetails.uptime_in_words }} |
|---|---|
| {{ t('Last update') }} | {{ softwareInformation.packagesHostDetails.last_update_user }} |
| {{ t('Reboot required') }} | @if (softwareInformation.packagesHostDetails.reboot_required) { {{ t('Yes') }} } @else { {{ t('No') }} } |