queryMultiPointLastData.sh 522 B

1234567891011121314151617
  1. #!/usr/bin/env bash
  2. ROOT=$(cd `dirname $0`/../../; pwd)
  3. cd $ROOT
  4. source $ROOT/shell/tsdb/common.sh
  5. pointCountArray=(1 2 3 5 10 20 30 50 100 200)
  6. pointIndex=1
  7. for(( i=0;i<${#pointCountArray[@]};i++))
  8. do
  9. echo "----test query realtime data pointCount:${pointCountArray[i]}"
  10. java -cp ./lib/influxdb.jar demo.query.last.QueryMultiPointLastData \
  11. --host $host --pointNamePrefix pointName1_ --pointIndex ${pointIndex} --pointCount ${pointCountArray[i]} \
  12. --showQueryResult 0 2>&1 | tee -a ./log/influxdb/out.log
  13. done