|
@@ -10,18 +10,18 @@ import java.util.List;
|
|
|
|
|
|
public class TestSendMultiPoint {
|
|
|
public static void main(String[] args) {
|
|
|
- String host = Globals.HOST;
|
|
|
-// String host = "192.168.50.130";
|
|
|
+// String host = Globals.HOST;
|
|
|
+ String host = "39.104.80.229";
|
|
|
|
|
|
int port = Globals.port;
|
|
|
DBApiEntry entry = DBApiEntry.initApiEntry(host, port, false);
|
|
|
|
|
|
- String pointNamePrefix = "pointName_test";
|
|
|
+ String pointNamePrefix = "pointName6_";
|
|
|
List<DBVal> dbvals = new ArrayList<DBVal>();
|
|
|
|
|
|
long timeStampBegin = Util.currentUTCMilliSeconds();
|
|
|
int pointCount = 1000;
|
|
|
- int dataCountPerPoint = 10;
|
|
|
+ int dataCountPerPoint = 1;
|
|
|
for (int pointIndex = 0; pointIndex < pointCount; pointIndex++) {
|
|
|
for(int i=0;i<dataCountPerPoint;i++) {
|
|
|
DBVal val = new DBVal();
|