mirror of
https://github.com/luoyan35714/OPC_Client.git
synced 2026-04-18 00:01:30 +08:00
Add the Utgard resources
This commit is contained in:
@@ -1,10 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src/main/java"/>
|
||||
<classpathentry kind="src" path="src/main/resources"/>
|
||||
<classpathentry kind="lib" path="lib/org.openscada.opc.dcom_1.1.0.v20130529.jar"/>
|
||||
<classpathentry kind="lib" path="lib/org.openscada.opc.lib_1.1.0.v20130529.jar"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
|
||||
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry including="**/*.java" kind="src" path="src/main/resources"/>
|
||||
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
<name>OPC_Client_Utgard_Performance</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
<project>org.openscada.opc.dcom</project>
|
||||
<project>org.openscada.opc.lib</project>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -4,28 +4,8 @@
|
||||
<groupId>com.freud.opc</groupId>
|
||||
<artifactId>OPC_Client_Utgard_Performance</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<build>
|
||||
<sourceDirectory>src</sourceDirectory>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.0</version>
|
||||
<configuration>
|
||||
<source>1.6</source>
|
||||
<target>1.6</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!--
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
<version>1.2.16</version>
|
||||
</dependency>
|
||||
-->
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-log4j12</artifactId>
|
||||
@@ -42,6 +22,18 @@
|
||||
<artifactId>j-interop</artifactId>
|
||||
<version>2.0.5</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.openscada.opc.dcom</groupId>
|
||||
<artifactId>org.openscada.opc.dcom</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.openscada.utgard</groupId>
|
||||
<artifactId>org.openscada.opc.lib</artifactId>
|
||||
<version>1.1.0.v20130529</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
+2
-9
@@ -47,8 +47,8 @@ public class SyncPerfTest {
|
||||
OPCGroupStateMgt group = server.addGroup("", true, 1000, 1234, 0, 0.0f,
|
||||
1033);
|
||||
|
||||
//group.getSyncIO().read(source, serverHandles)
|
||||
|
||||
// group.getSyncIO().read(source, serverHandles)
|
||||
|
||||
OPCITEMDEF item = new OPCITEMDEF();
|
||||
|
||||
item.setActive(true);
|
||||
@@ -57,18 +57,13 @@ public class SyncPerfTest {
|
||||
|
||||
group.attach(new IOPCDataCallback() {
|
||||
|
||||
@Override
|
||||
public void writeComplete(int arg0, int arg1, int arg2,
|
||||
ResultSet<Integer> arg3) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readComplete(int arg0, int arg1, int arg2, int arg3,
|
||||
KeyedResultSet<Integer, ValueData> arg4) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dataChange(int arg0, int arg1, int arg2, int arg3,
|
||||
KeyedResultSet<Integer, ValueData> items) {
|
||||
for (KeyedResult<Integer, ValueData> item : items) {
|
||||
@@ -76,8 +71,6 @@ public class SyncPerfTest {
|
||||
+ item.getValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelComplete(int arg0, int arg1) {
|
||||
|
||||
}
|
||||
|
||||
+118
@@ -0,0 +1,118 @@
|
||||
package com.freud.opc.utgard.perf;
|
||||
|
||||
import static com.freud.opc.utgard.perf.config.ConfigReader.config;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.log4j.Logger;
|
||||
import org.openscada.opc.dcom.common.KeyedResult;
|
||||
import org.openscada.opc.dcom.common.KeyedResultSet;
|
||||
import org.openscada.opc.dcom.common.ResultSet;
|
||||
import org.openscada.opc.dcom.da.IOPCDataCallback;
|
||||
import org.openscada.opc.dcom.da.OPCDATASOURCE;
|
||||
import org.openscada.opc.dcom.da.ValueData;
|
||||
import org.openscada.opc.dcom.da.impl.OPCAsyncIO2;
|
||||
import org.openscada.opc.lib.common.NotConnectedException;
|
||||
import org.openscada.opc.lib.da.Group;
|
||||
import org.openscada.opc.lib.da.Item;
|
||||
import org.openscada.opc.lib.da.Server;
|
||||
|
||||
public class AsyncMultiThreadTest {
|
||||
|
||||
private static final int count = 50;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
for (int i = 1; i <= count; i++) {
|
||||
new Thread(new AsyncMulti(i)).start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class AsyncMulti implements Runnable {
|
||||
|
||||
private static Logger LOGGER = Logger.getLogger(AsyncMulti.class);
|
||||
|
||||
private static final int NUMBER = 4000;
|
||||
private int count_number;
|
||||
|
||||
private static long start;
|
||||
private static long read;
|
||||
private static long end;
|
||||
|
||||
public AsyncMulti(int count_number) {
|
||||
this.count_number = count_number;
|
||||
}
|
||||
|
||||
public void run() {
|
||||
try {
|
||||
start = System.currentTimeMillis();
|
||||
|
||||
LOGGER.info("Step-" + count_number * NUMBER + " site:");
|
||||
LOGGER.info("StartDate[" + new Date() + "],CurrentMillis:" + start);
|
||||
|
||||
Server server = new Server(config(),
|
||||
Executors.newScheduledThreadPool(4));
|
||||
|
||||
server.connect();
|
||||
|
||||
final Group group = server.addGroup("Group-" + count_number);
|
||||
group.setActive(true);
|
||||
Item[] items = new Item[NUMBER];
|
||||
|
||||
for (int i = (count_number - 1) * NUMBER; i < count_number * NUMBER; i++) {
|
||||
items[i % NUMBER] = group.addItem("Random.Int" + i);
|
||||
}
|
||||
|
||||
read = System.currentTimeMillis();
|
||||
group.attach(new IOPCDataCallback() {
|
||||
|
||||
public void writeComplete(int arg0, int arg1, int arg2,
|
||||
ResultSet<Integer> arg3) {
|
||||
}
|
||||
|
||||
public void readComplete(int arg0, int arg1, int arg2,
|
||||
int arg3, KeyedResultSet<Integer, ValueData> arg4) {
|
||||
}
|
||||
|
||||
public void dataChange(int arg0, int arg1, int arg2, int arg3,
|
||||
KeyedResultSet<Integer, ValueData> result) {
|
||||
int i = 0;
|
||||
for (final KeyedResult<Integer, ValueData> entry : result) {
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i == NUMBER) {
|
||||
end = System.currentTimeMillis();
|
||||
LOGGER.info("Total Use[" + (end - start)
|
||||
+ "] and Async Read[" + (end - read) + "]");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void cancelComplete(int arg0, int arg1) {
|
||||
}
|
||||
});
|
||||
|
||||
final OPCAsyncIO2 async20 = group.getAsyncIO20();
|
||||
if (async20 == null) {
|
||||
throw new NotConnectedException();
|
||||
}
|
||||
|
||||
group.getAsyncIO20().refresh(OPCDATASOURCE.OPC_DS_CACHE, 0);
|
||||
|
||||
group.setActive(false);
|
||||
|
||||
Thread.sleep(3000);
|
||||
|
||||
group.clear();
|
||||
group.remove();
|
||||
|
||||
server.disconnect();
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
+40
-41
@@ -3,7 +3,6 @@ package com.freud.opc.utgard.perf;
|
||||
import static com.freud.opc.utgard.perf.config.ConfigReader.config;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Iterator;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
@@ -16,18 +15,19 @@ import org.openscada.opc.dcom.da.ValueData;
|
||||
import org.openscada.opc.dcom.da.impl.OPCAsyncIO2;
|
||||
import org.openscada.opc.lib.common.NotConnectedException;
|
||||
import org.openscada.opc.lib.da.Group;
|
||||
import org.openscada.opc.lib.da.Item;
|
||||
import org.openscada.opc.lib.da.Server;
|
||||
|
||||
public class AsyncOPCPerfTest {
|
||||
|
||||
private static Logger LOGGER = Logger.getLogger(AsyncOPCPerfTest.class);
|
||||
|
||||
private static final int NUMBER = 10;
|
||||
private static final int count = 1;
|
||||
public static long start;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
private static final int count = 4000;
|
||||
private static long start;
|
||||
private static long read;
|
||||
private static long end;
|
||||
|
||||
private static void testSteps(final int count) throws Exception {
|
||||
start = System.currentTimeMillis();
|
||||
|
||||
LOGGER.info("Step-" + count + "W:");
|
||||
@@ -38,62 +38,61 @@ public class AsyncOPCPerfTest {
|
||||
|
||||
server.connect();
|
||||
|
||||
Group group = server.addGroup("Freud");
|
||||
// AsyncResult result = group.getAsyncIO20().read(transactionId,
|
||||
// serverHandles);
|
||||
Group group = server.addGroup("Group");
|
||||
group.setActive(true);
|
||||
Item[] items = new Item[count];
|
||||
|
||||
group.addItem("Read Error.Int1");
|
||||
group.addItem("Random.Int1");
|
||||
|
||||
OPCAsyncIO2 async20 = group.getAsyncIO20();
|
||||
|
||||
if (async20 == null)
|
||||
throw new NotConnectedException();
|
||||
async20.refresh(OPCDATASOURCE.OPC_DS_DEVICE, 0);
|
||||
for (int i = 1; i <= count; i++) {
|
||||
items[i - 1] = group.addItem("Random.Int" + i);
|
||||
}
|
||||
|
||||
read = System.currentTimeMillis();
|
||||
group.attach(new IOPCDataCallback() {
|
||||
|
||||
@Override
|
||||
public void writeComplete(int arg0, int arg1, int arg2,
|
||||
ResultSet<Integer> arg3) {
|
||||
System.out.println("Write Complete");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readComplete(int arg0, int arg1, int arg2, int arg3,
|
||||
KeyedResultSet<Integer, ValueData> arg4) {
|
||||
System.out.println("Read Complete");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dataChange(int arg0, int arg1, int arg2, int arg3,
|
||||
KeyedResultSet<Integer, ValueData> arg4) {
|
||||
Iterator<KeyedResult<Integer, ValueData>> ite = arg4.iterator();
|
||||
KeyedResultSet<Integer, ValueData> result) {
|
||||
int i = 0;
|
||||
while (ite.hasNext()) {
|
||||
KeyedResult<Integer, ValueData> value = ite.next();
|
||||
System.out.println((++i) + "-" + value.getKey() + "--"
|
||||
+ value.getValue().getValue());
|
||||
for (final KeyedResult<Integer, ValueData> entry : result) {
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i == count) {
|
||||
end = System.currentTimeMillis();
|
||||
LOGGER.info("Total Use[" + (end - start)
|
||||
+ "] and Async Read[" + (end - read) + "]");
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelComplete(int arg0, int arg1) {
|
||||
System.out.println("Cancel Complete");
|
||||
}
|
||||
});
|
||||
|
||||
// AccessBase access = new SyncAccess(server, 1000);
|
||||
//
|
||||
// int limit = count * NUMBER;
|
||||
// for (int i = 0; i < limit; i++) {
|
||||
// access.addItem("Random.Real" + i, new DataCallBackListener(limit));
|
||||
// }
|
||||
//
|
||||
// access.bind();
|
||||
Thread.sleep(100000);
|
||||
// access.unbind();
|
||||
final OPCAsyncIO2 async20 = group.getAsyncIO20();
|
||||
if (async20 == null) {
|
||||
throw new NotConnectedException();
|
||||
}
|
||||
|
||||
server.dispose();
|
||||
group.getAsyncIO20().refresh(OPCDATASOURCE.OPC_DS_CACHE, 0);
|
||||
|
||||
group.setActive(false);
|
||||
|
||||
Thread.sleep(3000);
|
||||
|
||||
group.clear();
|
||||
group.remove();
|
||||
|
||||
server.disconnect();
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
testSteps(count);
|
||||
}
|
||||
}
|
||||
|
||||
+2
-9
@@ -3,7 +3,6 @@ package com.freud.opc.utgard.perf;
|
||||
import static com.freud.opc.utgard.perf.config.ConfigReader.config;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
@@ -11,16 +10,14 @@ import org.openscada.opc.dcom.common.KeyedResultSet;
|
||||
import org.openscada.opc.dcom.common.ResultSet;
|
||||
import org.openscada.opc.dcom.da.IOPCDataCallback;
|
||||
import org.openscada.opc.dcom.da.ValueData;
|
||||
import org.openscada.opc.lib.da.Async20Access;
|
||||
import org.openscada.opc.lib.da.Group;
|
||||
import org.openscada.opc.lib.da.Item;
|
||||
import org.openscada.opc.lib.da.Server;
|
||||
|
||||
public class PublishOPCPerfTest {
|
||||
|
||||
private static Logger LOGGER = Logger.getLogger(PublishOPCPerfTest.class);
|
||||
|
||||
private static final int NUMBER = 10000;
|
||||
//private static final int NUMBER = 10000;
|
||||
private static final int WAN_NUMBER = 1;
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
@@ -42,27 +39,23 @@ public class PublishOPCPerfTest {
|
||||
|
||||
Group group = server.addGroup("Group");
|
||||
|
||||
Map<String, Item> map = group.addItems("Random.int" + 1);
|
||||
//Map<String, Item> map = group.addItems("Random.int" + 1);
|
||||
|
||||
group.attach(new IOPCDataCallback() {
|
||||
|
||||
@Override
|
||||
public void writeComplete(int i, int j, int k,
|
||||
ResultSet<Integer> resultset) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readComplete(int i, int j, int k, int l,
|
||||
KeyedResultSet<Integer, ValueData> keyedresultset) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dataChange(int i, int j, int k, int l,
|
||||
KeyedResultSet<Integer, ValueData> keyedresultset) {
|
||||
System.out.println("DataChanged");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelComplete(int i, int j) {
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
package com.freud.opc.utgard.perf;
|
||||
|
||||
import static com.freud.opc.utgard.perf.config.ConfigReader.config;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.openscada.opc.dcom.common.KeyedResultSet;
|
||||
import org.openscada.opc.dcom.common.ResultSet;
|
||||
import org.openscada.opc.dcom.da.IOPCDataCallback;
|
||||
import org.openscada.opc.dcom.da.ValueData;
|
||||
import org.openscada.opc.lib.da.Group;
|
||||
import org.openscada.opc.lib.da.Item;
|
||||
import org.openscada.opc.lib.da.Server;
|
||||
|
||||
public class Test {
|
||||
private static Logger LOGGER = Logger.getLogger(Test.class);
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
long start = System.currentTimeMillis();
|
||||
|
||||
LOGGER.info("Step-" + 10 + "W:");
|
||||
LOGGER.info("StartDate[" + new Date() + "],CurrentMillis:" + start);
|
||||
|
||||
Server server = new Server(config(),
|
||||
Executors.newSingleThreadScheduledExecutor());
|
||||
|
||||
server.connect();
|
||||
|
||||
Group group = server.addGroup();
|
||||
Item item = group.addItem("Random.int4");
|
||||
|
||||
group.setActive(true);
|
||||
group.setActive(true, item);
|
||||
|
||||
group.attach(new IOPCDataCallback() {
|
||||
|
||||
@Override
|
||||
public void writeComplete(int i, int j, int k,
|
||||
ResultSet<Integer> resultset) {
|
||||
System.out.println("Write Complete");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readComplete(int i, int j, int k, int l,
|
||||
KeyedResultSet<Integer, ValueData> keyedresultset) {
|
||||
System.out.println("Read Complete");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void dataChange(int i, int j, int k, int l,
|
||||
KeyedResultSet<Integer, ValueData> keyedresultset) {
|
||||
System.out.println("Data change");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cancelComplete(int i, int j) {
|
||||
System.out.println("Cancel Complete");
|
||||
}
|
||||
});
|
||||
|
||||
Thread.sleep(10 * 1000);
|
||||
|
||||
server.disconnect();
|
||||
}
|
||||
}
|
||||
-38
@@ -1,38 +0,0 @@
|
||||
package com.freud.opc.utgard.perf.common;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
import org.openscada.opc.lib.da.DataCallback;
|
||||
import org.openscada.opc.lib.da.Item;
|
||||
import org.openscada.opc.lib.da.ItemState;
|
||||
|
||||
import com.freud.opc.utgard.perf.AsyncOPCPerfTest;
|
||||
|
||||
public class DataCallBackListener implements DataCallback {
|
||||
|
||||
private static Logger LOGGER = Logger.getLogger(DataCallBackListener.class);
|
||||
|
||||
private static List<String> items = new ArrayList<String>();
|
||||
|
||||
private int size;
|
||||
|
||||
public DataCallBackListener(int size) {
|
||||
this.size = size;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void changed(Item item, ItemState is) {
|
||||
LOGGER.info("Item:[" + item.getId() + "], Value:[" + is.getValue()
|
||||
+ "]");
|
||||
items.add(item.getId());
|
||||
if (items.size() == size) {
|
||||
long end = System.currentTimeMillis();
|
||||
LOGGER.info("EndDate[" + new Date() + "],CurrentMillis:" + end);
|
||||
LOGGER.info("Total Spend:[" + (end - AsyncOPCPerfTest.start) + "]");
|
||||
System.exit(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,12 +1,101 @@
|
||||
2014-12-09 10:18:20,882-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:18:20,885-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:18:20 CST 2014],CurrentMillis:1418091500881
|
||||
2014-12-09 10:18:38,649-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:18:38,651-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:18:38 CST 2014],CurrentMillis:1418091518648
|
||||
2014-12-09 10:19:05,380-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:19:05,382-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:19:05 CST 2014],CurrentMillis:1418091545379
|
||||
2014-12-09 10:21:34,695-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:21:34,698-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:21:34 CST 2014],CurrentMillis:1418091694695
|
||||
2014-12-09 10:23:48,822-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:23:48,824-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:23:48 CST 2014],CurrentMillis:1418091828821
|
||||
2014-12-09 10:27:05,952-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:27:05,955-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:27:05 CST 2014],CurrentMillis:1418092025952
|
||||
2014-12-10 17:39:43,078-[TS] INFO Thread-0 com.freud.opc.utgard.perf.AsyncMulti - Step-4000 site:
|
||||
2014-12-10 17:39:43,078-[TS] INFO Thread-1 com.freud.opc.utgard.perf.AsyncMulti - Step-8000 site:
|
||||
2014-12-10 17:39:43,079-[TS] INFO Thread-3 com.freud.opc.utgard.perf.AsyncMulti - Step-16000 site:
|
||||
2014-12-10 17:39:43,081-[TS] INFO Thread-0 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383078
|
||||
2014-12-10 17:39:43,082-[TS] INFO Thread-1 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383078
|
||||
2014-12-10 17:39:43,085-[TS] INFO Thread-3 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383078
|
||||
2014-12-10 17:39:43,086-[TS] INFO Thread-4 com.freud.opc.utgard.perf.AsyncMulti - Step-20000 site:
|
||||
2014-12-10 17:39:43,086-[TS] INFO Thread-4 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383086
|
||||
2014-12-10 17:39:43,086-[TS] INFO Thread-5 com.freud.opc.utgard.perf.AsyncMulti - Step-24000 site:
|
||||
2014-12-10 17:39:43,087-[TS] INFO Thread-5 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383086
|
||||
2014-12-10 17:39:43,087-[TS] INFO Thread-7 com.freud.opc.utgard.perf.AsyncMulti - Step-32000 site:
|
||||
2014-12-10 17:39:43,087-[TS] INFO Thread-7 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383087
|
||||
2014-12-10 17:39:43,088-[TS] INFO Thread-8 com.freud.opc.utgard.perf.AsyncMulti - Step-36000 site:
|
||||
2014-12-10 17:39:43,088-[TS] INFO Thread-8 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383088
|
||||
2014-12-10 17:39:43,088-[TS] INFO Thread-9 com.freud.opc.utgard.perf.AsyncMulti - Step-40000 site:
|
||||
2014-12-10 17:39:43,088-[TS] INFO Thread-9 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383088
|
||||
2014-12-10 17:39:43,089-[TS] INFO Thread-2 com.freud.opc.utgard.perf.AsyncMulti - Step-12000 site:
|
||||
2014-12-10 17:39:43,089-[TS] INFO Thread-6 com.freud.opc.utgard.perf.AsyncMulti - Step-28000 site:
|
||||
2014-12-10 17:39:43,089-[TS] INFO Thread-10 com.freud.opc.utgard.perf.AsyncMulti - Step-44000 site:
|
||||
2014-12-10 17:39:43,089-[TS] INFO Thread-14 com.freud.opc.utgard.perf.AsyncMulti - Step-60000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-18 com.freud.opc.utgard.perf.AsyncMulti - Step-76000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-22 com.freud.opc.utgard.perf.AsyncMulti - Step-92000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-26 com.freud.opc.utgard.perf.AsyncMulti - Step-108000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-30 com.freud.opc.utgard.perf.AsyncMulti - Step-124000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-34 com.freud.opc.utgard.perf.AsyncMulti - Step-140000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-38 com.freud.opc.utgard.perf.AsyncMulti - Step-156000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-42 com.freud.opc.utgard.perf.AsyncMulti - Step-172000 site:
|
||||
2014-12-10 17:39:43,090-[TS] INFO Thread-46 com.freud.opc.utgard.perf.AsyncMulti - Step-188000 site:
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-46 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-42 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-38 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-34 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-30 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,092-[TS] INFO Thread-26 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-22 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-18 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-14 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383090
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-11 com.freud.opc.utgard.perf.AsyncMulti - Step-48000 site:
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-10 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383093
|
||||
2014-12-10 17:39:43,093-[TS] INFO Thread-11 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383093
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-12 com.freud.opc.utgard.perf.AsyncMulti - Step-52000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-49 com.freud.opc.utgard.perf.AsyncMulti - Step-200000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-47 com.freud.opc.utgard.perf.AsyncMulti - Step-192000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-44 com.freud.opc.utgard.perf.AsyncMulti - Step-180000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-41 com.freud.opc.utgard.perf.AsyncMulti - Step-168000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-39 com.freud.opc.utgard.perf.AsyncMulti - Step-160000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-36 com.freud.opc.utgard.perf.AsyncMulti - Step-148000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-33 com.freud.opc.utgard.perf.AsyncMulti - Step-136000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-31 com.freud.opc.utgard.perf.AsyncMulti - Step-128000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-28 com.freud.opc.utgard.perf.AsyncMulti - Step-116000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-25 com.freud.opc.utgard.perf.AsyncMulti - Step-104000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-23 com.freud.opc.utgard.perf.AsyncMulti - Step-96000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-20 com.freud.opc.utgard.perf.AsyncMulti - Step-84000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-17 com.freud.opc.utgard.perf.AsyncMulti - Step-72000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-15 com.freud.opc.utgard.perf.AsyncMulti - Step-64000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-45 com.freud.opc.utgard.perf.AsyncMulti - Step-184000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-48 com.freud.opc.utgard.perf.AsyncMulti - Step-196000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-13 com.freud.opc.utgard.perf.AsyncMulti - Step-56000 site:
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-6 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,097-[TS] INFO Thread-13 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-16 com.freud.opc.utgard.perf.AsyncMulti - Step-68000 site:
|
||||
2014-12-10 17:39:43,097-[TS] INFO Thread-16 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-19 com.freud.opc.utgard.perf.AsyncMulti - Step-80000 site:
|
||||
2014-12-10 17:39:43,097-[TS] INFO Thread-19 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-21 com.freud.opc.utgard.perf.AsyncMulti - Step-88000 site:
|
||||
2014-12-10 17:39:43,097-[TS] INFO Thread-21 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-24 com.freud.opc.utgard.perf.AsyncMulti - Step-100000 site:
|
||||
2014-12-10 17:39:43,097-[TS] INFO Thread-24 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-27 com.freud.opc.utgard.perf.AsyncMulti - Step-112000 site:
|
||||
2014-12-10 17:39:43,098-[TS] INFO Thread-27 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-29 com.freud.opc.utgard.perf.AsyncMulti - Step-120000 site:
|
||||
2014-12-10 17:39:43,098-[TS] INFO Thread-29 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-32 com.freud.opc.utgard.perf.AsyncMulti - Step-132000 site:
|
||||
2014-12-10 17:39:43,098-[TS] INFO Thread-32 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,099-[TS] INFO Thread-48 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-35 com.freud.opc.utgard.perf.AsyncMulti - Step-144000 site:
|
||||
2014-12-10 17:39:43,099-[TS] INFO Thread-35 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-37 com.freud.opc.utgard.perf.AsyncMulti - Step-152000 site:
|
||||
2014-12-10 17:39:43,099-[TS] INFO Thread-37 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,099-[TS] INFO Thread-45 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-40 com.freud.opc.utgard.perf.AsyncMulti - Step-164000 site:
|
||||
2014-12-10 17:39:43,100-[TS] INFO Thread-40 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,100-[TS] INFO Thread-15 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,096-[TS] INFO Thread-43 com.freud.opc.utgard.perf.AsyncMulti - Step-176000 site:
|
||||
2014-12-10 17:39:43,100-[TS] INFO Thread-43 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,101-[TS] INFO Thread-17 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,101-[TS] INFO Thread-20 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,101-[TS] INFO Thread-23 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,102-[TS] INFO Thread-25 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,102-[TS] INFO Thread-28 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,098-[TS] INFO Thread-2 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,102-[TS] INFO Thread-31 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,102-[TS] INFO Thread-33 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,103-[TS] INFO Thread-36 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,103-[TS] INFO Thread-39 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,104-[TS] INFO Thread-41 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,104-[TS] INFO Thread-44 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,104-[TS] INFO Thread-47 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,105-[TS] INFO Thread-49 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
2014-12-10 17:39:43,106-[TS] INFO Thread-12 com.freud.opc.utgard.perf.AsyncMulti - StartDate[Wed Dec 10 17:39:43 CST 2014],CurrentMillis:1418204383096
|
||||
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
2014-12-09 10:18:20,882-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:18:20,885-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:18:20 CST 2014],CurrentMillis:1418091500881
|
||||
2014-12-09 10:18:38,649-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:18:38,651-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:18:38 CST 2014],CurrentMillis:1418091518648
|
||||
2014-12-09 10:19:05,380-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:19:05,382-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:19:05 CST 2014],CurrentMillis:1418091545379
|
||||
2014-12-09 10:21:34,695-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:21:34,698-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:21:34 CST 2014],CurrentMillis:1418091694695
|
||||
2014-12-09 10:23:48,822-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:23:48,824-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:23:48 CST 2014],CurrentMillis:1418091828821
|
||||
2014-12-09 10:27:05,952-[TS] INFO main com.freud.opc.utgard.perf.Test - Step-10W:
|
||||
2014-12-09 10:27:05,955-[TS] INFO main com.freud.opc.utgard.perf.Test - StartDate[Tue Dec 09 10:27:05 CST 2014],CurrentMillis:1418092025952
|
||||
Reference in New Issue
Block a user