- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
20 lines
481 B
JavaScript
20 lines
481 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "flushAndExit", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return flushAndExit;
|
|
}
|
|
});
|
|
const _shared = require("../trace/shared");
|
|
async function flushAndExit(code) {
|
|
let telemetry = _shared.traceGlobals.get('telemetry');
|
|
if (telemetry) {
|
|
await telemetry.flush();
|
|
}
|
|
process.exit(code);
|
|
}
|
|
|
|
//# sourceMappingURL=flush-and-exit.js.map
|