@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
71 lines (70 loc) • 2.2 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ECCMuxStatistics = exports.lower = exports.lift = void 0;
const VScript = require("vscript");
exports.lift = {
ECCMuxStatistics: (kwl, socket) => kwl ? (new ECCMuxStatistics(new VScript.Subtree(socket, kwl))) : null
};
exports.lower = {
ECCMuxStatistics: (ref) => ref ? ref.raw.kwl : null
};
class ECCMuxStatistics {
constructor(raw) {
this.raw = raw;
}
get err_corrected_sum() {
return new VScript.rKeyword(this, "err_corrected_sum");
}
get err_detected_sum() {
return new VScript.rKeyword(this, "err_detected_sum");
}
get err_fatal_sum() {
return new VScript.rKeyword(this, "err_fatal_sum");
}
get stats_readreq() {
return new VScript.rKeyword(this, "stats_readreq");
}
get stats_readdata() {
return new VScript.rKeyword(this, "stats_readdata");
}
get stats_readwait() {
return new VScript.rKeyword(this, "stats_readwait");
}
get stats_readwait_cmp() {
return new VScript.rKeyword(this, "stats_readwait_cmp");
}
get stats_readwait_max() {
return new VScript.rKeyword(this, "stats_readwait_max");
}
get stats_writedata() {
return new VScript.rKeyword(this, "stats_writedata");
}
get stats_writewait() {
return new VScript.rKeyword(this, "stats_writewait");
}
get stats_user_readreq() {
return new VScript.rKeyword(this, "stats_user_readreq");
}
get stats_user_readwait() {
return new VScript.rKeyword(this, "stats_user_readwait");
}
get stats_user_readwait_cmp() {
return new VScript.rKeyword(this, "stats_user_readwait_cmp");
}
get stats_user_readwait_max() {
return new VScript.rKeyword(this, "stats_user_readwait_max");
}
get max_wait_duration() {
return new VScript.rwKeyword(this, "max_wait_duration");
}
get load() {
return new VScript.rKeyword(this, "load");
}
/**
Clear statistic counter
*/
get clear() {
return new VScript.wKeyword(this, "clear");
}
}
exports.ECCMuxStatistics = ECCMuxStatistics;