stats property

List<int> stats

Implementation

List<int> get stats {
  final s = [
    dataIn, //IOreceived
    dataOut, //IOsent
    dataPulledDisk, //disk pulled, total diskIO
    0, //memUsed
    0 //audience
  ];
  return s;
}