@let statistics = dashboardStatistics | async; @if (!statistics) {
} @else {

Total time: {{ statistics.total_time | time }}

Total packets Packets per second Total bytes Bytes per second
{{ protocol.name }} {{ protocol.total_packets }} {{ (getPacketsPerSecond(protocol.name) | async) === 0 ? 0 : (getPacketsPerSecond(protocol.name) | async) }} {{ protocol.total_bytes }} {{ (getBytesPerSecond(protocol.name) | async) === 0 ? 0 : (getBytesPerSecond(protocol.name) | async) }}
{{ protocol.name }} {{ protocol.total_packets }} {{ (getPacketsPerSecond(protocol.name) | async) === 0 ? 0 : (getPacketsPerSecond(protocol.name) | async) }} {{ protocol.total_bytes }} {{ (getBytesPerSecond(protocol.name) | async) === 0 ? 0 : (getBytesPerSecond(protocol.name) | async) }}
Min Max Current
Information Rate {{ information_rate.min }} {{ information_rate.max }} {{ information_rate.current }}
}