mirror of
https://github.com/openwrt/packages.git
synced 2025-07-10 00:39:01 +00:00
This is a port of prometheus-node-exporter-lua to ucode. Signed-off-by: Andre Heider <a.heider@gmail.com>
11 lines
214 B
Ucode
11 lines
214 B
Ucode
const mode = oneline("/sys/fs/selinux/enforce");
|
|
const enabled = gauge("node_selinux_enabled");
|
|
|
|
if (mode == null) {
|
|
enabled(null, 0);
|
|
return;
|
|
}
|
|
|
|
enabled(null, 1);
|
|
gauge("node_selinux_current_mode")(null, mode);
|