readBytesPhysical

    The number of bytes physically read from a block device (i.e. disk) – Linux only

    BenchmarkMetric.swift:62
    case readBytesPhysical

    See also

    • case readSyscalls

      The number of I/O read syscalls performed e.g. read(2) / pread(2) – Linux only

    • case writeSyscalls

      The number of I/O write syscalls performed e.g. write(2) / pwrite(2) – Linux only

    • case readBytesLogical

      The number of bytes read from storage (but may be satisfied by pagecache!) – Linux only

    • case writeBytesLogical

      The number bytes written to storage (but may be cached) – Linux only

    • case writeBytesPhysical

      The number of bytes physicall written to a block device (i.e. disk) – Linux only

    Other cases