12345678910111213141516171819202122232425 |
- #!/usr/bin/env bash
- #host=39.104.80.229
- host=127.0.0.1
- java -cp ./lib/tsdb.jar demo.query.histQuery.AggHistDataOverTime \
- --host=$host --pointNamePrefix=pointName_ --pointCount=1 \
- --beginDate="2021-03-01 00:00:00" --endDate="2021-03-01 00:16:38" --aggMethod=max \
- --showQueryResult=10000
- #java -cp ./lib/tsdb.jar demo.query.histQuery.AggHistDataOverTime \
- #--host=$host --pointNamePrefix=pointName_ --pointCount=1 \
- #--beginDate="2021-03-01 00:00:00" --endDate="2021-03-01 00:16:38" --aggMethod=min \
- # --showQueryResult=10000
- #java -cp ./lib/tsdb.jar demo.query.histQuery.AggHistDataOverTime \
- #--host=$host --pointNamePrefix=pointName_ --pointCount=1 \
- #--beginDate="2021-03-01 00:00:00" --endDate="2021-03-01 00:16:38" --aggMethod=avg \
- # --showQueryResult=10000
- #java -cp ./lib/tsdb.jar demo.query.histQuery.AggHistDataOverTime \
- #--host=$host --pointNamePrefix=pointName_ --pointCount=1 \
- #--beginDate="2021-03-01 00:00:00" --endDate="2021-03-01 00:16:38" --aggMethod=count \
- # --showQueryResult=10000
|