diff --git a/src/app/pages/home.page/home.page.component.html b/src/app/pages/home.page/home.page.component.html index fe1a2ec..14c8bbd 100644 --- a/src/app/pages/home.page/home.page.component.html +++ b/src/app/pages/home.page/home.page.component.html @@ -150,22 +150,21 @@

No Data

- Elapsed: {{ timeShorter( - dataForFile?.statistics?.elapsed || + dataForFile?.rows || 0 ) - }} -
-
- Rows: + }} rows in set. Elapsed {{ + timeShorter( + dataForFile?.statistics?.elapsed || + 0 + ) + }}. + Processed {{ dataForFile?.statistics?.rows_read - }} -
-
- Size: + }} rows, {{ bytesToSize( @@ -174,6 +173,19 @@

No Data

) }}
+ + + ({{ + timeShorter( + (dataForFile?.statistics?.elapsed || 0) / ( parseFloat(dataForFile?.statistics?.elapsed || 0) || 0.001 ) + ) + }} rows/s. {{ + bytesToSize( + (dataForFile?.statistics?.bytes_read || 0) / ( parseFloat(dataForFile?.statistics?.elapsed || 0) || 0.001 ) + ) + }}/s.) + +