flink-runtime-web/web-dashboard/src/app/components/table-aggregated-metrics/table-aggregated-metrics.component.html
| Metric | Min | Max | Avg | Sum | Median | 25th Percentile | 75th Percentile | 95th Percentile |
|---|---|---|---|---|---|---|---|---|
| CREATED Duration | {{ aggregated?.['status-duration'].CREATED.min | humanizeDuration }} | {{ aggregated?.['status-duration'].CREATED.max | humanizeDuration }} | {{ aggregated?.['status-duration'].CREATED.avg | humanizeDuration }} | {{ aggregated?.['status-duration'].CREATED.sum | humanizeDuration }} |
| SCHEDULED Duration | {{ aggregated?.['status-duration'].SCHEDULED.min | humanizeDuration }} | {{ aggregated?.['status-duration'].SCHEDULED.max | humanizeDuration }} | {{ aggregated?.['status-duration'].SCHEDULED.avg | humanizeDuration }} | {{ aggregated?.['status-duration'].SCHEDULED.sum | humanizeDuration }} |
| DEPLOYING Duration | {{ aggregated?.['status-duration'].DEPLOYING.min | humanizeDuration }} | {{ aggregated?.['status-duration'].DEPLOYING.max | humanizeDuration }} | {{ aggregated?.['status-duration'].DEPLOYING.avg | humanizeDuration }} | {{ aggregated?.['status-duration'].DEPLOYING.sum | humanizeDuration }} |
| INITIALIZING Duration | {{ aggregated?.['status-duration'].INITIALIZING.min | humanizeDuration }} | {{ aggregated?.['status-duration'].INITIALIZING.max | humanizeDuration }} | {{ aggregated?.['status-duration'].INITIALIZING.avg | humanizeDuration }} | {{ aggregated?.['status-duration'].INITIALIZING.sum | humanizeDuration }} |
| RUNNING Duration | {{ aggregated?.['status-duration'].RUNNING.min | humanizeDuration }} | {{ aggregated?.['status-duration'].RUNNING.max | humanizeDuration }} | {{ aggregated?.['status-duration'].RUNNING.avg | humanizeDuration }} | {{ aggregated?.['status-duration'].RUNNING.sum | humanizeDuration }} |
| Read Records | {{ (aggregated?.metrics['read-records'].min | number: '1.0-0') | '-' }} | {{ (aggregated?.metrics['read-records'].max | number: '1.0-0') | '-' }} | ||
| Write Records | {{ (aggregated?.metrics['write-records'].min | number: '1.0-0') | '-' }} | {{ (aggregated?.metrics['write-records'].max | number: '1.0-0') | '-' }} | ||
| Read Bytes | {{ aggregated?.metrics['read-bytes'].min | humanizeBytes }} | {{ aggregated?.metrics['read-bytes'].max | humanizeBytes }} | {{ aggregated?.metrics['read-bytes'].avg | humanizeBytes }} | {{ aggregated?.metrics['read-bytes'].sum | humanizeBytes }} |
| Write Bytes | {{ aggregated?.metrics['write-bytes'].min | humanizeBytes }} | {{ aggregated?.metrics['write-bytes'].max | humanizeBytes }} | {{ aggregated?.metrics['write-bytes'].avg | humanizeBytes }} | {{ aggregated?.metrics['write-bytes'].sum | humanizeBytes }} |
| Accumulated Backpressured Time | {{ aggregated?.metrics['accumulated-backpressured-time'].min | humanizeDuration }} | {{ aggregated?.metrics['accumulated-backpressured-time'].max | humanizeDuration }} | {{ aggregated?.metrics['accumulated-backpressured-time'].avg | humanizeDuration }} | {{ aggregated?.metrics['accumulated-backpressured-time'].sum | humanizeDuration }} |
| Accumulated Idle Time | {{ aggregated?.metrics['accumulated-idle-time'].min | humanizeDuration }} | {{ aggregated?.metrics['accumulated-idle-time'].max | humanizeDuration }} | {{ aggregated?.metrics['accumulated-idle-time'].avg | humanizeDuration }} | {{ aggregated?.metrics['accumulated-idle-time'].sum | humanizeDuration }} |
| Accumulated Busy Time | {{ aggregated?.metrics['accumulated-busy-time'].min | humanizeDuration }} | {{ aggregated?.metrics['accumulated-busy-time'].max | humanizeDuration }} | {{ aggregated?.metrics['accumulated-busy-time'].avg | humanizeDuration }} | {{ aggregated?.metrics['accumulated-busy-time'].sum | humanizeDuration }} |