seqeralabs / nf-tower

Nextflow Tower system

Home Page:https://tower.nf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Potentially incorrect units displayed for in task details component

robsyme opened this issue · comments

The task details component lists the syscr and syscw which represent the number of system call invocations, but the value is represented as a storage capacity rather than a simple integer:

get syscrFmt(): string {
const result = this.data ? FormatterUtil.humanizeStorageCapacity(this.data.syscr, 1) : null;
return this.fmt(result);
}

I think that these measurements would be better represented as simple integers (counts).