- #!/usr/bin/env bash
- #host=39.104.80.229
- host=127.0.0.1
- pointIndex=1
- pointCount=10
- echo "----test query points last data pointIndex:${pointIndex} pointCount:${pointCount}"
- java -cp ./lib/influxdb.jar demo.query.last.QueryMultiPointLastData \
- --host $host --pointNamePrefix pointName1_ --pointIndex ${pointIndex} --pointCount ${pointCount} \
- --showQueryResult 20 2>&1 | tee -a ./log/influxdb/out.log
|