ups-exporter/power-exporter.js
2024-07-22 13:44:29 -04:00

40 lines
1.2 KiB
JavaScript
Executable File

import { $ } from 'bun';
import http from 'http';
const port = 3000;
async function scrape() {
const data = await $`pwrstat -status`.text();
const r = /^\s*(.+?)\.{3,} (.+)$/gm;
let found, map = {};
while(!!(found = r.exec(data)))
map[found[1]] = found[2];
return {
model: map["Model Name"],
vendor: map["Power Supply by"],
state: map["State"],
charge: Number(/\d+/g.exec(map["Battery Capacity"])[0]) / 100,
remaining: map["Remaining Runtime"],
rated_voltage: Number(/\d+/g.exec(map["Rating Voltage"])[0]),
rated_wattage: Number(/\d+/g.exec(map["Rating Power"])[0]),
input_voltage: Number(/\d+/g.exec(map["Utility Voltage"])[0]),
output_voltage: Number(/\d+/g.exec(map["Output Voltage"])[0]),
load_wattage: Number(/\d+/g.exec(map["Load"])[0]),
load_percentage: Number(/(\d+) %/g.exec(map["Load"])[1]) / 100,
last_test: map["Test Result"],
last_outage: map["Last Power Event"],
};
}
function format(a) {
return Object.entries(a).map(([key, value]) => `${key} ${typeof value == 'string' ? `"${value}"` : value}`).join('\n');
}
http.createServer(async (req, res) => {
res.end(format(await scrape()));
}).listen(port, () => {
console.log(`Exporter running on http://localhost:${port}`)
});