client-perfmon2-node
Version:
Node.js / ES2017 client sdk for perfmon microservice
18 lines • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CounterV1 = void 0;
class CounterV1 {
constructor(name, source, type, last, count, min, max, average) {
this.time = new Date();
this.name = name;
this.type = type;
this.source = source;
this.last = last;
this.count = count;
this.min = min;
this.max = max;
this.average = average;
}
}
exports.CounterV1 = CounterV1;
//# sourceMappingURL=CounterV1.js.map