X-Git-Url: http://git.rot13.org/?p=atop-influxdb;a=blobdiff_plain;f=import-host.sh;h=8ad41f93631c4a5751caed4267c69ab22036c601;hp=12ef387e4221157ea1913a516128f1c72a4949d1;hb=HEAD;hpb=b1e6bb4fe4f1f24781d873b02eabb71598090ee9 diff --git a/import-host.sh b/import-host.sh index 12ef387..8ad41f9 100755 --- a/import-host.sh +++ b/import-host.sh @@ -1,14 +1,19 @@ #!/bin/sh host=$1 +tags=$2 +db=$3 test -z "$host" && echo "usage: $0 host" && exit 1 +test -z "$db" && db=$DB +test -z "$db" && db=atop + :> /dev/shm/atop-import-$host.sh #ssh mjesec.ffzg.hr 'ls -t /var/log/atop/atop_*' | tee /dev/shm/atop.$host.logs | while read log ssh $host 'ls -t /var/log/atop/atop_* || ls -t /var/log/atop.log*' | tee /dev/shm/atop.$host.logs cat /dev/shm/atop.$host.logs | while read log do echo "# $host:$log"; - echo ssh $host \"atopsar -A -r $log\" \| ./atop2influx.pl \| tee /dev/shm/atop.$host.influx \| curl -i -X POST http://localhost:8086/write?db=atop --data-binary '@-' >> /dev/shm/atop-import-$host.sh + echo ssh $host \"atopsar -A -r $log\" \| TAGS=$tags ./atop2influx.pl \| tee /dev/shm/atop.$host.influx \| curl -i -X POST http://localhost:8086/write?db=$db --data-binary '@-' >> /dev/shm/atop-import-$host.sh done sh -x /dev/shm/atop-import-$host.sh