Skip to content

Commit

Permalink
feat: remove attributes on Step execution
Browse files Browse the repository at this point in the history
Resolves #1932
  • Loading branch information
oodamien authored Sep 7, 2023
1 parent 2b6e9cf commit 9083300
Showing 1 changed file with 0 additions and 80 deletions.
80 changes: 0 additions & 80 deletions ui/src/app/tasks-jobs/jobs/step/step.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,86 +212,6 @@ <h1>
<td class="left">{{ stepProgress.stepExecutionHistory.duration.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.duration.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.durationPerRead' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.durationPerRead.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.durationPerRead.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.durationPerRead.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.durationPerRead.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.durationPerRead.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.filterCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.filterCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.filterCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.filterCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.filterCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.filterCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.processSkipCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.processSkipCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.processSkipCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.processSkipCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.processSkipCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.processSkipCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.readCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.readSkipCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readSkipCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readSkipCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readSkipCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readSkipCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.readSkipCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.rollbackCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.rollbackCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.rollbackCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.rollbackCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.rollbackCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.rollbackCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.writeCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeCount.standardDeviation }}</td>
</tr>
<tr>
<td class="left">
<strong>{{ 'jobs.step.history.writeSkipCount' | translate }}</strong>
</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeSkipCount.count }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeSkipCount.min }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeSkipCount.max }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeSkipCount.mean }}</td>
<td class="left">{{ stepProgress.stepExecutionHistory.writeSkipCount.standardDeviation }}</td>
</tr>
</tbody>
</table>
</ng-template>
Expand Down

0 comments on commit 9083300

Please sign in to comment.