summaryrefslogtreecommitdiffstats
path: root/retiolum/scripts/adv_graphgen/all_the_graphs.sh
diff options
context:
space:
mode:
authorEUcancER <root@euer.krebsco.de>2012-06-01 15:31:44 +0200
committerEUcancER <root@euer.krebsco.de>2012-06-01 15:31:44 +0200
commitff93336964b5c59bb2e7ddfb790884593d8276ba (patch)
tree4d78560fc45ff27b584446009b74677a19dcf31a /retiolum/scripts/adv_graphgen/all_the_graphs.sh
parentd72588e1da8c075daf791256593be20c9b67ea25 (diff)
//retiolum: adv_graphgen send stats via statsd
Diffstat (limited to 'retiolum/scripts/adv_graphgen/all_the_graphs.sh')
-rwxr-xr-xretiolum/scripts/adv_graphgen/all_the_graphs.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/retiolum/scripts/adv_graphgen/all_the_graphs.sh b/retiolum/scripts/adv_graphgen/all_the_graphs.sh
index 36b37f03..2a41df38 100755
--- a/retiolum/scripts/adv_graphgen/all_the_graphs.sh
+++ b/retiolum/scripts/adv_graphgen/all_the_graphs.sh
@@ -1,5 +1,13 @@
-#!/bin/sh
+#!/bin/bash
echo "`date` begin all graphs" >> /tmp/build_graph
cd $(dirname $(readlink -f $0))
+PATH=$PATH:../../../util/bin/
+begin=`timer`
(./anonytize.sh /srv/http/pub/graphs/retiolum/ && echo "`date` anonytize done" >> /tmp/build_graph)&
(./sanitize.sh /srv/http/priv/graphs/retiolum/ && echo "`date` sanitize done" >> /tmp/build_graph)&
+for job in `jobs -p`
+do
+ echo $job
+ wait $job || echo "$job failed!"
+done
+statsc "graphs.buildtime:$(timer $begin)|ms"