toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final completedParallelInputs = this.completedParallelInputs;
final computeMode = this.computeMode;
final computeMsAvg = this.computeMsAvg;
final computeMsMax = this.computeMsMax;
final computeRatioAvg = this.computeRatioAvg;
final computeRatioMax = this.computeRatioMax;
final endMs = this.endMs;
final id = this.id;
final inputStages = this.inputStages;
final name = this.name;
final parallelInputs = this.parallelInputs;
final readMsAvg = this.readMsAvg;
final readMsMax = this.readMsMax;
final readRatioAvg = this.readRatioAvg;
final readRatioMax = this.readRatioMax;
final recordsRead = this.recordsRead;
final recordsWritten = this.recordsWritten;
final shuffleOutputBytes = this.shuffleOutputBytes;
final shuffleOutputBytesSpilled = this.shuffleOutputBytesSpilled;
final slotMs = this.slotMs;
final startMs = this.startMs;
final status = this.status;
final steps = this.steps;
final waitMsAvg = this.waitMsAvg;
final waitMsMax = this.waitMsMax;
final waitRatioAvg = this.waitRatioAvg;
final waitRatioMax = this.waitRatioMax;
final writeMsAvg = this.writeMsAvg;
final writeMsMax = this.writeMsMax;
final writeRatioAvg = this.writeRatioAvg;
final writeRatioMax = this.writeRatioMax;
return {
'completedParallelInputs': ?completedParallelInputs,
'computeMode': ?computeMode,
'computeMsAvg': ?computeMsAvg,
'computeMsMax': ?computeMsMax,
'computeRatioAvg': ?computeRatioAvg,
'computeRatioMax': ?computeRatioMax,
'endMs': ?endMs,
'id': ?id,
'inputStages': ?inputStages,
'name': ?name,
'parallelInputs': ?parallelInputs,
'readMsAvg': ?readMsAvg,
'readMsMax': ?readMsMax,
'readRatioAvg': ?readRatioAvg,
'readRatioMax': ?readRatioMax,
'recordsRead': ?recordsRead,
'recordsWritten': ?recordsWritten,
'shuffleOutputBytes': ?shuffleOutputBytes,
'shuffleOutputBytesSpilled': ?shuffleOutputBytesSpilled,
'slotMs': ?slotMs,
'startMs': ?startMs,
'status': ?status,
'steps': ?steps,
'waitMsAvg': ?waitMsAvg,
'waitMsMax': ?waitMsMax,
'waitRatioAvg': ?waitRatioAvg,
'waitRatioMax': ?waitRatioMax,
'writeMsAvg': ?writeMsAvg,
'writeMsMax': ?writeMsMax,
'writeRatioAvg': ?writeRatioAvg,
'writeRatioMax': ?writeRatioMax,
};
}