Skip to content

Commit

Permalink
[FLINK-35224][web] Show the JobType on Flink WebUI
Browse files Browse the repository at this point in the history
  • Loading branch information
1996fanrui committed Apr 29, 2024
1 parent 917352e commit 86de622
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export interface JobDetail {
name: string;
isStoppable: boolean;
state: string;
'job-type': string;
'start-time': number;
'end-time': number;
duration: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@
<span *ngIf="urlLoading">-</span>
</ng-template>
</nz-descriptions-item>
<nz-descriptions-item nzTitle="Job Type" *ngIf="jobDetail['job-type'] !== undefined">
{{ jobDetail['job-type'] }}
</nz-descriptions-item>
<nz-descriptions-item nzTitle="Start Time">
{{ jobDetail['start-time'] | date: 'yyyy-MM-dd HH:mm:ss.SSS' }}
</nz-descriptions-item>
Expand Down

0 comments on commit 86de622

Please sign in to comment.