{{ run.pipeline.display_name }}
+ Key: {{ run.pipeline.key ?? '-' }}
{{ 'runStatus.' + run.status | translate }}
- Key: {{ run.key ?? '-' }}
+ Run Key: {{ run.key ?? '-' }}
Start Time: {{ run.start_time | date: (timeformat$ | async) }}
{
const timespan = end.getTime() - start.getTime();
if (timespan <= this.minTimespanInMilliseconds) {
- return 'hh:mm:ss a';
+ return 'MMM d, h:mm:ss a';
}
- return 'hh:mm a';
- }),
- startWith('hh:mm a'),
- );
- spansMultipleDays$ = combineLatest([ this.ganttStartDate$, this.ganttEndDate$ ]).pipe(
- map(([ start, end ]) => {
- return (end.getTime() - start.getTime()) > 24 * 60 * 60 * 1000;
+ return 'MMM d, h:mm a';
}),
+ startWith('MMM d, h:mm a'),
);
private minTimespanInMilliseconds: number = 1 * 60 * 1000;
diff --git a/observability_ui/apps/shell/src/app/projects/overview/overview.component.html b/observability_ui/apps/shell/src/app/projects/overview/overview.component.html
index 0ce9b2d..76a955f 100644
--- a/observability_ui/apps/shell/src/app/projects/overview/overview.component.html
+++ b/observability_ui/apps/shell/src/app/projects/overview/overview.component.html
@@ -145,9 +145,9 @@ {{ 'overview' | translate }}
{{ instance.errorAlertsCount }}
errors, {{ instance.warningAlertsCount }} warnings
Total Runs: {{ instance.runsCount }}
- Start Time: {{ instance.start_time | date:'MMM d, hh:mm a' }}
+ Start Time: {{ instance.start_time | date:'MMM d, h:mm a' }}
End Time: {{ instance.end_time | date:'MMM d, hh:mm a' }}
+ class="gantt-bar-tooltip--line gantt-bar-tooltip--end">End Time: {{ instance.end_time | date:'MMM d, h:mm a' }}
Duration: {{ instance.start_time | duration:instance.end_time }}
@@ -155,12 +155,12 @@
{{ 'overview' | translate }}
- Expected Start Time: {{ instance.start_time | date:'MMM d, hh:mm a' }}
+ Expected Start Time: {{ instance.start_time | date:'MMM d, h:mm a' }}
- Expected End Time: {{ instance.end_time | date:'MMM d, hh:mm a' }}
+ Expected End Time: {{ instance.end_time | date:'MMM d, h:mm a' }}
@@ -246,9 +246,9 @@ {{ 'overview' | translate }}
{{ directive.value.active ? 'Active' : 'Ended' }}
{{ directive.value.errorAlertsCount }}
errors, {{ directive.value.warningAlertsCount }} warnings
- Start Time: {{ directive.value.start_time | date:'MMM d, hh:mm a' }}
+ Start Time: {{ directive.value.start_time | date:'MMM d, h:mm a' }}
End Time: {{ directive.value.end_time | date:'MMM d, hh:mm a' }}
+ class="gantt-bar-tooltip--line gantt-bar-tooltip--end">End Time: {{ directive.value.end_time | date:'MMM d, h:mm a' }}
Duration: {{ directive.value.start_time | duration:directive.value.end_time }}
Total Runs: {{ directive.value.runsCount }}
@@ -256,12 +256,12 @@ {{ 'overview' | translate }}
- Expected Start Time: {{ directive.value.start_time | date:'MMM d, hh:mm a' }}
+ Expected Start Time: {{ directive.value.start_time | date:'MMM d, h:mm a' }}
- Expected End Time: {{ directive.value.end_time | date:'MMM d, hh:mm a' }}
+ Expected End Time: {{ directive.value.end_time | date:'MMM d, h:mm a' }}
@@ -290,9 +290,9 @@ {{ 'overview' | translate }}
{{ 'runStatus.' + run.status | translate }}
Key: {{ run.key ?? '-' }}
Start Time: {{ run.start_time | date: 'MMM d, hh:mm a' }}
+ class="gantt-bar-tooltip--line gantt-bar-tooltip--start">Start Time: {{ run.start_time | date: 'MMM d, h:mm a' }}
End Time: {{ run.end_time | date: 'MMM d, hh:mm a' }}
+ class="gantt-bar-tooltip--line gantt-bar-tooltip--end">End Time: {{ run.end_time | date: 'MMM d, h:mm a' }}
Duration: {{ run.start_time | duration: (run.end_time ?? (now$ | async)) }}
diff --git a/observability_ui/apps/shell/src/app/projects/runs/run-tests/run-tests.component.html b/observability_ui/apps/shell/src/app/projects/runs/run-tests/run-tests.component.html
index da72a05..34bf607 100644
--- a/observability_ui/apps/shell/src/app/projects/runs/run-tests/run-tests.component.html
+++ b/observability_ui/apps/shell/src/app/projects/runs/run-tests/run-tests.component.html
@@ -114,6 +114,50 @@
{{test.description || '-'}}