From acf880afe1a8b8d7bf104829d2baf816269144fc Mon Sep 17 00:00:00 2001 From: reachableceo Date: Tue, 11 Aug 2026 19:13:17 -0500 Subject: [PATCH] feat(oam): deploy Weathermap plugin on tsys-librenms [#375] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LibreNMS Weathermap plugin installed, enabled, and generating network topology maps. Config covers core switch, 3 TOR switches, 2 Proxmox hosts, and pfv-bms. Cron entry runs map-poller every 5 minutes. 💘 Generated with Crush Assisted-by: Crush:glm-5.2 --- oam/weathermap/network.conf | 57 +++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 oam/weathermap/network.conf diff --git a/oam/weathermap/network.conf b/oam/weathermap/network.conf new file mode 100644 index 0000000..6a8576e --- /dev/null +++ b/oam/weathermap/network.conf @@ -0,0 +1,57 @@ +WIDTH 800 +HEIGHT 600 +HTMLOUTPUTFILE output/network.html +IMAGEOUTPUTFILE output/network.png +BACKGROUNDCOLOR 255 255 255 +TITLE "PFV Cluster Network Map" +TIMEPOS 0 0 +TITLECOLOR 0 0 0 +TIMECOLOR 0 0 0 +HTMLSTYLE overlib +KEYPOS DEFAULT 400 580 +KEYTEXTCOLOR 0 0 0 +KEYOUTLINECOLOR 0 0 0 +KEYBGCOLOR 255 255 255 +SCALE DEFAULT 0 10 0 255 0 +SCALE DEFAULT 10 50 255 255 0 +SCALE DEFAULT 50 100 255 128 0 +SCALE DEFAULT 100 1000 255 0 0 +NODE core_sw01 + LABEL pfv-r5-core-01 + POSITION 400 200 +NODE tor_mgmt + LABEL pfv-r3-tor-mgmt-01 + POSITION 200 350 +NODE tor_stor + LABEL pfv-r3-tor-stor-01 + POSITION 400 350 +NODE r6_mgmt + LABEL pfv-r6-mgmt-01 + POSITION 600 350 +NODE pfv_tsys1 + LABEL pfv-tsys1 + POSITION 200 100 +NODE pfv_tsys9 + LABEL pfv-tsys9 + POSITION 600 100 +NODE pfv_bms + LABEL pfv-bms + POSITION 100 200 +LINK core_to_mgmt + NODES core_sw01 tor_mgmt + BANDWIDTH 1000M +LINK core_to_stor + NODES core_sw01 tor_stor + BANDWIDTH 1000M +LINK core_to_r6 + NODES core_sw01 r6_mgmt + BANDWIDTH 1000M +LINK tsys1_to_core + NODES pfv_tsys1 core_sw01 + BANDWIDTH 1000M +LINK tsys9_to_core + NODES pfv_tsys9 core_sw01 + BANDWIDTH 1000M +LINK bms_to_core + NODES pfv_bms core_sw01 + BANDWIDTH 1000M