Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
1595001757 2020-07-17 18:02:37.509 INFO TestAgent Got mqtt message: starttest-1595001712
1595001757 2020-07-17 18:02:37.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001757 2020-07-17 18:02:37.761 INFO TestAgent Starting Test
1595001757 2020-07-17 18:02:37.770 INFO TestAgent Create: /testdata/1595001712/
1595001764 2020-07-17 18:02:44.039 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.58692746068155}
1595001766 2020-07-17 18:02:46.393 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595001787 2020-07-17 18:03:07.258 INFO TestAgent Got mqtt message: stop
1595001787 2020-07-17 18:03:07.262 INFO TestAgent Test finished
1595001787 2020-07-17 18:03:07.266 INFO TestAgent Terminated iwevent
1595001787 2020-07-17 18:03:07.270 INFO TestAgent Terminated mqtt file
1595001787 2020-07-17 18:03:07.274 INFO TestAgent Closed rssi file
1595001787 2020-07-17 18:03:07.282 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (10767).
Exiting ovsdb-server (10754).
1595001787 2020-07-17 18:03:07.739 INFO TestAgent Reset wifi
1595001788 2020-07-17 18:03:08.767 INFO TestAgent iw sta0 connect ap1-train 5260
1595001788 2020-07-17 18:03:08.786 INFO TestAgent Done
1595001822 2020-07-17 18:03:42.917 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001827 2020-07-17 18:03:47.917 INFO TestAgent Got mqtt message: starttest--ping-1595001789
1595001827 2020-07-17 18:03:47.920 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001828 2020-07-17 18:03:48.154 INFO TestAgent Starting Test
1595001828 2020-07-17 18:03:48.157 INFO TestAgent Create: /testdata/1595001789/
1595001834 2020-07-17 18:03:54.414 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 106.50607128399173}
1595001857 2020-07-17 18:04:17.881 INFO TestAgent Got mqtt message: stop
1595001857 2020-07-17 18:04:17.884 INFO TestAgent Test finished
1595001857 2020-07-17 18:04:17.889 INFO TestAgent Terminated iwevent
1595001857 2020-07-17 18:04:17.893 INFO TestAgent Terminated mqtt file
1595001857 2020-07-17 18:04:17.897 INFO TestAgent Closed rssi file
1595001857 2020-07-17 18:04:17.904 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (11054).
Exiting ovsdb-server (11039).
1595001858 2020-07-17 18:04:18.362 INFO TestAgent Reset wifi
1595001859 2020-07-17 18:04:19.389 INFO TestAgent iw sta0 connect ap1-train 5260
1595001859 2020-07-17 18:04:19.407 INFO TestAgent Done
1595001893 2020-07-17 18:04:53.416 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001898 2020-07-17 18:04:58.424 INFO TestAgent Got mqtt message: starttest-1595001860
1595001898 2020-07-17 18:04:58.427 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001898 2020-07-17 18:04:58.675 INFO TestAgent Starting Test
1595001898 2020-07-17 18:04:58.680 INFO TestAgent Create: /testdata/1595001860/
1595001905 2020-07-17 18:05:05.003 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.48456440345824}
1595001928 2020-07-17 18:05:28.093 INFO TestAgent Got mqtt message: stop
1595001928 2020-07-17 18:05:28.097 INFO TestAgent Test finished
1595001928 2020-07-17 18:05:28.101 INFO TestAgent Terminated iwevent
1595001928 2020-07-17 18:05:28.105 INFO TestAgent Terminated mqtt file
1595001928 2020-07-17 18:05:28.109 INFO TestAgent Closed rssi file
1595001928 2020-07-17 18:05:28.118 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (11334).
Exiting ovsdb-server (11321).
1595001928 2020-07-17 18:05:28.574 INFO TestAgent Reset wifi
1595001929 2020-07-17 18:05:29.601 INFO TestAgent iw sta0 connect ap1-train 5260
1595001929 2020-07-17 18:05:29.637 INFO TestAgent Done
1595001971 2020-07-17 18:06:11.503 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595001976 2020-07-17 18:06:16.502 INFO TestAgent Got mqtt message: starttest--ping-1595001930
1595001976 2020-07-17 18:06:16.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595001976 2020-07-17 18:06:16.736 INFO TestAgent Starting Test
1595001976 2020-07-17 18:06:16.740 INFO TestAgent Create: /testdata/1595001930/
1595001983 2020-07-17 18:06:23.162 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.62119472281695}
1595001985 2020-07-17 18:06:25.557 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002006 2020-07-17 18:06:46.225 INFO TestAgent Got mqtt message: stop
1595002006 2020-07-17 18:06:46.231 INFO TestAgent Test finished
1595002006 2020-07-17 18:06:46.235 INFO TestAgent Terminated iwevent
1595002006 2020-07-17 18:06:46.239 INFO TestAgent Terminated mqtt file
1595002006 2020-07-17 18:06:46.243 INFO TestAgent Closed rssi file
1595002006 2020-07-17 18:06:46.251 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (11606).
Exiting ovsdb-server (11593).
1595002006 2020-07-17 18:06:46.742 INFO TestAgent Reset wifi
1595002007 2020-07-17 18:06:47.769 INFO TestAgent iw sta0 connect ap1-train 5260
1595002007 2020-07-17 18:06:47.787 INFO TestAgent Done
1595002049 2020-07-17 18:07:29.501 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002054 2020-07-17 18:07:34.508 INFO TestAgent Got mqtt message: starttest-1595002009
1595002054 2020-07-17 18:07:34.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002054 2020-07-17 18:07:34.728 INFO TestAgent Starting Test
1595002054 2020-07-17 18:07:34.732 INFO TestAgent Create: /testdata/1595002009/
1595002061 2020-07-17 18:07:41.089 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.3652087079553}
1595002063 2020-07-17 18:07:43.446 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002084 2020-07-17 18:08:04.164 INFO TestAgent Got mqtt message: stop
1595002084 2020-07-17 18:08:04.168 INFO TestAgent Test finished
1595002084 2020-07-17 18:08:04.172 INFO TestAgent Terminated iwevent
1595002084 2020-07-17 18:08:04.176 INFO TestAgent Terminated mqtt file
1595002084 2020-07-17 18:08:04.181 INFO TestAgent Closed rssi file
1595002084 2020-07-17 18:08:04.189 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (11895).
Exiting ovsdb-server (11882).
1595002084 2020-07-17 18:08:04.731 INFO TestAgent Reset wifi
1595002085 2020-07-17 18:08:05.758 INFO TestAgent iw sta0 connect ap1-train 5260
1595002085 2020-07-17 18:08:05.797 INFO TestAgent Done
1595002119 2020-07-17 18:08:39.647 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002124 2020-07-17 18:08:44.652 INFO TestAgent Got mqtt message: starttest--ping-1595002086
1595002124 2020-07-17 18:08:44.656 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002124 2020-07-17 18:08:44.885 INFO TestAgent Starting Test
1595002124 2020-07-17 18:08:44.888 INFO TestAgent Create: /testdata/1595002086/
1595002131 2020-07-17 18:08:51.197 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 106.65278077540206}
1595002154 2020-07-17 18:09:14.206 INFO TestAgent Got mqtt message: stop
1595002154 2020-07-17 18:09:14.213 INFO TestAgent Test finished
1595002154 2020-07-17 18:09:14.225 INFO TestAgent Terminated iwevent
1595002154 2020-07-17 18:09:14.233 INFO TestAgent Terminated mqtt file
1595002154 2020-07-17 18:09:14.254 INFO TestAgent Closed rssi file
1595002154 2020-07-17 18:09:14.263 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (12181).
Exiting ovsdb-server (12168).
1595002154 2020-07-17 18:09:14.667 INFO TestAgent Reset wifi
1595002155 2020-07-17 18:09:15.692 INFO TestAgent iw sta0 connect ap1-train 5260
1595002155 2020-07-17 18:09:15.711 INFO TestAgent Done
1595002189 2020-07-17 18:09:49.860 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002194 2020-07-17 18:09:54.867 INFO TestAgent Got mqtt message: starttest-1595002156
1595002194 2020-07-17 18:09:54.871 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002195 2020-07-17 18:09:55.094 INFO TestAgent Starting Test
1595002195 2020-07-17 18:09:55.097 INFO TestAgent Create: /testdata/1595002156/
1595002201 2020-07-17 18:10:01.416 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 106.56657672860077}
1595002224 2020-07-17 18:10:24.463 INFO TestAgent Got mqtt message: stop
1595002224 2020-07-17 18:10:24.467 INFO TestAgent Test finished
1595002224 2020-07-17 18:10:24.472 INFO TestAgent Terminated iwevent
1595002224 2020-07-17 18:10:24.475 INFO TestAgent Terminated mqtt file
1595002224 2020-07-17 18:10:24.480 INFO TestAgent Closed rssi file
1595002224 2020-07-17 18:10:24.490 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (12457).
Exiting ovsdb-server (12442).
1595002224 2020-07-17 18:10:24.948 INFO TestAgent Reset wifi
1595002225 2020-07-17 18:10:25.997 INFO TestAgent iw sta0 connect ap1-train 5260
1595002226 2020-07-17 18:10:26.037 INFO TestAgent Done
1595002268 2020-07-17 18:11:08.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002273 2020-07-17 18:11:13.498 INFO TestAgent Got mqtt message: starttest--ping-1595002226
1595002273 2020-07-17 18:11:13.507 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002273 2020-07-17 18:11:13.731 INFO TestAgent Starting Test
1595002273 2020-07-17 18:11:13.735 INFO TestAgent Create: /testdata/1595002226/
1595002280 2020-07-17 18:11:20.055 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.08548516661527}
1595002282 2020-07-17 18:11:22.424 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002303 2020-07-17 18:11:43.203 INFO TestAgent Got mqtt message: stop
1595002303 2020-07-17 18:11:43.206 INFO TestAgent Test finished
1595002303 2020-07-17 18:11:43.211 INFO TestAgent Terminated iwevent
1595002303 2020-07-17 18:11:43.215 INFO TestAgent Terminated mqtt file
1595002303 2020-07-17 18:11:43.219 INFO TestAgent Closed rssi file
1595002303 2020-07-17 18:11:43.227 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (12733).
Exiting ovsdb-server (12718).
1595002303 2020-07-17 18:11:43.669 INFO TestAgent Reset wifi
1595002304 2020-07-17 18:11:44.696 INFO TestAgent iw sta0 connect ap1-train 5260
1595002304 2020-07-17 18:11:44.714 INFO TestAgent Done
1595002346 2020-07-17 18:12:26.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002351 2020-07-17 18:12:31.503 INFO TestAgent Got mqtt message: starttest-1595002305
1595002351 2020-07-17 18:12:31.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002351 2020-07-17 18:12:31.730 INFO TestAgent Starting Test
1595002351 2020-07-17 18:12:31.733 INFO TestAgent Create: /testdata/1595002305/
1595002358 2020-07-17 18:12:38.064 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.20018031963701}
1595002360 2020-07-17 18:12:40.423 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002381 2020-07-17 18:13:01.165 INFO TestAgent Got mqtt message: stop
1595002381 2020-07-17 18:13:01.169 INFO TestAgent Test finished
1595002381 2020-07-17 18:13:01.174 INFO TestAgent Terminated iwevent
1595002381 2020-07-17 18:13:01.178 INFO TestAgent Terminated mqtt file
1595002381 2020-07-17 18:13:01.182 INFO TestAgent Closed rssi file
1595002381 2020-07-17 18:13:01.190 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (13021).
Exiting ovsdb-server (13008).
1595002381 2020-07-17 18:13:01.590 INFO TestAgent Reset wifi
1595002382 2020-07-17 18:13:02.617 INFO TestAgent iw sta0 connect ap1-train 5260
1595002382 2020-07-17 18:13:02.635 INFO TestAgent Done
1595002416 2020-07-17 18:13:36.834 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002421 2020-07-17 18:13:41.836 INFO TestAgent Got mqtt message: starttest--ping-1595002383
1595002421 2020-07-17 18:13:41.840 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002422 2020-07-17 18:13:42.074 INFO TestAgent Starting Test
1595002422 2020-07-17 18:13:42.077 INFO TestAgent Create: /testdata/1595002383/
1595002428 2020-07-17 18:13:48.413 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.68767518046786}
1595002451 2020-07-17 18:14:11.487 INFO TestAgent Got mqtt message: stop
1595002451 2020-07-17 18:14:11.491 INFO TestAgent Test finished
1595002451 2020-07-17 18:14:11.496 INFO TestAgent Terminated iwevent
1595002451 2020-07-17 18:14:11.500 INFO TestAgent Terminated mqtt file
1595002451 2020-07-17 18:14:11.505 INFO TestAgent Closed rssi file
1595002451 2020-07-17 18:14:11.512 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (13315).
Exiting ovsdb-server (13300).
1595002451 2020-07-17 18:14:11.961 INFO TestAgent Reset wifi
1595002452 2020-07-17 18:14:12.988 INFO TestAgent iw sta0 connect ap1-train 5260
1595002453 2020-07-17 18:14:13.006 INFO TestAgent Done
1595002486 2020-07-17 18:14:46.915 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002491 2020-07-17 18:14:51.925 INFO TestAgent Got mqtt message: starttest-1595002454
1595002491 2020-07-17 18:14:51.929 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002492 2020-07-17 18:14:52.187 INFO TestAgent Starting Test
1595002492 2020-07-17 18:14:52.194 INFO TestAgent Create: /testdata/1595002454/
1595002498 2020-07-17 18:14:58.386 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 107.44451907975774}
1595002521 2020-07-17 18:15:21.287 INFO TestAgent Got mqtt message: stop
1595002521 2020-07-17 18:15:21.291 INFO TestAgent Test finished
1595002521 2020-07-17 18:15:21.298 INFO TestAgent Terminated iwevent
1595002521 2020-07-17 18:15:21.302 INFO TestAgent Terminated mqtt file
1595002521 2020-07-17 18:15:21.306 INFO TestAgent Closed rssi file
1595002521 2020-07-17 18:15:21.314 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (13595).
Exiting ovsdb-server (13582).
1595002521 2020-07-17 18:15:21.769 INFO TestAgent Reset wifi
1595002522 2020-07-17 18:15:22.797 INFO TestAgent iw sta0 connect ap1-train 5260
1595002522 2020-07-17 18:15:22.815 INFO TestAgent Done
1595002564 2020-07-17 18:16:04.500 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002569 2020-07-17 18:16:09.501 INFO TestAgent Got mqtt message: starttest--ping-1595002523
1595002569 2020-07-17 18:16:09.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002569 2020-07-17 18:16:09.779 INFO TestAgent Starting Test
1595002569 2020-07-17 18:16:09.783 INFO TestAgent Create: /testdata/1595002523/
1595002576 2020-07-17 18:16:16.065 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.9870592866957}
1595002578 2020-07-17 18:16:18.435 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002599 2020-07-17 18:16:39.422 INFO TestAgent Got mqtt message: stop
1595002599 2020-07-17 18:16:39.425 INFO TestAgent Test finished
1595002599 2020-07-17 18:16:39.430 INFO TestAgent Terminated iwevent
1595002599 2020-07-17 18:16:39.434 INFO TestAgent Terminated mqtt file
1595002599 2020-07-17 18:16:39.438 INFO TestAgent Closed rssi file
1595002599 2020-07-17 18:16:39.446 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (13869).
Exiting ovsdb-server (13854).
1595002599 2020-07-17 18:16:39.851 INFO TestAgent Reset wifi
1595002600 2020-07-17 18:16:40.878 INFO TestAgent iw sta0 connect ap1-train 5260
1595002600 2020-07-17 18:16:40.897 INFO TestAgent Done
1595002642 2020-07-17 18:17:22.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002647 2020-07-17 18:17:27.511 INFO TestAgent Got mqtt message: starttest-1595002602
1595002647 2020-07-17 18:17:27.518 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002647 2020-07-17 18:17:27.738 INFO TestAgent Starting Test
1595002647 2020-07-17 18:17:27.747 INFO TestAgent Create: /testdata/1595002602/
1595002654 2020-07-17 18:17:34.178 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.96766394391014}
1595002656 2020-07-17 18:17:36.592 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002677 2020-07-17 18:17:57.719 INFO TestAgent Got mqtt message: stop
1595002677 2020-07-17 18:17:57.722 INFO TestAgent Test finished
1595002677 2020-07-17 18:17:57.726 INFO TestAgent Terminated iwevent
1595002677 2020-07-17 18:17:57.730 INFO TestAgent Terminated mqtt file
1595002677 2020-07-17 18:17:57.734 INFO TestAgent Closed rssi file
1595002677 2020-07-17 18:17:57.742 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (14156).
Exiting ovsdb-server (14141).
1595002678 2020-07-17 18:17:58.221 INFO TestAgent Reset wifi
1595002679 2020-07-17 18:17:59.275 INFO TestAgent iw sta0 connect ap1-train 5260
1595002679 2020-07-17 18:17:59.295 INFO TestAgent Done
1595002713 2020-07-17 18:18:33.343 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002718 2020-07-17 18:18:38.349 INFO TestAgent Got mqtt message: starttest--ping-1595002680
1595002718 2020-07-17 18:18:38.352 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002718 2020-07-17 18:18:38.591 INFO TestAgent Starting Test
1595002718 2020-07-17 18:18:38.594 INFO TestAgent Create: /testdata/1595002680/
1595002724 2020-07-17 18:18:44.945 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.11077411155534}
1595002748 2020-07-17 18:19:08.244 INFO TestAgent Got mqtt message: stop
1595002748 2020-07-17 18:19:08.248 INFO TestAgent Test finished
1595002748 2020-07-17 18:19:08.253 INFO TestAgent Terminated iwevent
1595002748 2020-07-17 18:19:08.256 INFO TestAgent Terminated mqtt file
1595002748 2020-07-17 18:19:08.263 INFO TestAgent Closed rssi file
1595002748 2020-07-17 18:19:08.271 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (14442).
Exiting ovsdb-server (14429).
1595002748 2020-07-17 18:19:08.674 INFO TestAgent Reset wifi
1595002749 2020-07-17 18:19:09.701 INFO TestAgent iw sta0 connect ap1-train 5260
1595002749 2020-07-17 18:19:09.719 INFO TestAgent Done
1595002783 2020-07-17 18:19:43.904 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002788 2020-07-17 18:19:48.914 INFO TestAgent Got mqtt message: starttest-1595002751
1595002788 2020-07-17 18:19:48.916 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002789 2020-07-17 18:19:49.144 INFO TestAgent Starting Test
1595002789 2020-07-17 18:19:49.147 INFO TestAgent Create: /testdata/1595002751/
1595002795 2020-07-17 18:19:55.437 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.17669023914908}
1595002818 2020-07-17 18:20:18.997 INFO TestAgent Got mqtt message: stop
1595002819 2020-07-17 18:20:19.003 INFO TestAgent Test finished
1595002819 2020-07-17 18:20:19.007 INFO TestAgent Terminated iwevent
1595002819 2020-07-17 18:20:19.011 INFO TestAgent Terminated mqtt file
1595002819 2020-07-17 18:20:19.015 INFO TestAgent Closed rssi file
1595002819 2020-07-17 18:20:19.023 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (14723).
Exiting ovsdb-server (14708).
1595002819 2020-07-17 18:20:19.527 INFO TestAgent Reset wifi
1595002820 2020-07-17 18:20:20.576 INFO TestAgent iw sta0 connect ap1-train 5260
1595002820 2020-07-17 18:20:20.633 INFO TestAgent Done
1595002862 2020-07-17 18:21:02.494 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002867 2020-07-17 18:21:07.500 INFO TestAgent Got mqtt message: starttest--ping-1595002821
1595002867 2020-07-17 18:21:07.509 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002867 2020-07-17 18:21:07.733 INFO TestAgent Starting Test
1595002867 2020-07-17 18:21:07.736 INFO TestAgent Create: /testdata/1595002821/
1595002874 2020-07-17 18:21:14.072 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.27353792769782}
1595002876 2020-07-17 18:21:16.425 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002897 2020-07-17 18:21:37.597 INFO TestAgent Got mqtt message: stop
1595002897 2020-07-17 18:21:37.600 INFO TestAgent Test finished
1595002897 2020-07-17 18:21:37.606 INFO TestAgent Terminated iwevent
1595002897 2020-07-17 18:21:37.610 INFO TestAgent Terminated mqtt file
1595002897 2020-07-17 18:21:37.624 INFO TestAgent Closed rssi file
1595002897 2020-07-17 18:21:37.632 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (15001).
Exiting ovsdb-server (14986).
1595002898 2020-07-17 18:21:38.188 INFO TestAgent Reset wifi
1595002899 2020-07-17 18:21:39.216 INFO TestAgent iw sta0 connect ap1-train 5260
1595002899 2020-07-17 18:21:39.234 INFO TestAgent Done
1595002941 2020-07-17 18:22:21.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595002946 2020-07-17 18:22:26.507 INFO TestAgent Got mqtt message: starttest-1595002900
1595002946 2020-07-17 18:22:26.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595002946 2020-07-17 18:22:26.846 INFO TestAgent Starting Test
1595002946 2020-07-17 18:22:26.850 INFO TestAgent Create: /testdata/1595002900/
1595002953 2020-07-17 18:22:33.115 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.19872016175705}
1595002955 2020-07-17 18:22:35.500 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595002976 2020-07-17 18:22:56.473 INFO TestAgent Got mqtt message: stop
1595002976 2020-07-17 18:22:56.476 INFO TestAgent Test finished
1595002976 2020-07-17 18:22:56.481 INFO TestAgent Terminated iwevent
1595002976 2020-07-17 18:22:56.485 INFO TestAgent Terminated mqtt file
1595002976 2020-07-17 18:22:56.488 INFO TestAgent Closed rssi file
1595002976 2020-07-17 18:22:56.496 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (15285).
Exiting ovsdb-server (15272).
1595002976 2020-07-17 18:22:56.997 INFO TestAgent Reset wifi
1595002978 2020-07-17 18:22:58.024 INFO TestAgent iw sta0 connect ap1-train 5260
1595002978 2020-07-17 18:22:58.063 INFO TestAgent Done
1595003012 2020-07-17 18:23:32.007 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003017 2020-07-17 18:23:37.007 INFO TestAgent Got mqtt message: starttest--ping-1595002979
1595003017 2020-07-17 18:23:37.011 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003017 2020-07-17 18:23:37.242 INFO TestAgent Starting Test
1595003017 2020-07-17 18:23:37.246 INFO TestAgent Create: /testdata/1595002979/
1595003023 2020-07-17 18:23:43.633 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.15793821405602}
1595003047 2020-07-17 18:24:07.100 INFO TestAgent Got mqtt message: stop
1595003047 2020-07-17 18:24:07.104 INFO TestAgent Test finished
1595003047 2020-07-17 18:24:07.108 INFO TestAgent Terminated iwevent
1595003047 2020-07-17 18:24:07.112 INFO TestAgent Terminated mqtt file
1595003047 2020-07-17 18:24:07.116 INFO TestAgent Closed rssi file
1595003047 2020-07-17 18:24:07.125 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (15569).
Exiting ovsdb-server (15556).
1595003047 2020-07-17 18:24:07.552 INFO TestAgent Reset wifi
1595003048 2020-07-17 18:24:08.579 INFO TestAgent iw sta0 connect ap1-train 5260
1595003048 2020-07-17 18:24:08.598 INFO TestAgent Done
1595003082 2020-07-17 18:24:42.721 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003087 2020-07-17 18:24:47.729 INFO TestAgent Got mqtt message: starttest-1595003049
1595003087 2020-07-17 18:24:47.733 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003087 2020-07-17 18:24:47.956 INFO TestAgent Starting Test
1595003087 2020-07-17 18:24:47.959 INFO TestAgent Create: /testdata/1595003049/
1595003094 2020-07-17 18:24:54.246 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.48786348489675}
1595003117 2020-07-17 18:25:17.683 INFO TestAgent Got mqtt message: stop
1595003117 2020-07-17 18:25:17.687 INFO TestAgent Test finished
1595003117 2020-07-17 18:25:17.691 INFO TestAgent Terminated iwevent
1595003117 2020-07-17 18:25:17.695 INFO TestAgent Terminated mqtt file
1595003117 2020-07-17 18:25:17.699 INFO TestAgent Closed rssi file
1595003117 2020-07-17 18:25:17.708 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (15856).
Exiting ovsdb-server (15843).
1595003118 2020-07-17 18:25:18.111 INFO TestAgent Reset wifi
1595003119 2020-07-17 18:25:19.139 INFO TestAgent iw sta0 connect ap1-train 5260
1595003119 2020-07-17 18:25:19.177 INFO TestAgent Done
1595003160 2020-07-17 18:26:00.500 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003165 2020-07-17 18:26:05.506 INFO TestAgent Got mqtt message: starttest--ping-1595003120
1595003165 2020-07-17 18:26:05.515 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003165 2020-07-17 18:26:05.742 INFO TestAgent Starting Test
1595003165 2020-07-17 18:26:05.746 INFO TestAgent Create: /testdata/1595003120/
1595003172 2020-07-17 18:26:12.070 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.98012974013204}
1595003174 2020-07-17 18:26:14.461 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003195 2020-07-17 18:26:35.583 INFO TestAgent Got mqtt message: stop
1595003195 2020-07-17 18:26:35.586 INFO TestAgent Test finished
1595003195 2020-07-17 18:26:35.590 INFO TestAgent Terminated iwevent
1595003195 2020-07-17 18:26:35.594 INFO TestAgent Terminated mqtt file
1595003195 2020-07-17 18:26:35.598 INFO TestAgent Closed rssi file
1595003195 2020-07-17 18:26:35.606 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16134).
Exiting ovsdb-server (16119).
1595003196 2020-07-17 18:26:36.006 INFO TestAgent Reset wifi
1595003197 2020-07-17 18:26:37.033 INFO TestAgent iw sta0 connect ap1-train 5260
1595003197 2020-07-17 18:26:37.051 INFO TestAgent Done
1595003239 2020-07-17 18:27:19.499 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003244 2020-07-17 18:27:24.508 INFO TestAgent Got mqtt message: starttest-1595003198
1595003244 2020-07-17 18:27:24.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003244 2020-07-17 18:27:24.734 INFO TestAgent Starting Test
1595003244 2020-07-17 18:27:24.738 INFO TestAgent Create: /testdata/1595003198/
1595003251 2020-07-17 18:27:31.035 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 106.19482685942322}
1595003253 2020-07-17 18:27:33.369 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003274 2020-07-17 18:27:54.092 INFO TestAgent Got mqtt message: stop
1595003274 2020-07-17 18:27:54.095 INFO TestAgent Test finished
1595003274 2020-07-17 18:27:54.100 INFO TestAgent Terminated iwevent
1595003274 2020-07-17 18:27:54.104 INFO TestAgent Terminated mqtt file
1595003274 2020-07-17 18:27:54.109 INFO TestAgent Closed rssi file
1595003274 2020-07-17 18:27:54.123 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16426).
Exiting ovsdb-server (16411).
1595003274 2020-07-17 18:27:54.632 INFO TestAgent Reset wifi
1595003275 2020-07-17 18:27:55.659 INFO TestAgent iw sta0 connect ap1-train 5260
1595003275 2020-07-17 18:27:55.697 INFO TestAgent Done
1595003309 2020-07-17 18:28:29.279 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003314 2020-07-17 18:28:34.285 INFO TestAgent Got mqtt message: starttest--ping-1595003276
1595003314 2020-07-17 18:28:34.288 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003314 2020-07-17 18:28:34.526 INFO TestAgent Starting Test
1595003314 2020-07-17 18:28:34.529 INFO TestAgent Create: /testdata/1595003276/
1595003320 2020-07-17 18:28:40.871 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.12114456380272}
1595003344 2020-07-17 18:29:04.139 INFO TestAgent Got mqtt message: stop
1595003344 2020-07-17 18:29:04.142 INFO TestAgent Test finished
1595003344 2020-07-17 18:29:04.147 INFO TestAgent Terminated iwevent
1595003344 2020-07-17 18:29:04.153 INFO TestAgent Terminated mqtt file
1595003344 2020-07-17 18:29:04.157 INFO TestAgent Closed rssi file
1595003344 2020-07-17 18:29:04.172 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16710).
Exiting ovsdb-server (16697).
1595003344 2020-07-17 18:29:04.573 INFO TestAgent Reset wifi
1595003345 2020-07-17 18:29:05.600 INFO TestAgent iw sta0 connect ap1-train 5260
1595003345 2020-07-17 18:29:05.621 INFO TestAgent Done
1595003379 2020-07-17 18:29:39.911 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003384 2020-07-17 18:29:44.914 INFO TestAgent Got mqtt message: starttest-1595003346
1595003384 2020-07-17 18:29:44.918 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003385 2020-07-17 18:29:45.152 INFO TestAgent Starting Test
1595003385 2020-07-17 18:29:45.158 INFO TestAgent Create: /testdata/1595003346/
1595003391 2020-07-17 18:29:51.519 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.3174856323371}
1595003414 2020-07-17 18:30:14.851 INFO TestAgent Got mqtt message: stop
1595003414 2020-07-17 18:30:14.855 INFO TestAgent Test finished
1595003414 2020-07-17 18:30:14.860 INFO TestAgent Terminated iwevent
1595003414 2020-07-17 18:30:14.864 INFO TestAgent Terminated mqtt file
1595003414 2020-07-17 18:30:14.869 INFO TestAgent Closed rssi file
1595003414 2020-07-17 18:30:14.877 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (16991).
Exiting ovsdb-server (16976).
1595003415 2020-07-17 18:30:15.275 INFO TestAgent Reset wifi
1595003416 2020-07-17 18:30:16.305 INFO TestAgent iw sta0 connect ap1-train 5260
1595003416 2020-07-17 18:30:16.347 INFO TestAgent Done
1595003458 2020-07-17 18:30:58.503 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003463 2020-07-17 18:31:03.503 INFO TestAgent Got mqtt message: starttest--ping-1595003417
1595003463 2020-07-17 18:31:03.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003463 2020-07-17 18:31:03.738 INFO TestAgent Starting Test
1595003463 2020-07-17 18:31:03.742 INFO TestAgent Create: /testdata/1595003417/
1595003470 2020-07-17 18:31:10.150 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.69831059598707}
1595003472 2020-07-17 18:31:12.546 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003493 2020-07-17 18:31:33.636 INFO TestAgent Got mqtt message: stop
1595003493 2020-07-17 18:31:33.639 INFO TestAgent Test finished
1595003493 2020-07-17 18:31:33.644 INFO TestAgent Terminated iwevent
1595003493 2020-07-17 18:31:33.648 INFO TestAgent Terminated mqtt file
1595003493 2020-07-17 18:31:33.652 INFO TestAgent Closed rssi file
1595003493 2020-07-17 18:31:33.659 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17267).
Exiting ovsdb-server (17252).
1595003494 2020-07-17 18:31:34.060 INFO TestAgent Reset wifi
1595003495 2020-07-17 18:31:35.088 INFO TestAgent iw sta0 connect ap1-train 5260
1595003495 2020-07-17 18:31:35.107 INFO TestAgent Done
1595003537 2020-07-17 18:32:17.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003542 2020-07-17 18:32:22.502 INFO TestAgent Got mqtt message: starttest-1595003496
1595003542 2020-07-17 18:32:22.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003542 2020-07-17 18:32:22.737 INFO TestAgent Starting Test
1595003542 2020-07-17 18:32:22.745 INFO TestAgent Create: /testdata/1595003496/
1595003549 2020-07-17 18:32:29.119 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.96340094492344}
1595003551 2020-07-17 18:32:31.511 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003572 2020-07-17 18:32:52.652 INFO TestAgent Got mqtt message: stop
1595003572 2020-07-17 18:32:52.655 INFO TestAgent Test finished
1595003572 2020-07-17 18:32:52.660 INFO TestAgent Terminated iwevent
1595003572 2020-07-17 18:32:52.664 INFO TestAgent Terminated mqtt file
1595003572 2020-07-17 18:32:52.668 INFO TestAgent Closed rssi file
1595003572 2020-07-17 18:32:52.676 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17553).
Exiting ovsdb-server (17538).
1595003573 2020-07-17 18:32:53.083 INFO TestAgent Reset wifi
1595003574 2020-07-17 18:32:54.110 INFO TestAgent iw sta0 connect ap1-train 5260
1595003574 2020-07-17 18:32:54.129 INFO TestAgent Done
1595003608 2020-07-17 18:33:28.031 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003613 2020-07-17 18:33:33.037 INFO TestAgent Got mqtt message: starttest--ping-1595003575
1595003613 2020-07-17 18:33:33.040 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003613 2020-07-17 18:33:33.269 INFO TestAgent Starting Test
1595003613 2020-07-17 18:33:33.273 INFO TestAgent Create: /testdata/1595003575/
1595003619 2020-07-17 18:33:39.704 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 101.50085435025532}
1595003643 2020-07-17 18:34:03.501 INFO TestAgent Got mqtt message: stop
1595003643 2020-07-17 18:34:03.507 INFO TestAgent Test finished
1595003643 2020-07-17 18:34:03.511 INFO TestAgent Terminated iwevent
1595003643 2020-07-17 18:34:03.515 INFO TestAgent Terminated mqtt file
1595003643 2020-07-17 18:34:03.519 INFO TestAgent Closed rssi file
1595003643 2020-07-17 18:34:03.527 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (17842).
Exiting ovsdb-server (17827).
1595003644 2020-07-17 18:34:04.031 INFO TestAgent Reset wifi
1595003645 2020-07-17 18:34:05.058 INFO TestAgent iw sta0 connect ap1-train 5260
1595003645 2020-07-17 18:34:05.077 INFO TestAgent Done
1595003679 2020-07-17 18:34:39.071 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003684 2020-07-17 18:34:44.079 INFO TestAgent Got mqtt message: starttest-1595003646
1595003684 2020-07-17 18:34:44.082 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003684 2020-07-17 18:34:44.318 INFO TestAgent Starting Test
1595003684 2020-07-17 18:34:44.323 INFO TestAgent Create: /testdata/1595003646/
1595003690 2020-07-17 18:34:50.674 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.99913473829037}
1595003714 2020-07-17 18:35:14.594 INFO TestAgent Got mqtt message: stop
1595003714 2020-07-17 18:35:14.597 INFO TestAgent Test finished
1595003714 2020-07-17 18:35:14.604 INFO TestAgent Terminated iwevent
1595003714 2020-07-17 18:35:14.608 INFO TestAgent Terminated mqtt file
1595003714 2020-07-17 18:35:14.612 INFO TestAgent Closed rssi file
1595003714 2020-07-17 18:35:14.619 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18117).
Exiting ovsdb-server (18104).
1595003715 2020-07-17 18:35:15.083 INFO TestAgent Reset wifi
1595003716 2020-07-17 18:35:16.110 INFO TestAgent iw sta0 connect ap1-train 5260
1595003716 2020-07-17 18:35:16.147 INFO TestAgent Done
1595003767 2020-07-17 18:36:07.678 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003772 2020-07-17 18:36:12.684 INFO TestAgent Got mqtt message: starttest--ping-1595003717
1595003772 2020-07-17 18:36:12.687 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003772 2020-07-17 18:36:12.911 INFO TestAgent Starting Test
1595003772 2020-07-17 18:36:12.915 INFO TestAgent Create: /testdata/1595003717/
1595003779 2020-07-17 18:36:19.392 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 101.72879796359672}
1595003781 2020-07-17 18:36:21.837 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003803 2020-07-17 18:36:43.110 INFO TestAgent Got mqtt message: stop
1595003803 2020-07-17 18:36:43.114 INFO TestAgent Test finished
1595003803 2020-07-17 18:36:43.121 INFO TestAgent Terminated iwevent
1595003803 2020-07-17 18:36:43.124 INFO TestAgent Terminated mqtt file
1595003803 2020-07-17 18:36:43.128 INFO TestAgent Closed rssi file
1595003803 2020-07-17 18:36:43.136 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18401).
Exiting ovsdb-server (18386).
1595003803 2020-07-17 18:36:43.542 INFO TestAgent Reset wifi
1595003804 2020-07-17 18:36:44.569 INFO TestAgent iw sta0 connect ap1-train 5260
1595003804 2020-07-17 18:36:44.588 INFO TestAgent Done
1595003846 2020-07-17 18:37:26.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003851 2020-07-17 18:37:31.509 INFO TestAgent Got mqtt message: starttest-1595003805
1595003851 2020-07-17 18:37:31.512 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003851 2020-07-17 18:37:31.736 INFO TestAgent Starting Test
1595003851 2020-07-17 18:37:31.739 INFO TestAgent Create: /testdata/1595003805/
1595003858 2020-07-17 18:37:38.147 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.50251324233932}
1595003860 2020-07-17 18:37:40.576 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595003882 2020-07-17 18:38:02.100 INFO TestAgent Got mqtt message: stop
1595003882 2020-07-17 18:38:02.103 INFO TestAgent Test finished
1595003882 2020-07-17 18:38:02.108 INFO TestAgent Terminated iwevent
1595003882 2020-07-17 18:38:02.111 INFO TestAgent Terminated mqtt file
1595003882 2020-07-17 18:38:02.115 INFO TestAgent Closed rssi file
1595003882 2020-07-17 18:38:02.123 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18703).
Exiting ovsdb-server (18690).
1595003882 2020-07-17 18:38:02.623 INFO TestAgent Reset wifi
1595003883 2020-07-17 18:38:03.677 INFO TestAgent iw sta0 connect ap1-train 5260
1595003883 2020-07-17 18:38:03.718 INFO TestAgent Done
1595003917 2020-07-17 18:38:37.534 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003922 2020-07-17 18:38:42.540 INFO TestAgent Got mqtt message: starttest--ping-1595003884
1595003922 2020-07-17 18:38:42.543 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003922 2020-07-17 18:38:42.765 INFO TestAgent Starting Test
1595003922 2020-07-17 18:38:42.768 INFO TestAgent Create: /testdata/1595003884/
1595003929 2020-07-17 18:38:49.048 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.51877010355814}
1595003952 2020-07-17 18:39:12.239 INFO TestAgent Got mqtt message: stop
1595003952 2020-07-17 18:39:12.242 INFO TestAgent Test finished
1595003952 2020-07-17 18:39:12.247 INFO TestAgent Terminated iwevent
1595003952 2020-07-17 18:39:12.251 INFO TestAgent Terminated mqtt file
1595003952 2020-07-17 18:39:12.255 INFO TestAgent Closed rssi file
1595003952 2020-07-17 18:39:12.263 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (18992).
Exiting ovsdb-server (18977).
1595003952 2020-07-17 18:39:12.760 INFO TestAgent Reset wifi
1595003953 2020-07-17 18:39:13.787 INFO TestAgent iw sta0 connect ap1-train 5260
1595003953 2020-07-17 18:39:13.806 INFO TestAgent Done
1595003987 2020-07-17 18:39:47.838 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595003992 2020-07-17 18:39:52.845 INFO TestAgent Got mqtt message: starttest-1595003955
1595003992 2020-07-17 18:39:52.849 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595003993 2020-07-17 18:39:53.072 INFO TestAgent Starting Test
1595003993 2020-07-17 18:39:53.075 INFO TestAgent Create: /testdata/1595003955/
1595003999 2020-07-17 18:39:59.391 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.15605434418923}
1595004022 2020-07-17 18:40:22.822 INFO TestAgent Got mqtt message: stop
1595004022 2020-07-17 18:40:22.826 INFO TestAgent Test finished
1595004022 2020-07-17 18:40:22.831 INFO TestAgent Terminated iwevent
1595004022 2020-07-17 18:40:22.834 INFO TestAgent Terminated mqtt file
1595004022 2020-07-17 18:40:22.839 INFO TestAgent Closed rssi file
1595004022 2020-07-17 18:40:22.847 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19270).
Exiting ovsdb-server (19257).
1595004023 2020-07-17 18:40:23.348 INFO TestAgent Reset wifi
1595004024 2020-07-17 18:40:24.376 INFO TestAgent iw sta0 connect ap1-train 5260
1595004024 2020-07-17 18:40:24.413 INFO TestAgent Done
1595004066 2020-07-17 18:41:06.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004071 2020-07-17 18:41:11.503 INFO TestAgent Got mqtt message: starttest--ping-1595004025
1595004071 2020-07-17 18:41:11.506 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004071 2020-07-17 18:41:11.743 INFO TestAgent Starting Test
1595004071 2020-07-17 18:41:11.746 INFO TestAgent Create: /testdata/1595004025/
1595004078 2020-07-17 18:41:18.088 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.27571307944757}
1595004080 2020-07-17 18:41:20.479 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004101 2020-07-17 18:41:41.629 INFO TestAgent Got mqtt message: stop
1595004101 2020-07-17 18:41:41.633 INFO TestAgent Test finished
1595004101 2020-07-17 18:41:41.638 INFO TestAgent Terminated iwevent
1595004101 2020-07-17 18:41:41.641 INFO TestAgent Terminated mqtt file
1595004101 2020-07-17 18:41:41.646 INFO TestAgent Closed rssi file
1595004101 2020-07-17 18:41:41.653 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19544).
Exiting ovsdb-server (19531).
1595004102 2020-07-17 18:41:42.057 INFO TestAgent Reset wifi
1595004103 2020-07-17 18:41:43.084 INFO TestAgent iw sta0 connect ap1-train 5260
1595004103 2020-07-17 18:41:43.102 INFO TestAgent Done
1595004145 2020-07-17 18:42:25.495 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004150 2020-07-17 18:42:30.503 INFO TestAgent Got mqtt message: starttest-1595004104
1595004150 2020-07-17 18:42:30.513 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004150 2020-07-17 18:42:30.733 INFO TestAgent Starting Test
1595004150 2020-07-17 18:42:30.736 INFO TestAgent Create: /testdata/1595004104/
1595004157 2020-07-17 18:42:37.155 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.9967832809922}
1595004159 2020-07-17 18:42:39.563 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004180 2020-07-17 18:43:00.801 INFO TestAgent Got mqtt message: stop
1595004180 2020-07-17 18:43:00.804 INFO TestAgent Test finished
1595004180 2020-07-17 18:43:00.809 INFO TestAgent Terminated iwevent
1595004180 2020-07-17 18:43:00.813 INFO TestAgent Terminated mqtt file
1595004180 2020-07-17 18:43:00.817 INFO TestAgent Closed rssi file
1595004180 2020-07-17 18:43:00.825 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (19834).
Exiting ovsdb-server (19819).
1595004181 2020-07-17 18:43:01.278 INFO TestAgent Reset wifi
1595004182 2020-07-17 18:43:02.306 INFO TestAgent iw sta0 connect ap1-train 5260
1595004182 2020-07-17 18:43:02.324 INFO TestAgent Done
1595004216 2020-07-17 18:43:36.350 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004221 2020-07-17 18:43:41.355 INFO TestAgent Got mqtt message: starttest--ping-1595004183
1595004221 2020-07-17 18:43:41.358 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004221 2020-07-17 18:43:41.579 INFO TestAgent Starting Test
1595004221 2020-07-17 18:43:41.583 INFO TestAgent Create: /testdata/1595004183/
1595004227 2020-07-17 18:43:47.893 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.41164013814647}
1595004251 2020-07-17 18:44:11.720 INFO TestAgent Got mqtt message: stop
1595004251 2020-07-17 18:44:11.724 INFO TestAgent Test finished
1595004251 2020-07-17 18:44:11.729 INFO TestAgent Terminated iwevent
1595004251 2020-07-17 18:44:11.732 INFO TestAgent Terminated mqtt file
1595004251 2020-07-17 18:44:11.737 INFO TestAgent Closed rssi file
1595004251 2020-07-17 18:44:11.744 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20123).
Exiting ovsdb-server (20110).
1595004252 2020-07-17 18:44:12.209 INFO TestAgent Reset wifi
1595004253 2020-07-17 18:44:13.236 INFO TestAgent iw sta0 connect ap1-train 5260
1595004253 2020-07-17 18:44:13.254 INFO TestAgent Done
1595004287 2020-07-17 18:44:47.326 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004292 2020-07-17 18:44:52.335 INFO TestAgent Got mqtt message: starttest-1595004254
1595004292 2020-07-17 18:44:52.338 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004292 2020-07-17 18:44:52.578 INFO TestAgent Starting Test
1595004292 2020-07-17 18:44:52.583 INFO TestAgent Create: /testdata/1595004254/
1595004298 2020-07-17 18:44:58.935 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.51934305226682}
1595004322 2020-07-17 18:45:22.353 INFO TestAgent Got mqtt message: stop
1595004322 2020-07-17 18:45:22.356 INFO TestAgent Test finished
1595004322 2020-07-17 18:45:22.361 INFO TestAgent Terminated iwevent
1595004322 2020-07-17 18:45:22.365 INFO TestAgent Terminated mqtt file
1595004322 2020-07-17 18:45:22.369 INFO TestAgent Closed rssi file
1595004322 2020-07-17 18:45:22.377 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20399).
Exiting ovsdb-server (20386).
1595004322 2020-07-17 18:45:22.929 INFO TestAgent Reset wifi
1595004323 2020-07-17 18:45:23.957 INFO TestAgent iw sta0 connect ap1-train 5260
1595004323 2020-07-17 18:45:23.993 INFO TestAgent Done
1595004376 2020-07-17 18:46:16.672 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004381 2020-07-17 18:46:21.675 INFO TestAgent Got mqtt message: starttest--ping-1595004324
1595004381 2020-07-17 18:46:21.678 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004381 2020-07-17 18:46:21.900 INFO TestAgent Starting Test
1595004381 2020-07-17 18:46:21.903 INFO TestAgent Create: /testdata/1595004324/
1595004388 2020-07-17 18:46:28.306 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.1301538912931}
1595004390 2020-07-17 18:46:30.717 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004411 2020-07-17 18:46:51.911 INFO TestAgent Got mqtt message: stop
1595004411 2020-07-17 18:46:51.914 INFO TestAgent Test finished
1595004411 2020-07-17 18:46:51.919 INFO TestAgent Terminated iwevent
1595004411 2020-07-17 18:46:51.923 INFO TestAgent Terminated mqtt file
1595004411 2020-07-17 18:46:51.927 INFO TestAgent Closed rssi file
1595004411 2020-07-17 18:46:51.935 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20687).
Exiting ovsdb-server (20674).
1595004412 2020-07-17 18:46:52.334 INFO TestAgent Reset wifi
1595004413 2020-07-17 18:46:53.360 INFO TestAgent iw sta0 connect ap1-train 5260
1595004413 2020-07-17 18:46:53.379 INFO TestAgent Done
1595004455 2020-07-17 18:47:35.496 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004460 2020-07-17 18:47:40.507 INFO TestAgent Got mqtt message: starttest-1595004414
1595004460 2020-07-17 18:47:40.510 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004460 2020-07-17 18:47:40.731 INFO TestAgent Starting Test
1595004460 2020-07-17 18:47:40.734 INFO TestAgent Create: /testdata/1595004414/
1595004467 2020-07-17 18:47:47.126 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.59869969994458}
1595004469 2020-07-17 18:47:49.548 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004490 2020-07-17 18:48:10.863 INFO TestAgent Got mqtt message: stop
1595004490 2020-07-17 18:48:10.866 INFO TestAgent Test finished
1595004490 2020-07-17 18:48:10.871 INFO TestAgent Terminated iwevent
1595004490 2020-07-17 18:48:10.875 INFO TestAgent Terminated mqtt file
1595004490 2020-07-17 18:48:10.879 INFO TestAgent Closed rssi file
1595004490 2020-07-17 18:48:10.887 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (20997).
Exiting ovsdb-server (20982).
1595004491 2020-07-17 18:48:11.290 INFO TestAgent Reset wifi
1595004492 2020-07-17 18:48:12.317 INFO TestAgent iw sta0 connect ap1-train 5260
1595004492 2020-07-17 18:48:12.340 INFO TestAgent Done
1595004526 2020-07-17 18:48:46.302 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004531 2020-07-17 18:48:51.307 INFO TestAgent Got mqtt message: starttest--ping-1595004493
1595004531 2020-07-17 18:48:51.310 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004531 2020-07-17 18:48:51.545 INFO TestAgent Starting Test
1595004531 2020-07-17 18:48:51.548 INFO TestAgent Create: /testdata/1595004493/
1595004537 2020-07-17 18:48:57.888 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 105.19381698540431}
1595004561 2020-07-17 18:49:21.460 INFO TestAgent Got mqtt message: stop
1595004561 2020-07-17 18:49:21.463 INFO TestAgent Test finished
1595004561 2020-07-17 18:49:21.468 INFO TestAgent Terminated iwevent
1595004561 2020-07-17 18:49:21.472 INFO TestAgent Terminated mqtt file
1595004561 2020-07-17 18:49:21.476 INFO TestAgent Closed rssi file
1595004561 2020-07-17 18:49:21.483 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21285).
Exiting ovsdb-server (21270).
1595004561 2020-07-17 18:49:21.887 INFO TestAgent Reset wifi
1595004562 2020-07-17 18:49:22.915 INFO TestAgent iw sta0 connect ap1-train 5260
1595004562 2020-07-17 18:49:22.933 INFO TestAgent Done
1595004596 2020-07-17 18:49:56.832 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004601 2020-07-17 18:50:01.838 INFO TestAgent Got mqtt message: starttest-1595004564
1595004601 2020-07-17 18:50:01.841 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004602 2020-07-17 18:50:02.072 INFO TestAgent Starting Test
1595004602 2020-07-17 18:50:02.079 INFO TestAgent Create: /testdata/1595004564/
1595004608 2020-07-17 18:50:08.447 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.74336197553383}
1595004632 2020-07-17 18:50:32.353 INFO TestAgent Got mqtt message: stop
1595004632 2020-07-17 18:50:32.357 INFO TestAgent Test finished
1595004632 2020-07-17 18:50:32.362 INFO TestAgent Terminated iwevent
1595004632 2020-07-17 18:50:32.366 INFO TestAgent Terminated mqtt file
1595004632 2020-07-17 18:50:32.369 INFO TestAgent Closed rssi file
1595004632 2020-07-17 18:50:32.377 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21566).
Exiting ovsdb-server (21551).
1595004632 2020-07-17 18:50:32.780 INFO TestAgent Reset wifi
1595004633 2020-07-17 18:50:33.807 INFO TestAgent iw sta0 connect ap1-train 5260
1595004633 2020-07-17 18:50:33.826 INFO TestAgent Done
1595004675 2020-07-17 18:51:15.502 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004680 2020-07-17 18:51:20.501 INFO TestAgent Got mqtt message: starttest--ping-1595004634
1595004680 2020-07-17 18:51:20.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004680 2020-07-17 18:51:20.836 INFO TestAgent Starting Test
1595004680 2020-07-17 18:51:20.839 INFO TestAgent Create: /testdata/1595004634/
1595004687 2020-07-17 18:51:27.183 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.07382348931104}
1595004689 2020-07-17 18:51:29.601 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004710 2020-07-17 18:51:50.768 INFO TestAgent Got mqtt message: stop
1595004710 2020-07-17 18:51:50.771 INFO TestAgent Test finished
1595004710 2020-07-17 18:51:50.776 INFO TestAgent Terminated iwevent
1595004710 2020-07-17 18:51:50.780 INFO TestAgent Terminated mqtt file
1595004710 2020-07-17 18:51:50.784 INFO TestAgent Closed rssi file
1595004710 2020-07-17 18:51:50.792 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (21842).
Exiting ovsdb-server (21827).
1595004711 2020-07-17 18:51:51.199 INFO TestAgent Reset wifi
1595004712 2020-07-17 18:51:52.227 INFO TestAgent iw sta0 connect ap1-train 5260
1595004712 2020-07-17 18:51:52.245 INFO TestAgent Done
1595004754 2020-07-17 18:52:34.491 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004759 2020-07-17 18:52:39.502 INFO TestAgent Got mqtt message: starttest-1595004713
1595004759 2020-07-17 18:52:39.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004759 2020-07-17 18:52:39.754 INFO TestAgent Starting Test
1595004759 2020-07-17 18:52:39.759 INFO TestAgent Create: /testdata/1595004713/
1595004766 2020-07-17 18:52:46.096 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.2490288221298}
1595004768 2020-07-17 18:52:48.503 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595004789 2020-07-17 18:53:09.694 INFO TestAgent Got mqtt message: stop
1595004789 2020-07-17 18:53:09.697 INFO TestAgent Test finished
1595004789 2020-07-17 18:53:09.702 INFO TestAgent Terminated iwevent
1595004789 2020-07-17 18:53:09.706 INFO TestAgent Terminated mqtt file
1595004789 2020-07-17 18:53:09.710 INFO TestAgent Closed rssi file
1595004789 2020-07-17 18:53:09.718 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22130).
Exiting ovsdb-server (22115).
1595004790 2020-07-17 18:53:10.196 INFO TestAgent Reset wifi
1595004791 2020-07-17 18:53:11.224 INFO TestAgent iw sta0 connect ap1-train 5260
1595004791 2020-07-17 18:53:11.259 INFO TestAgent Done
1595004825 2020-07-17 18:53:45.150 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004830 2020-07-17 18:53:50.154 INFO TestAgent Got mqtt message: starttest--ping-1595004792
1595004830 2020-07-17 18:53:50.157 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004830 2020-07-17 18:53:50.395 INFO TestAgent Starting Test
1595004830 2020-07-17 18:53:50.399 INFO TestAgent Create: /testdata/1595004792/
1595004836 2020-07-17 18:53:56.737 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.61611420472278}
1595004860 2020-07-17 18:54:20.271 INFO TestAgent Got mqtt message: stop
1595004860 2020-07-17 18:54:20.275 INFO TestAgent Test finished
1595004860 2020-07-17 18:54:20.279 INFO TestAgent Terminated iwevent
1595004860 2020-07-17 18:54:20.283 INFO TestAgent Terminated mqtt file
1595004860 2020-07-17 18:54:20.287 INFO TestAgent Closed rssi file
1595004860 2020-07-17 18:54:20.296 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22416).
Exiting ovsdb-server (22403).
1595004860 2020-07-17 18:54:20.694 INFO TestAgent Reset wifi
1595004861 2020-07-17 18:54:21.721 INFO TestAgent iw sta0 connect ap1-train 5260
1595004861 2020-07-17 18:54:21.739 INFO TestAgent Done
1595004895 2020-07-17 18:54:55.933 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004900 2020-07-17 18:55:00.942 INFO TestAgent Got mqtt message: starttest-1595004863
1595004900 2020-07-17 18:55:00.945 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004901 2020-07-17 18:55:01.176 INFO TestAgent Starting Test
1595004901 2020-07-17 18:55:01.186 INFO TestAgent Create: /testdata/1595004863/
1595004907 2020-07-17 18:55:07.506 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.23131654636897}
1595004931 2020-07-17 18:55:31.134 INFO TestAgent Got mqtt message: stop
1595004931 2020-07-17 18:55:31.140 INFO TestAgent Test finished
1595004931 2020-07-17 18:55:31.144 INFO TestAgent Terminated iwevent
1595004931 2020-07-17 18:55:31.148 INFO TestAgent Terminated mqtt file
1595004931 2020-07-17 18:55:31.152 INFO TestAgent Closed rssi file
1595004931 2020-07-17 18:55:31.160 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22696).
Exiting ovsdb-server (22683).
1595004931 2020-07-17 18:55:31.618 INFO TestAgent Reset wifi
1595004932 2020-07-17 18:55:32.645 INFO TestAgent iw sta0 connect ap1-train 5260
1595004932 2020-07-17 18:55:32.683 INFO TestAgent Done
1595004974 2020-07-17 18:56:14.494 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595004979 2020-07-17 18:56:19.502 INFO TestAgent Got mqtt message: starttest--ping-1595004933
1595004979 2020-07-17 18:56:19.505 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595004979 2020-07-17 18:56:19.739 INFO TestAgent Starting Test
1595004979 2020-07-17 18:56:19.747 INFO TestAgent Create: /testdata/1595004933/
1595004986 2020-07-17 18:56:26.045 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.93790234752342}
1595004988 2020-07-17 18:56:28.414 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595005009 2020-07-17 18:56:49.448 INFO TestAgent Got mqtt message: stop
1595005009 2020-07-17 18:56:49.452 INFO TestAgent Test finished
1595005009 2020-07-17 18:56:49.456 INFO TestAgent Terminated iwevent
1595005009 2020-07-17 18:56:49.460 INFO TestAgent Terminated mqtt file
1595005009 2020-07-17 18:56:49.464 INFO TestAgent Closed rssi file
1595005009 2020-07-17 18:56:49.472 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (22971).
Exiting ovsdb-server (22958).
1595005009 2020-07-17 18:56:49.881 INFO TestAgent Reset wifi
1595005010 2020-07-17 18:56:50.908 INFO TestAgent iw sta0 connect ap1-train 5260
1595005010 2020-07-17 18:56:50.927 INFO TestAgent Done
1595005053 2020-07-17 18:57:33.496 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595005058 2020-07-17 18:57:38.504 INFO TestAgent Got mqtt message: starttest-1595005012
1595005058 2020-07-17 18:57:38.508 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595005058 2020-07-17 18:57:38.745 INFO TestAgent Starting Test
1595005058 2020-07-17 18:57:38.749 INFO TestAgent Create: /testdata/1595005012/
1595005065 2020-07-17 18:57:45.090 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.55312777643532}
1595005067 2020-07-17 18:57:47.520 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595005088 2020-07-17 18:58:08.623 INFO TestAgent Got mqtt message: stop
1595005088 2020-07-17 18:58:08.627 INFO TestAgent Test finished
1595005088 2020-07-17 18:58:08.632 INFO TestAgent Terminated iwevent
1595005088 2020-07-17 18:58:08.635 INFO TestAgent Terminated mqtt file
1595005088 2020-07-17 18:58:08.640 INFO TestAgent Closed rssi file
1595005088 2020-07-17 18:58:08.652 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23268).
Exiting ovsdb-server (23253).
1595005089 2020-07-17 18:58:09.109 INFO TestAgent Reset wifi
1595005090 2020-07-17 18:58:10.136 INFO TestAgent iw sta0 connect ap1-train 5260
1595005090 2020-07-17 18:58:10.155 INFO TestAgent Done
1595005124 2020-07-17 18:58:44.189 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595005129 2020-07-17 18:58:49.194 INFO TestAgent Got mqtt message: starttest--ping-1595005091
1595005129 2020-07-17 18:58:49.198 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595005129 2020-07-17 18:58:49.426 INFO TestAgent Starting Test
1595005129 2020-07-17 18:58:49.430 INFO TestAgent Create: /testdata/1595005091/
1595005135 2020-07-17 18:58:55.760 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.68216469029935}
1595005159 2020-07-17 18:59:19.370 INFO TestAgent Got mqtt message: stop
1595005159 2020-07-17 18:59:19.374 INFO TestAgent Test finished
1595005159 2020-07-17 18:59:19.379 INFO TestAgent Terminated iwevent
1595005159 2020-07-17 18:59:19.382 INFO TestAgent Terminated mqtt file
1595005159 2020-07-17 18:59:19.386 INFO TestAgent Closed rssi file
1595005159 2020-07-17 18:59:19.395 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23556).
Exiting ovsdb-server (23541).
1595005159 2020-07-17 18:59:19.800 INFO TestAgent Reset wifi
1595005160 2020-07-17 18:59:20.828 INFO TestAgent iw sta0 connect ap1-train 5260
1595005160 2020-07-17 18:59:20.846 INFO TestAgent Done
1595005195 2020-07-17 18:59:55.074 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595005200 2020-07-17 19:00:00.087 INFO TestAgent Got mqtt message: starttest-1595005162
1595005200 2020-07-17 19:00:00.090 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595005200 2020-07-17 19:00:00.317 INFO TestAgent Starting Test
1595005200 2020-07-17 19:00:00.320 INFO TestAgent Create: /testdata/1595005162/
1595005206 2020-07-17 19:00:06.724 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 102.37080109698064}
1595005230 2020-07-17 19:00:30.323 INFO TestAgent Got mqtt message: stop
1595005230 2020-07-17 19:00:30.327 INFO TestAgent Test finished
1595005230 2020-07-17 19:00:30.332 INFO TestAgent Terminated iwevent
1595005230 2020-07-17 19:00:30.335 INFO TestAgent Terminated mqtt file
1595005230 2020-07-17 19:00:30.339 INFO TestAgent Closed rssi file
1595005230 2020-07-17 19:00:30.348 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (23832).
Exiting ovsdb-server (23817).
1595005230 2020-07-17 19:00:30.797 INFO TestAgent Reset wifi
1595005231 2020-07-17 19:00:31.824 INFO TestAgent iw sta0 connect ap1-train 5260
1595005231 2020-07-17 19:00:31.863 INFO TestAgent Done
1595005273 2020-07-17 19:01:13.498 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595005278 2020-07-17 19:01:18.494 INFO TestAgent Got mqtt message: starttest--ping-1595005232
1595005278 2020-07-17 19:01:18.497 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595005278 2020-07-17 19:01:18.721 INFO TestAgent Starting Test
1595005278 2020-07-17 19:01:18.726 INFO TestAgent Create: /testdata/1595005232/
1595005285 2020-07-17 19:01:25.132 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 104.37288149319265}
1595005287 2020-07-17 19:01:27.520 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595005308 2020-07-17 19:01:48.722 INFO TestAgent Got mqtt message: stop
1595005308 2020-07-17 19:01:48.726 INFO TestAgent Test finished
1595005308 2020-07-17 19:01:48.731 INFO TestAgent Terminated iwevent
1595005308 2020-07-17 19:01:48.734 INFO TestAgent Terminated mqtt file
1595005308 2020-07-17 19:01:48.738 INFO TestAgent Closed rssi file
1595005308 2020-07-17 19:01:48.746 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24110).
Exiting ovsdb-server (24097).
1595005309 2020-07-17 19:01:49.197 INFO TestAgent Reset wifi
1595005310 2020-07-17 19:01:50.224 INFO TestAgent iw sta0 connect ap1-train 5260
1595005310 2020-07-17 19:01:50.243 INFO TestAgent Done
1595005352 2020-07-17 19:02:32.497 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 1}
1595005357 2020-07-17 19:02:37.505 INFO TestAgent Got mqtt message: starttest-1595005311
1595005357 2020-07-17 19:02:37.511 INFO TestAgent Start ovs
ovsdb-server is already running.
ovs-vswitchd is already running.
Enabling remote OVSDB managers.
1595005357 2020-07-17 19:02:37.745 INFO TestAgent Starting Test
1595005357 2020-07-17 19:02:37.748 INFO TestAgent Create: /testdata/1595005311/
1595005364 2020-07-17 19:02:44.067 INFO TestAgent Got mqtt message: { "bg": 1, "track": "VZG2651", "position": 0, "speed": 103.73856030350511}
1595005366 2020-07-17 19:02:46.467 INFO TestAgent Got mqtt message: {"id": "ap2-train", "bssid": "64:66:b3:4f:fc:ac", "ch": 5280}
1595005387 2020-07-17 19:03:07.720 INFO TestAgent Got mqtt message: stop
1595005387 2020-07-17 19:03:07.723 INFO TestAgent Test finished
1595005387 2020-07-17 19:03:07.728 INFO TestAgent Terminated iwevent
1595005387 2020-07-17 19:03:07.732 INFO TestAgent Terminated mqtt file
1595005387 2020-07-17 19:03:07.736 INFO TestAgent Closed rssi file
1595005387 2020-07-17 19:03:07.743 INFO TestAgent Stop ovs to kill all remaining flows
Exiting ovs-vswitchd (24401).