import { $ } from 'bun'; import http from 'http'; const port = 1024; 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 { ups_model: map["Model Name"], ups_vendor: map["Power Supply by"], ups_state: map["State"], ups_charge: Number(/\d+/g.exec(map["Battery Capacity"])[0]) / 100, ups_remaining: map["Remaining Runtime"], ups_rated_voltage: Number(/\d+/g.exec(map["Rating Voltage"])[0]), ups_rated_wattage: Number(/\d+/g.exec(map["Rating Power"])[0]), ups_input_voltage: Number(/\d+/g.exec(map["Utility Voltage"])[0]), ups_output_voltage: Number(/\d+/g.exec(map["Output Voltage"])[0]), ups_load_wattage: Number(/\d+/g.exec(map["Load"])[0]), ups_load_percentage: Number(/(\d+) %/g.exec(map["Load"])[1]) / 100, ups_last_test: map["Test Result"], ups_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}`) });