diff options
author | EUcancER <root@euer.krebsco.de> | 2012-06-22 12:50:48 +0200 |
---|---|---|
committer | EUcancER <root@euer.krebsco.de> | 2012-06-22 12:50:48 +0200 |
commit | c691aa0f3842105a153153a021f62385787e34ed (patch) | |
tree | ba8ede2d0e8d98eb2e21556c9b97b81db444b9c3 /retiolum/scripts/adv_graphgen/all_the_graphs.sh | |
parent | 589d40b33fa150d007a42d1af65b9f0c417ee7b2 (diff) |
make graphite host variable, fix bug
Diffstat (limited to 'retiolum/scripts/adv_graphgen/all_the_graphs.sh')
-rwxr-xr-x | retiolum/scripts/adv_graphgen/all_the_graphs.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/retiolum/scripts/adv_graphgen/all_the_graphs.sh b/retiolum/scripts/adv_graphgen/all_the_graphs.sh index 1640a446..5533c722 100755 --- a/retiolum/scripts/adv_graphgen/all_the_graphs.sh +++ b/retiolum/scripts/adv_graphgen/all_the_graphs.sh @@ -6,9 +6,10 @@ PATH=$PATH:../../../util/bin/ export LOG_FILE=/var/log/retiolum.log begin=`timer` + export GRAPHITE_HOST="no_omo" (./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)& # wait -# graphitec "retiolum.graph.buildtime" "$(timer $begin)" >> /tmp/build_graph + graphitec "retiolum.graph.buildtime" "$(timer $begin)" >> /tmp/build_graph echo "`date` end all graphs" >> /tmp/build_graph )& |