queryDataAtNow.sh 590 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. #host=39.104.80.229
  3. host=127.0.0.1
  4. #pointCountArray=(1 2 3 5 10 20 30 50 100 200 300 500 1000 2000 3000 5000 10000 20000 30000 50000 100000 200000)
  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 3 2>&1 | tee -a ./log/influxdb/out.log
  13. done