27 lines
1014 B
HTML
27 lines
1014 B
HTML
<h1>Probes</h1>
|
|
<p-table [value]="probeHosts" selectionMode="single" (onRowSelect)="onRowSelect($event)" [resizableColumns]="true">
|
|
<ng-template pTemplate="header">
|
|
<tr>
|
|
<th>Probe Name</th>
|
|
<th>Uptime</th>
|
|
<th style="width:10em">IP</th>
|
|
<th style="width:8em">OS</th>
|
|
<th style="width:10em">CIDR</th>
|
|
<th pResizableColumn>Targets</th>
|
|
<th style="width:8em">Authroized at</th>
|
|
<th style="width:9em">Authroized by</th>
|
|
</tr>
|
|
</ng-template>
|
|
<ng-template pTemplate="body" let-probeHost>
|
|
<tr [pSelectableRow]="probeHost">
|
|
<td>{{probeHost.probe.displayName}}</td>
|
|
<td>{{getUptime(probeHost.probe)}}</td>
|
|
<td>{{probeHost.host.ipv4}}</td>
|
|
<td>{{probeHost.host.os.vendor.name}}</td>
|
|
<td>{{probeHost.probe.cidr}}</td>
|
|
<td>{{probeHost.probe.targetCount}}</td>
|
|
<td>{{probeHost.probe.authorizeDate | date: 'dd.MM.yyyy'}}</td>
|
|
<td>{{probeHost.probe.authorizeMember.name}}</td>
|
|
</tr>
|
|
</ng-template>
|
|
</p-table> |