Skip to content

Instantly share code, notes, and snippets.

@lyda
lyda / metrics.lua
Last active December 10, 2025 06:48
Prometheus node-exporter in lua for openwrt
#!/usr/bin/lua
-- Metrics web server (0.1)
-- Copyright (c) 2015 Kevin Lyda
-- Apache 2.0 License
socket = require("socket")
netsubstat = {"IcmpMsg", "Icmp", "IpExt", "Ip", "TcpExt", "Tcp", "UdpLite", "Udp"}
cpu_mode = {"user", "nice", "system", "idle", "iowait", "irq",
"softirq", "steal", "guest", "guest_nice"}
netdevsubstat = {"receive_bytes", "receive_packets", "receive_errs",
@xuechunL
xuechunL / cloudSettings
Last active February 12, 2020 02:31
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-02-12T02:30:43.197Z","extensionVersion":"v3.4.3"}
@9names
9names / Cargo.toml
Created April 4, 2023 13:31
basic PAC blinky for ch32v003
[package]
name = "hello-wch"
version = "0.1.0"
edition = "2021"
[dependencies]
panic-halt = "0.2.0"
riscv-rt = "0.11.0"
embedded-hal = "0.2.7"