HTTP traffic
Cumulative read
{{ traffic.readBytes | formatBytes }}
Cumulative written
{{ traffic.writtenBytes | formatBytes }}
Rx
{{ (traffic.readThroughput * 8) | dataRate }}
Tx
{{ (traffic.writeThroughput * 8) | dataRate }}

Current connections

Id {{ conn.id }} User agent {{ (conn.httpRequest?.userAgent | userAgent) || '-' }} Protocol {{ conn.httpRequest?.protocol || '-' }} Remote address {{ conn.remoteAddress || '-' }} Read {{ (conn.readBytes | formatBytes) || '-' }} Written {{ (conn.writtenBytes | formatBytes) || '-' }} Rx {{ (conn.readThroughput * 8) | dataRate }} Tx {{ (conn.writeThroughput * 8) | dataRate }} Request {{ conn.httpRequest?.method }} {{ conn.httpRequest?.uri }} Authorization {{ conn.username || '-' }}