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