#!/bin/sh # # Copyright (c) 2019-2021 Mischa Peters # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # #*/5 * * * * -n /home/mischa/rrdtool/wrapper.sh # SCRIPTS="/home/mischa/rrdtool" SERVERS="18 1" MEGA="1 1" # SERVERS # Fetch uptime and version from all SERVERS for i in $(jot ${SERVERS}); do ${SCRIPTS}/uptime.sh s${i}.obsda.ms & ${SCRIPTS}/version.sh s${i}.obsda.ms & done wait # Fetch CPU load and interface statistics for i in $(jot ${SERVERS}); do ${SCRIPTS}/cpu_load.sh s${i}.obsda.ms & ${SCRIPTS}/interface.sh s${i}.obsda.ms 9 & done wait # MEGA # Fetch uptime and version from all MEGA for i in $(jot ${MEGA}); do ${SCRIPTS}/uptime.sh m${i}.obsda.ms & ${SCRIPTS}/version.sh m${i}.obsda.ms & done wait # Fetch CPU load and interface statistics for i in $(jot ${MEGA}); do ${SCRIPTS}/cpu_load.sh m${i}.obsda.ms & ${SCRIPTS}/interface.sh m${i}.obsda.ms 9 & done wait