diff --git a/frontend/src/pages/index.vue b/frontend/src/pages/index.vue index 8ec2f88..6d1b8af 100644 --- a/frontend/src/pages/index.vue +++ b/frontend/src/pages/index.vue @@ -18,11 +18,11 @@ Total: {{status.total_job_count}} -

+
Pending: {{status.pending_job_count}} -

+
Running: {{status.running_job_count}} -

+
Finished: {{status.finished_job_count}}
@@ -34,13 +34,13 @@ Total: {{status.total_worker_count}} -

+
Live: {{status.live_worker_count}} -

+
Total Logical Cores: {{status.total_logical_cores}} -

+
Total Memory: {{status.total_memory_bytes && prettyBytes(Number(status.total_memory_bytes))}} -

+
@@ -53,17 +53,17 @@ Total Workers: {{status.by_arch && status.by_arch[arch].total_worker_count}} -

+
Live Workers: {{status.by_arch && status.by_arch[arch].live_worker_count}} -

+
Total Logical Cores: {{status.by_arch && status.by_arch[arch].total_logical_cores}} -

+
Total Memory: {{status.by_arch && prettyBytes(Number(status.by_arch[arch].total_memory_bytes))}} -

+
Total Jobs: {{status.by_arch && status.by_arch[arch].total_job_count}} -

+
Pending Jobs: {{status.by_arch && status.by_arch[arch].pending_job_count}} -

+
Running Jobs: {{status.by_arch && status.by_arch[arch].running_job_count}}
diff --git a/frontend/src/pages/jobs/[id].vue b/frontend/src/pages/jobs/[id].vue index 8a287c9..e3126ff 100644 --- a/frontend/src/pages/jobs/[id].vue +++ b/frontend/src/pages/jobs/[id].vue @@ -7,27 +7,27 @@ Creation time: {{ job.creation_time }} -

+
Finish time: {{ job.finish_time }} -

+
Time elapsed: {{ job.elapsed_secs }} -

+
Git commit: {{ job.git_sha }} -

+
Git branch: {{ job.git_branch }} -

+
Architecture: {{ job.arch }} -

+
Package(s) to build: {{ job.packages }} -

+
Package(s) successfully built: {{ job.successful_packages }} -

+
Package(s) failed to build: {{ job.failed_package }} -

+
Package(s) not built due to previous build failure: {{ job.skipped_packages }} -

+
Log: {{ job.log_url }} -

+
Status: {{ job.status }}
diff --git a/frontend/src/pages/workers/[id].vue b/frontend/src/pages/workers/[id].vue index 8bc1b3f..d63857e 100644 --- a/frontend/src/pages/workers/[id].vue +++ b/frontend/src/pages/workers/[id].vue @@ -7,17 +7,20 @@ Architecture: {{ worker.arch }} -

+
Git commit: {{ worker.git_commit }} -

- Memory size: {{ prettyBytes(worker.memory_bytes) }} -

+
+ Memory size: {{ worker.memory_bytes !== undefined && prettyBytes(worker.memory_bytes) }} +
Logical cores: {{ worker.logical_cores }} -

+
Last heartbeat time: {{ worker.last_heartbeat_time }} -

- Running job id: {{ worker.running_job_id }} -

+
+ Running job id: + + {{ worker.running_job_id }} + +
Built job count: {{ worker.built_job_count }}