-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimulation.log
3319 lines (3319 loc) · 303 KB
/
simulation.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RUN com.itv.atsdcf.perf.BurstSimulation burstsimulation 1528987421930 2.0
USER BurstJourneySimulation 1 START 1528987422408 1528987422408
USER BurstJourneySimulation 2 START 1528987422414 1528987422414
USER BurstJourneySimulation 3 START 1528987422414 1528987422414
USER BurstJourneySimulation 4 START 1528987422414 1528987422414
USER BurstJourneySimulation 5 START 1528987422415 1528987422415
USER BurstJourneySimulation 6 START 1528987422415 1528987422415
USER BurstJourneySimulation 7 START 1528987422415 1528987422415
USER BurstJourneySimulation 8 START 1528987422415 1528987422415
USER BurstJourneySimulation 9 START 1528987422415 1528987422415
USER BurstJourneySimulation 10 START 1528987422416 1528987422416
USER BurstJourneySimulation 11 START 1528987422416 1528987422416
USER BurstJourneySimulation 12 START 1528987422416 1528987422416
USER BurstJourneySimulation 13 START 1528987422416 1528987422416
USER BurstJourneySimulation 14 START 1528987422416 1528987422416
USER BurstJourneySimulation 15 START 1528987422417 1528987422417
USER BurstJourneySimulation 16 START 1528987422417 1528987422417
USER BurstJourneySimulation 17 START 1528987422417 1528987422417
USER BurstJourneySimulation 18 START 1528987422417 1528987422417
USER BurstJourneySimulation 19 START 1528987422417 1528987422417
USER BurstJourneySimulation 20 START 1528987422417 1528987422417
USER BurstJourneySimulation 21 START 1528987422417 1528987422417
USER BurstJourneySimulation 22 START 1528987422417 1528987422417
USER BurstJourneySimulation 23 START 1528987422418 1528987422418
USER BurstJourneySimulation 24 START 1528987422418 1528987422418
USER BurstJourneySimulation 25 START 1528987422418 1528987422418
USER BurstJourneySimulation 26 START 1528987422418 1528987422418
USER BurstJourneySimulation 27 START 1528987422418 1528987422418
USER BurstJourneySimulation 28 START 1528987422418 1528987422418
USER BurstJourneySimulation 29 START 1528987422419 1528987422419
USER BurstJourneySimulation 30 START 1528987422419 1528987422419
USER BurstJourneySimulation 31 START 1528987422419 1528987422419
USER BurstJourneySimulation 32 START 1528987422419 1528987422419
USER BurstJourneySimulation 33 START 1528987422420 1528987422420
USER BurstJourneySimulation 34 START 1528987422420 1528987422420
USER BurstJourneySimulation 35 START 1528987422420 1528987422420
USER BurstJourneySimulation 36 START 1528987422420 1528987422420
USER BurstJourneySimulation 37 START 1528987422421 1528987422421
USER BurstJourneySimulation 38 START 1528987422421 1528987422421
USER BurstJourneySimulation 39 START 1528987422421 1528987422421
USER BurstJourneySimulation 40 START 1528987422421 1528987422421
USER BurstJourneySimulation 41 START 1528987422421 1528987422421
USER BurstJourneySimulation 42 START 1528987422422 1528987422422
USER BurstJourneySimulation 43 START 1528987422422 1528987422422
USER BurstJourneySimulation 44 START 1528987422422 1528987422422
USER BurstJourneySimulation 45 START 1528987422422 1528987422422
USER BurstJourneySimulation 46 START 1528987422422 1528987422422
USER BurstJourneySimulation 47 START 1528987422423 1528987422423
USER BurstJourneySimulation 48 START 1528987422423 1528987422423
USER BurstJourneySimulation 49 START 1528987422423 1528987422423
USER BurstJourneySimulation 50 START 1528987422423 1528987422423
REQUEST BurstJourneySimulation 5 notifications 1528987422462 1528987422618 OK
REQUEST BurstJourneySimulation 22 notifications 1528987422479 1528987422625 OK
REQUEST BurstJourneySimulation 8 notifications 1528987422466 1528987422634 OK
REQUEST BurstJourneySimulation 36 notifications 1528987422494 1528987422641 OK
REQUEST BurstJourneySimulation 24 notifications 1528987422482 1528987422642 OK
REQUEST BurstJourneySimulation 10 notifications 1528987422467 1528987422642 OK
REQUEST BurstJourneySimulation 4 notifications 1528987422461 1528987422643 OK
REQUEST BurstJourneySimulation 32 notifications 1528987422489 1528987422644 OK
REQUEST BurstJourneySimulation 6 notifications 1528987422463 1528987422646 OK
REQUEST BurstJourneySimulation 37 notifications 1528987422495 1528987422652 OK
REQUEST BurstJourneySimulation 25 notifications 1528987422483 1528987422652 OK
REQUEST BurstJourneySimulation 15 notifications 1528987422473 1528987422652 OK
REQUEST BurstJourneySimulation 46 notifications 1528987422505 1528987422657 OK
REQUEST BurstJourneySimulation 7 notifications 1528987422464 1528987422668 OK
REQUEST BurstJourneySimulation 12 notifications 1528987422469 1528987422669 OK
REQUEST BurstJourneySimulation 20 notifications 1528987422478 1528987422672 OK
REQUEST BurstJourneySimulation 26 notifications 1528987422484 1528987422672 OK
REQUEST BurstJourneySimulation 38 notifications 1528987422496 1528987422673 OK
REQUEST BurstJourneySimulation 29 notifications 1528987422486 1528987422674 OK
REQUEST BurstJourneySimulation 28 notifications 1528987422485 1528987422675 OK
REQUEST BurstJourneySimulation 41 notifications 1528987422499 1528987422678 OK
REQUEST BurstJourneySimulation 9 notifications 1528987422466 1528987422687 OK
REQUEST BurstJourneySimulation 30 notifications 1528987422487 1528987422687 OK
REQUEST BurstJourneySimulation 42 notifications 1528987422502 1528987422695 OK
REQUEST BurstJourneySimulation 2 notifications 1528987422459 1528987422696 OK
REQUEST BurstJourneySimulation 17 notifications 1528987422476 1528987422703 OK
REQUEST BurstJourneySimulation 50 notifications 1528987422509 1528987422705 OK
REQUEST BurstJourneySimulation 13 notifications 1528987422471 1528987422708 OK
REQUEST BurstJourneySimulation 45 notifications 1528987422505 1528987422709 OK
REQUEST BurstJourneySimulation 33 notifications 1528987422491 1528987422719 OK
REQUEST BurstJourneySimulation 43 notifications 1528987422503 1528987422722 OK
REQUEST BurstJourneySimulation 35 notifications 1528987422494 1528987422727 OK
REQUEST BurstJourneySimulation 18 notifications 1528987422477 1528987422731 OK
REQUEST BurstJourneySimulation 48 notifications 1528987422507 1528987422743 OK
REQUEST BurstJourneySimulation 23 notifications 1528987422481 1528987422750 OK
REQUEST BurstJourneySimulation 14 notifications 1528987422472 1528987422757 OK
REQUEST BurstJourneySimulation 44 notifications 1528987422504 1528987422760 OK
REQUEST BurstJourneySimulation 49 notifications 1528987422508 1528987422761 OK
REQUEST BurstJourneySimulation 1 notifications 1528987422437 1528987422775 OK
REQUEST BurstJourneySimulation 3 notifications 1528987422460 1528987422775 OK
REQUEST BurstJourneySimulation 39 notifications 1528987422497 1528987422838 OK
REQUEST BurstJourneySimulation 47 notifications 1528987422506 1528987422842 OK
REQUEST BurstJourneySimulation 31 notifications 1528987422488 1528987422843 OK
REQUEST BurstJourneySimulation 21 notifications 1528987422479 1528987422850 OK
REQUEST BurstJourneySimulation 27 notifications 1528987422484 1528987422850 OK
REQUEST BurstJourneySimulation 11 notifications 1528987422468 1528987422851 OK
REQUEST BurstJourneySimulation 19 notifications 1528987422477 1528987422858 OK
REQUEST BurstJourneySimulation 16 notifications 1528987422474 1528987422864 OK
REQUEST BurstJourneySimulation 32 get demographics 1528987422853 1528987422866 OK
REQUEST BurstJourneySimulation 32 get sales groups 1528987422866 1528987422882 OK
REQUEST BurstJourneySimulation 34 notifications 1528987422492 1528987422892 OK
REQUEST BurstJourneySimulation 40 notifications 1528987422498 1528987422906 OK
REQUEST BurstJourneySimulation 7 get demographics 1528987423074 1528987423086 OK
REQUEST BurstJourneySimulation 7 get sales groups 1528987423087 1528987423103 OK
REQUEST BurstJourneySimulation 32 get campaign list 1528987422885 1528987423277 OK
REQUEST BurstJourneySimulation 46 get demographics 1528987423273 1528987423281 OK
REQUEST BurstJourneySimulation 46 get sales groups 1528987423282 1528987423308 OK
REQUEST BurstJourneySimulation 32 products 1528987423278 1528987423314 OK
REQUEST BurstJourneySimulation 32 products 1528987423316 1528987423346 OK
REQUEST BurstJourneySimulation 32 get programmes 1528987423347 1528987423355 OK
REQUEST BurstJourneySimulation 7 get campaign list 1528987423104 1528987423388 OK
REQUEST BurstJourneySimulation 7 products 1528987423388 1528987423402 OK
REQUEST BurstJourneySimulation 7 products 1528987423403 1528987423416 OK
REQUEST BurstJourneySimulation 7 get programmes 1528987423417 1528987423428 OK
REQUEST BurstJourneySimulation 45 get demographics 1528987423554 1528987423573 OK
REQUEST BurstJourneySimulation 45 get sales groups 1528987423573 1528987423598 OK
REQUEST BurstJourneySimulation 7 get break list 20180322 1528987423429 1528987423558 OK
REQUEST BurstJourneySimulation 32 get break list 20180319 1528987423356 1528987423677 OK
REQUEST BurstJourneySimulation 46 get campaign list 1528987423309 1528987423756 OK
REQUEST BurstJourneySimulation 46 products 1528987423757 1528987423771 OK
REQUEST BurstJourneySimulation 46 products 1528987423772 1528987423786 OK
REQUEST BurstJourneySimulation 50 get demographics 1528987423765 1528987423788 OK
REQUEST BurstJourneySimulation 41 get demographics 1528987423773 1528987423791 OK
REQUEST BurstJourneySimulation 41 get sales groups 1528987423792 1528987423813 OK
REQUEST BurstJourneySimulation 50 get sales groups 1528987423788 1528987423813 OK
REQUEST BurstJourneySimulation 46 get programmes 1528987423787 1528987423813 OK
REQUEST BurstJourneySimulation 45 get campaign list 1528987423599 1528987423855 OK
REQUEST BurstJourneySimulation 45 products 1528987423856 1528987423871 OK
REQUEST BurstJourneySimulation 45 products 1528987423871 1528987423896 OK
REQUEST BurstJourneySimulation 46 get break list 20180323 1528987423814 1528987423911 OK
REQUEST BurstJourneySimulation 34 get demographics 1528987423894 1528987423912 OK
REQUEST BurstJourneySimulation 45 get programmes 1528987423897 1528987423919 OK
REQUEST BurstJourneySimulation 34 get sales groups 1528987423913 1528987423930 OK
REQUEST BurstJourneySimulation 33 get demographics 1528987424034 1528987424045 OK
REQUEST BurstJourneySimulation 33 get sales groups 1528987424046 1528987424063 OK
REQUEST BurstJourneySimulation 45 get break list 20180323 1528987423919 1528987424071 OK
REQUEST BurstJourneySimulation 50 get campaign list 1528987423814 1528987424240 OK
REQUEST BurstJourneySimulation 41 get campaign list 1528987423814 1528987424246 OK
REQUEST BurstJourneySimulation 47 get demographics 1528987424236 1528987424247 OK
REQUEST BurstJourneySimulation 21 get demographics 1528987424245 1528987424252 OK
REQUEST BurstJourneySimulation 47 get sales groups 1528987424248 1528987424259 OK
REQUEST BurstJourneySimulation 41 products 1528987424247 1528987424261 OK
REQUEST BurstJourneySimulation 50 products 1528987424241 1528987424270 OK
REQUEST BurstJourneySimulation 41 products 1528987424261 1528987424270 OK
REQUEST BurstJourneySimulation 21 get sales groups 1528987424253 1528987424278 OK
REQUEST BurstJourneySimulation 41 get programmes 1528987424271 1528987424281 OK
REQUEST BurstJourneySimulation 50 products 1528987424271 1528987424293 OK
REQUEST BurstJourneySimulation 50 get programmes 1528987424294 1528987424303 OK
REQUEST BurstJourneySimulation 24 get demographics 1528987424283 1528987424312 OK
REQUEST BurstJourneySimulation 24 get sales groups 1528987424313 1528987424328 OK
REQUEST BurstJourneySimulation 34 get campaign list 1528987423931 1528987424360 OK
REQUEST BurstJourneySimulation 41 get break list 20180323 1528987424282 1528987424389 OK
REQUEST BurstJourneySimulation 34 products 1528987424361 1528987424390 OK
REQUEST BurstJourneySimulation 34 products 1528987424392 1528987424410 OK
REQUEST BurstJourneySimulation 34 get programmes 1528987424411 1528987424420 OK
REQUEST BurstJourneySimulation 33 get campaign list 1528987424064 1528987424440 OK
REQUEST BurstJourneySimulation 13 get demographics 1528987424455 1528987424462 OK
REQUEST BurstJourneySimulation 33 products 1528987424441 1528987424471 OK
REQUEST BurstJourneySimulation 13 get sales groups 1528987424462 1528987424475 OK
REQUEST BurstJourneySimulation 19 get demographics 1528987424475 1528987424481 OK
REQUEST BurstJourneySimulation 19 get sales groups 1528987424482 1528987424493 OK
REQUEST BurstJourneySimulation 33 products 1528987424473 1528987424496 OK
REQUEST BurstJourneySimulation 33 get programmes 1528987424497 1528987424504 OK
REQUEST BurstJourneySimulation 21 get campaign list 1528987424278 1528987424549 OK
REQUEST BurstJourneySimulation 21 products 1528987424549 1528987424571 OK
REQUEST BurstJourneySimulation 21 products 1528987424571 1528987424583 OK
REQUEST BurstJourneySimulation 21 get programmes 1528987424583 1528987424591 OK
REQUEST BurstJourneySimulation 24 get campaign list 1528987424329 1528987424651 OK
REQUEST BurstJourneySimulation 47 get campaign list 1528987424260 1528987424656 OK
REQUEST BurstJourneySimulation 47 products 1528987424657 1528987424667 OK
REQUEST BurstJourneySimulation 24 products 1528987424652 1528987424669 OK
REQUEST BurstJourneySimulation 47 products 1528987424668 1528987424677 OK
REQUEST BurstJourneySimulation 24 products 1528987424670 1528987424682 OK
REQUEST BurstJourneySimulation 47 get programmes 1528987424677 1528987424688 OK
REQUEST BurstJourneySimulation 24 get programmes 1528987424683 1528987424694 OK
REQUEST BurstJourneySimulation 20 get demographics 1528987424693 1528987424703 OK
REQUEST BurstJourneySimulation 20 get sales groups 1528987424704 1528987424721 OK
REQUEST BurstJourneySimulation 50 get break list 20180321 1528987424304 1528987424715 OK
REQUEST BurstJourneySimulation 13 get campaign list 1528987424476 1528987424740 OK
REQUEST BurstJourneySimulation 34 get break list 20180319 1528987424420 1528987424748 OK
REQUEST BurstJourneySimulation 13 products 1528987424741 1528987424755 OK
REQUEST BurstJourneySimulation 13 products 1528987424756 1528987424771 OK
REQUEST BurstJourneySimulation 13 get programmes 1528987424772 1528987424779 OK
REQUEST BurstJourneySimulation 47 get break list 20180323 1528987424689 1528987424783 OK
REQUEST BurstJourneySimulation 21 get break list 20180321 1528987424592 1528987424787 OK
REQUEST BurstJourneySimulation 19 get campaign list 1528987424494 1528987424789 OK
REQUEST BurstJourneySimulation 24 get break list 20180321 1528987424695 1528987424799 OK
REQUEST BurstJourneySimulation 19 products 1528987424789 1528987424801 OK
REQUEST BurstJourneySimulation 19 products 1528987424802 1528987424816 OK
REQUEST BurstJourneySimulation 19 get programmes 1528987424816 1528987424828 OK
REQUEST BurstJourneySimulation 33 get break list 20180319 1528987424505 1528987424829 OK
REQUEST BurstJourneySimulation 13 get break list 20180322 1528987424780 1528987424932 OK
REQUEST BurstJourneySimulation 2 get demographics 1528987424974 1528987424989 OK
REQUEST BurstJourneySimulation 20 get campaign list 1528987424726 1528987424994 OK
REQUEST BurstJourneySimulation 19 get break list 20180321 1528987424828 1528987424997 OK
REQUEST BurstJourneySimulation 34 get break 1528987424865 1528987425005 OK
REQUEST BurstJourneySimulation 2 get sales groups 1528987424990 1528987425009 OK
REQUEST BurstJourneySimulation 20 products 1528987424995 1528987425012 OK
REQUEST BurstJourneySimulation 20 products 1528987425013 1528987425030 OK
REQUEST BurstJourneySimulation 34 get break ratings 1528987425006 1528987425025 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 20 get programmes 1528987425031 1528987425039 OK
REQUEST BurstJourneySimulation 8 get demographics 1528987425033 1528987425041 OK
REQUEST BurstJourneySimulation 8 get sales groups 1528987425042 1528987425069 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987425116
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987425116
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987425116
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987425123
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987425124
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987425124
REQUEST BurstJourneySimulation 27 get demographics 1528987425123 1528987425131 OK
REQUEST BurstJourneySimulation 27 get sales groups 1528987425132 1528987425145 OK
REQUEST BurstJourneySimulation 34 get break spots 1528987425033 1528987425155 OK
REQUEST BurstJourneySimulation 20 get break list 20180321 1528987425039 1528987425158 OK
REQUEST BurstJourneySimulation 34 get break 1528987425155 1528987425227 OK
REQUEST BurstJourneySimulation 34 get break ratings 1528987425228 1528987425236 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 14 get demographics 1528987425263 1528987425274 OK
REQUEST BurstJourneySimulation 14 get sales groups 1528987425275 1528987425292 OK
REQUEST BurstJourneySimulation 34 get break spots 1528987425238 1528987425372 OK
REQUEST BurstJourneySimulation 27 get campaign list 1528987425146 1528987425409 OK
REQUEST BurstJourneySimulation 27 products 1528987425409 1528987425423 OK
REQUEST BurstJourneySimulation 8 get campaign list 1528987425070 1528987425435 OK
REQUEST BurstJourneySimulation 27 products 1528987425424 1528987425436 OK
REQUEST BurstJourneySimulation 2 get campaign list 1528987425010 1528987425441 OK
REQUEST BurstJourneySimulation 35 get demographics 1528987425433 1528987425444 OK
REQUEST BurstJourneySimulation 27 get programmes 1528987425437 1528987425445 OK
REQUEST BurstJourneySimulation 2 products 1528987425442 1528987425456 OK
REQUEST BurstJourneySimulation 35 get sales groups 1528987425444 1528987425461 OK
REQUEST BurstJourneySimulation 2 products 1528987425457 1528987425469 OK
REQUEST BurstJourneySimulation 8 products 1528987425436 1528987425469 OK
REQUEST BurstJourneySimulation 2 get programmes 1528987425470 1528987425480 OK
REQUEST BurstJourneySimulation 8 products 1528987425470 1528987425487 OK
REQUEST BurstJourneySimulation 8 get programmes 1528987425488 1528987425500 OK
REQUEST BurstJourneySimulation 17 get demographics 1528987425533 1528987425542 OK
REQUEST BurstJourneySimulation 27 get break list 20180321 1528987425446 1528987425542 OK
REQUEST BurstJourneySimulation 17 get sales groups 1528987425543 1528987425555 OK
REQUEST BurstJourneySimulation 14 get campaign list 1528987425293 1528987425575 OK
REQUEST BurstJourneySimulation 14 products 1528987425576 1528987425588 OK
REQUEST BurstJourneySimulation 2 get break list 20180322 1528987425481 1528987425591 OK
REQUEST BurstJourneySimulation 14 products 1528987425588 1528987425600 OK
REQUEST BurstJourneySimulation 14 get programmes 1528987425600 1528987425610 OK
REQUEST BurstJourneySimulation 12 get demographics 1528987425624 1528987425632 OK
REQUEST BurstJourneySimulation 12 get sales groups 1528987425633 1528987425644 OK
REQUEST BurstJourneySimulation 25 get demographics 1528987425735 1528987425743 OK
REQUEST BurstJourneySimulation 25 get sales groups 1528987425743 1528987425762 OK
REQUEST BurstJourneySimulation 35 get campaign list 1528987425462 1528987425768 OK
REQUEST BurstJourneySimulation 14 get break list 20180322 1528987425611 1528987425779 OK
REQUEST BurstJourneySimulation 35 products 1528987425768 1528987425786 OK
REQUEST BurstJourneySimulation 44 get demographics 1528987425783 1528987425793 OK
REQUEST BurstJourneySimulation 35 products 1528987425786 1528987425798 OK
REQUEST BurstJourneySimulation 44 get sales groups 1528987425794 1528987425807 OK
REQUEST BurstJourneySimulation 35 get programmes 1528987425798 1528987425809 OK
REQUEST BurstJourneySimulation 17 get campaign list 1528987425555 1528987425819 OK
REQUEST BurstJourneySimulation 17 products 1528987425820 1528987425836 OK
REQUEST BurstJourneySimulation 17 products 1528987425837 1528987425851 OK
REQUEST BurstJourneySimulation 17 get programmes 1528987425851 1528987425858 OK
REQUEST BurstJourneySimulation 10 get demographics 1528987425852 1528987425860 OK
REQUEST BurstJourneySimulation 8 get break list 20180322 1528987425501 1528987425862 OK
REQUEST BurstJourneySimulation 10 get sales groups 1528987425861 1528987425872 OK
REQUEST BurstJourneySimulation 16 get demographics 1528987425883 1528987425891 OK
REQUEST BurstJourneySimulation 16 get sales groups 1528987425892 1528987425904 OK
REQUEST BurstJourneySimulation 35 get break list 20180319 1528987425809 1528987425955 OK
REQUEST BurstJourneySimulation 25 get campaign list 1528987425763 1528987426011 OK
REQUEST BurstJourneySimulation 25 products 1528987426012 1528987426023 OK
REQUEST BurstJourneySimulation 17 get break list 20180322 1528987425859 1528987426027 OK
REQUEST BurstJourneySimulation 25 products 1528987426024 1528987426035 OK
REQUEST BurstJourneySimulation 25 get programmes 1528987426035 1528987426045 OK
REQUEST BurstJourneySimulation 12 get campaign list 1528987425644 1528987426118 OK
REQUEST BurstJourneySimulation 44 get campaign list 1528987425808 1528987426147 OK
REQUEST BurstJourneySimulation 12 products 1528987426119 1528987426149 OK
REQUEST BurstJourneySimulation 44 products 1528987426148 1528987426159 OK
REQUEST BurstJourneySimulation 44 products 1528987426159 1528987426168 OK
REQUEST BurstJourneySimulation 12 products 1528987426150 1528987426173 OK
REQUEST BurstJourneySimulation 44 get programmes 1528987426168 1528987426176 OK
REQUEST BurstJourneySimulation 12 get programmes 1528987426174 1528987426184 OK
REQUEST BurstJourneySimulation 25 get break list 20180321 1528987426046 1528987426194 OK
REQUEST BurstJourneySimulation 16 get campaign list 1528987425905 1528987426257 OK
REQUEST BurstJourneySimulation 16 products 1528987426258 1528987426270 OK
REQUEST BurstJourneySimulation 44 get break list 20180323 1528987426176 1528987426270 OK
REQUEST BurstJourneySimulation 16 products 1528987426270 1528987426284 OK
REQUEST BurstJourneySimulation 10 get campaign list 1528987425873 1528987426287 OK
REQUEST BurstJourneySimulation 16 get programmes 1528987426284 1528987426297 OK
REQUEST BurstJourneySimulation 5 get demographics 1528987426294 1528987426302 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987426305
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987426305
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987426305
REQUEST BurstJourneySimulation 30 get demographics 1528987426305 1528987426315 OK
REQUEST BurstJourneySimulation 5 get sales groups 1528987426303 1528987426316 OK
REQUEST BurstJourneySimulation 10 products 1528987426288 1528987426322 OK
REQUEST BurstJourneySimulation 30 get sales groups 1528987426316 1528987426328 OK
REQUEST BurstJourneySimulation 10 products 1528987426323 1528987426347 OK
REQUEST BurstJourneySimulation 10 get programmes 1528987426348 1528987426356 OK
REQUEST BurstJourneySimulation 31 get demographics 1528987426355 1528987426362 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987426364
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987426364
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987426364
REQUEST BurstJourneySimulation 31 get sales groups 1528987426363 1528987426384 OK
REQUEST BurstJourneySimulation 16 get break list 20180322 1528987426297 1528987426423 OK
REQUEST BurstJourneySimulation 12 get break list 20180322 1528987426185 1528987426501 OK
REQUEST BurstJourneySimulation 28 get demographics 1528987426492 1528987426504 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987426525
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987426525
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987426525
REQUEST BurstJourneySimulation 28 get sales groups 1528987426505 1528987426528 OK
REQUEST BurstJourneySimulation 5 get campaign list 1528987426317 1528987426584 OK
REQUEST BurstJourneySimulation 5 products 1528987426585 1528987426596 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987426605
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987426605
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987426605
REQUEST BurstJourneySimulation 5 products 1528987426597 1528987426610 OK
REQUEST BurstJourneySimulation 5 get programmes 1528987426610 1528987426621 OK
REQUEST BurstJourneySimulation 1 get demographics 1528987426633 1528987426640 OK
REQUEST BurstJourneySimulation 1 get sales groups 1528987426640 1528987426656 OK
REQUEST BurstJourneySimulation 10 get break list 20180322 1528987426356 1528987426663 OK
REQUEST BurstJourneySimulation 30 get campaign list 1528987426329 1528987426683 OK
REQUEST BurstJourneySimulation 3 get demographics 1528987426674 1528987426684 OK
REQUEST BurstJourneySimulation 30 products 1528987426684 1528987426693 OK
REQUEST BurstJourneySimulation 3 get sales groups 1528987426684 1528987426701 OK
REQUEST BurstJourneySimulation 30 products 1528987426694 1528987426705 OK
REQUEST BurstJourneySimulation 30 get programmes 1528987426705 1528987426716 OK
REQUEST BurstJourneySimulation 5 get break list 20180322 1528987426622 1528987426741 OK
REQUEST BurstJourneySimulation 23 get demographics 1528987426735 1528987426745 OK
REQUEST BurstJourneySimulation 23 get sales groups 1528987426745 1528987426759 OK
REQUEST BurstJourneySimulation 31 get campaign list 1528987426385 1528987426768 OK
REQUEST BurstJourneySimulation 37 get demographics 1528987426763 1528987426772 OK
REQUEST BurstJourneySimulation 37 get sales groups 1528987426772 1528987426791 OK
REQUEST BurstJourneySimulation 28 get campaign list 1528987426528 1528987426812 OK
REQUEST BurstJourneySimulation 31 products 1528987426769 1528987426813 OK
REQUEST BurstJourneySimulation 28 products 1528987426813 1528987426826 OK
REQUEST BurstJourneySimulation 28 products 1528987426827 1528987426842 OK
REQUEST BurstJourneySimulation 30 get break list 20180321 1528987426717 1528987426842 OK
REQUEST BurstJourneySimulation 31 products 1528987426813 1528987426848 OK
REQUEST BurstJourneySimulation 28 get programmes 1528987426843 1528987426866 OK
REQUEST BurstJourneySimulation 31 get programmes 1528987426849 1528987426866 OK
REQUEST BurstJourneySimulation 1 get campaign list 1528987426656 1528987426945 OK
REQUEST BurstJourneySimulation 33 get break 1528987426883 1528987426955 OK
REQUEST BurstJourneySimulation 1 products 1528987426946 1528987426957 OK
REQUEST BurstJourneySimulation 6 get demographics 1528987426964 1528987426976 OK
REQUEST BurstJourneySimulation 1 products 1528987426958 1528987426976 OK
REQUEST BurstJourneySimulation 33 get break ratings 1528987426956 1528987426977 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 1 get programmes 1528987426977 1528987426988 OK
REQUEST BurstJourneySimulation 28 get break list 20180321 1528987426867 1528987426990 OK
REQUEST BurstJourneySimulation 6 get sales groups 1528987426977 1528987426991 OK
REQUEST BurstJourneySimulation 3 get campaign list 1528987426701 1528987427004 OK
REQUEST BurstJourneySimulation 3 products 1528987427005 1528987427022 OK
REQUEST BurstJourneySimulation 3 products 1528987427023 1528987427036 OK
REQUEST BurstJourneySimulation 3 get programmes 1528987427037 1528987427053 OK
REQUEST BurstJourneySimulation 37 get campaign list 1528987426792 1528987427057 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427075
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427075
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427075
REQUEST BurstJourneySimulation 37 products 1528987427058 1528987427090 OK
REQUEST BurstJourneySimulation 26 get demographics 1528987427064 1528987427090 OK
REQUEST BurstJourneySimulation 33 get break spots 1528987426978 1528987427097 OK
REQUEST BurstJourneySimulation 37 products 1528987427090 1528987427119 OK
REQUEST BurstJourneySimulation 26 get sales groups 1528987427090 1528987427120 OK
REQUEST BurstJourneySimulation 37 get programmes 1528987427120 1528987427135 OK
REQUEST BurstJourneySimulation 1 get break list 20180321 1528987426989 1528987427135 OK
REQUEST BurstJourneySimulation 23 get campaign list 1528987426760 1528987427147 OK
REQUEST BurstJourneySimulation 31 get break list 20180319 1528987426867 1528987427147 OK
REQUEST BurstJourneySimulation 23 products 1528987427148 1528987427163 OK
REQUEST BurstJourneySimulation 22 get demographics 1528987427164 1528987427171 OK
REQUEST BurstJourneySimulation 23 products 1528987427163 1528987427174 OK
REQUEST BurstJourneySimulation 23 get programmes 1528987427174 1528987427182 OK
REQUEST BurstJourneySimulation 22 get sales groups 1528987427172 1528987427182 OK
REQUEST BurstJourneySimulation 3 get break list 20180322 1528987427053 1528987427194 OK
REQUEST BurstJourneySimulation 43 get demographics 1528987427203 1528987427212 OK
REQUEST BurstJourneySimulation 43 get sales groups 1528987427213 1528987427234 OK
REQUEST BurstJourneySimulation 33 get break 1528987427097 1528987427241 OK
REQUEST BurstJourneySimulation 6 get campaign list 1528987426991 1528987427251 OK
REQUEST BurstJourneySimulation 37 get break list 20180319 1528987427136 1528987427251 OK
REQUEST BurstJourneySimulation 33 get break ratings 1528987427242 1528987427251 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427255
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427255
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427255
REQUEST BurstJourneySimulation 6 products 1528987427252 1528987427270 OK
REQUEST BurstJourneySimulation 18 get demographics 1528987427264 1528987427272 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427273
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427273
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427273
REQUEST BurstJourneySimulation 6 products 1528987427270 1528987427282 OK
REQUEST BurstJourneySimulation 18 get sales groups 1528987427272 1528987427284 OK
REQUEST BurstJourneySimulation 6 get programmes 1528987427282 1528987427292 OK
REQUEST BurstJourneySimulation 23 get break list 20180321 1528987427183 1528987427310 OK
REQUEST BurstJourneySimulation 42 get demographics 1528987427366 1528987427375 OK
REQUEST BurstJourneySimulation 42 get sales groups 1528987427375 1528987427392 OK
REQUEST BurstJourneySimulation 33 get break spots 1528987427252 1528987427444 OK
REQUEST BurstJourneySimulation 26 get campaign list 1528987427120 1528987427447 OK
REQUEST BurstJourneySimulation 6 get break list 20180322 1528987427292 1528987427451 OK
REQUEST BurstJourneySimulation 26 products 1528987427448 1528987427466 OK
REQUEST BurstJourneySimulation 26 products 1528987427466 1528987427480 OK
REQUEST BurstJourneySimulation 26 get programmes 1528987427481 1528987427488 OK
REQUEST BurstJourneySimulation 49 get demographics 1528987427514 1528987427524 OK
REQUEST BurstJourneySimulation 4 get demographics 1528987427523 1528987427531 OK
REQUEST BurstJourneySimulation 49 get sales groups 1528987427525 1528987427548 OK
REQUEST BurstJourneySimulation 4 get sales groups 1528987427532 1528987427550 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427556
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427556
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427556
REQUEST BurstJourneySimulation 43 get campaign list 1528987427235 1528987427566 OK
REQUEST BurstJourneySimulation 43 products 1528987427567 1528987427578 OK
REQUEST BurstJourneySimulation 12 get break 1528987427524 1528987427580 OK
REQUEST BurstJourneySimulation 22 get campaign list 1528987427183 1528987427583 OK
REQUEST BurstJourneySimulation 18 get campaign list 1528987427285 1528987427588 OK
REQUEST BurstJourneySimulation 12 get break ratings 1528987427580 1528987427588 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 43 products 1528987427579 1528987427592 OK
REQUEST BurstJourneySimulation 22 products 1528987427584 1528987427595 OK
REQUEST BurstJourneySimulation 18 products 1528987427588 1528987427600 OK
REQUEST BurstJourneySimulation 43 get programmes 1528987427592 1528987427602 OK
REQUEST BurstJourneySimulation 22 products 1528987427596 1528987427607 OK
REQUEST BurstJourneySimulation 18 products 1528987427600 1528987427610 OK
REQUEST BurstJourneySimulation 18 get programmes 1528987427611 1528987427624 OK
REQUEST BurstJourneySimulation 22 get programmes 1528987427608 1528987427624 OK
REQUEST BurstJourneySimulation 10 get break 1528987427524 1528987427629 OK
REQUEST BurstJourneySimulation 10 get break ratings 1528987427630 1528987427642 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427663
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427663
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427663
REQUEST BurstJourneySimulation 15 get demographics 1528987427692 1528987427710 OK
REQUEST BurstJourneySimulation 43 get break list 20180323 1528987427603 1528987427713 OK
REQUEST BurstJourneySimulation 15 get sales groups 1528987427711 1528987427728 OK
REQUEST BurstJourneySimulation 12 get break spots 1528987427589 1528987427736 OK
REQUEST BurstJourneySimulation 26 get break list 20180321 1528987427489 1528987427736 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427744
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427744
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427744
REQUEST BurstJourneySimulation 42 get campaign list 1528987427393 1528987427770 OK
REQUEST BurstJourneySimulation 42 products 1528987427771 1528987427784 OK
REQUEST BurstJourneySimulation 10 get break spots 1528987427643 1528987427785 OK
REQUEST BurstJourneySimulation 18 get break list 20180322 1528987427625 1528987427792 OK
REQUEST BurstJourneySimulation 11 get demographics 1528987427784 1528987427793 OK
REQUEST BurstJourneySimulation 42 products 1528987427785 1528987427806 OK
REQUEST BurstJourneySimulation 22 get break list 20180321 1528987427625 1528987427806 OK
REQUEST BurstJourneySimulation 49 get campaign list 1528987427548 1528987427809 OK
REQUEST BurstJourneySimulation 11 get sales groups 1528987427794 1528987427812 OK
REQUEST BurstJourneySimulation 42 get programmes 1528987427807 1528987427814 OK
REQUEST BurstJourneySimulation 49 products 1528987427809 1528987427823 OK
REQUEST BurstJourneySimulation 4 get campaign list 1528987427551 1528987427829 OK
REQUEST BurstJourneySimulation 49 products 1528987427823 1528987427832 OK
REQUEST BurstJourneySimulation 49 get programmes 1528987427832 1528987427841 OK
REQUEST BurstJourneySimulation 4 products 1528987427830 1528987427844 OK
REQUEST BurstJourneySimulation 4 products 1528987427845 1528987427858 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427863
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427864
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427864
REQUEST BurstJourneySimulation 12 get break 1528987427737 1528987427863 OK
REQUEST BurstJourneySimulation 4 get programmes 1528987427858 1528987427866 OK
REQUEST BurstJourneySimulation 12 get break ratings 1528987427864 1528987427869 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 42 get break list 20180323 1528987427814 1528987427918 OK
REQUEST BurstJourneySimulation 38 get demographics 1528987427934 1528987427945 OK
REQUEST BurstJourneySimulation 38 get sales groups 1528987427946 1528987427963 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987427973
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987427973
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987427973
REQUEST BurstJourneySimulation 10 get break 1528987427786 1528987427984 OK
REQUEST BurstJourneySimulation 10 get break ratings 1528987427985 1528987427996 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 12 get break spots 1528987427870 1528987428013 OK
REQUEST BurstJourneySimulation 49 get break list 20180323 1528987427841 1528987428047 OK
REQUEST BurstJourneySimulation 15 get campaign list 1528987427728 1528987428054 OK
REQUEST BurstJourneySimulation 36 get demographics 1528987428045 1528987428054 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428064
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428064
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428064
REQUEST BurstJourneySimulation 4 get break list 20180322 1528987427867 1528987428067 OK
REQUEST BurstJourneySimulation 15 products 1528987428055 1528987428067 OK
REQUEST BurstJourneySimulation 36 get sales groups 1528987428055 1528987428073 OK
REQUEST BurstJourneySimulation 48 get demographics 1528987428063 1528987428073 OK
REQUEST BurstJourneySimulation 15 products 1528987428068 1528987428084 OK
REQUEST BurstJourneySimulation 48 get sales groups 1528987428073 1528987428085 OK
REQUEST BurstJourneySimulation 15 get programmes 1528987428084 1528987428095 OK
REQUEST BurstJourneySimulation 9 get demographics 1528987428114 1528987428130 OK
REQUEST BurstJourneySimulation 10 get break spots 1528987427997 1528987428133 OK
REQUEST BurstJourneySimulation 40 get demographics 1528987428124 1528987428133 OK
REQUEST BurstJourneySimulation 9 get sales groups 1528987428130 1528987428144 OK
REQUEST BurstJourneySimulation 40 get sales groups 1528987428134 1528987428148 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428155
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428155
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428155
REQUEST BurstJourneySimulation 15 get break list 20180322 1528987428096 1528987428217 OK
REQUEST BurstJourneySimulation 38 get campaign list 1528987427964 1528987428232 OK
REQUEST BurstJourneySimulation 29 get demographics 1528987428225 1528987428232 OK
REQUEST BurstJourneySimulation 38 products 1528987428232 1528987428247 OK
REQUEST BurstJourneySimulation 29 get sales groups 1528987428233 1528987428250 OK
REQUEST BurstJourneySimulation 38 products 1528987428247 1528987428261 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428273
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428273
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428273
REQUEST BurstJourneySimulation 38 get programmes 1528987428261 1528987428272 OK
REQUEST BurstJourneySimulation 31 get break 1528987428195 1528987428279 OK
REQUEST BurstJourneySimulation 31 get break ratings 1528987428279 1528987428292 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 50 get break 1528987428293 1528987428353 OK
REQUEST BurstJourneySimulation 11 get campaign list 1528987427813 1528987428357 OK
REQUEST BurstJourneySimulation 50 get break ratings 1528987428354 1528987428360 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 36 get campaign list 1528987428073 1528987428371 OK
REQUEST BurstJourneySimulation 36 products 1528987428372 1528987428383 OK
REQUEST BurstJourneySimulation 36 products 1528987428384 1528987428392 OK
REQUEST BurstJourneySimulation 11 products 1528987428357 1528987428394 OK
REQUEST BurstJourneySimulation 36 get programmes 1528987428393 1528987428401 OK
REQUEST BurstJourneySimulation 11 products 1528987428394 1528987428422 OK
REQUEST BurstJourneySimulation 11 get programmes 1528987428422 1528987428434 OK
REQUEST BurstJourneySimulation 31 get break spots 1528987428293 1528987428439 OK
REQUEST BurstJourneySimulation 38 get break list 20180319 1528987428279 1528987428446 OK
REQUEST BurstJourneySimulation 40 get campaign list 1528987428149 1528987428446 OK
REQUEST BurstJourneySimulation 40 products 1528987428447 1528987428460 OK
REQUEST BurstJourneySimulation 50 get break spots 1528987428361 1528987428464 OK
REQUEST BurstJourneySimulation 40 products 1528987428461 1528987428473 OK
REQUEST BurstJourneySimulation 40 get programmes 1528987428474 1528987428480 OK
REQUEST BurstJourneySimulation 48 get campaign list 1528987428085 1528987428502 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428505
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428505
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428505
REQUEST BurstJourneySimulation 29 get campaign list 1528987428250 1528987428506 OK
REQUEST BurstJourneySimulation 36 get break list 20180319 1528987428401 1528987428512 OK
REQUEST BurstJourneySimulation 48 products 1528987428503 1528987428515 OK
REQUEST BurstJourneySimulation 29 products 1528987428506 1528987428520 OK
REQUEST BurstJourneySimulation 48 products 1528987428515 1528987428527 OK
REQUEST BurstJourneySimulation 29 products 1528987428521 1528987428532 OK
REQUEST BurstJourneySimulation 50 get break 1528987428465 1528987428535 OK
REQUEST BurstJourneySimulation 48 get programmes 1528987428527 1528987428537 OK
REQUEST BurstJourneySimulation 29 get programmes 1528987428532 1528987428543 OK
REQUEST BurstJourneySimulation 50 get break ratings 1528987428536 1528987428554 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 40 get break list 20180323 1528987428481 1528987428574 OK
REQUEST BurstJourneySimulation 31 get break 1528987428440 1528987428576 OK
REQUEST BurstJourneySimulation 31 get break ratings 1528987428576 1528987428583 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428605
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428605
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428605
REQUEST BurstJourneySimulation 9 get campaign list 1528987428145 1528987428617 OK
REQUEST BurstJourneySimulation 32 get break 1528987428542 1528987428618 OK
REQUEST BurstJourneySimulation 39 get demographics 1528987428614 1528987428621 OK
REQUEST BurstJourneySimulation 32 get break ratings 1528987428618 1528987428628 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 48 get break list 20180323 1528987428538 1528987428631 OK
REQUEST BurstJourneySimulation 39 get sales groups 1528987428622 1528987428645 OK
REQUEST BurstJourneySimulation 29 get break list 20180321 1528987428543 1528987428647 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428655
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428655
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428655
REQUEST BurstJourneySimulation 9 products 1528987428617 1528987428668 OK
REQUEST BurstJourneySimulation 31 get break spots 1528987428584 1528987428690 OK
REQUEST BurstJourneySimulation 50 get break spots 1528987428554 1528987428697 OK
REQUEST BurstJourneySimulation 9 products 1528987428669 1528987428701 OK
REQUEST BurstJourneySimulation 9 get programmes 1528987428701 1528987428717 OK
REQUEST BurstJourneySimulation 11 get break list 20180322 1528987428435 1528987428723 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428775
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428775
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428775
REQUEST BurstJourneySimulation 32 get break spots 1528987428629 1528987428807 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428823
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428823
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428824
REQUEST BurstJourneySimulation 32 get break 1528987428807 1528987428891 OK
REQUEST BurstJourneySimulation 32 get break ratings 1528987428891 1528987428899 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 39 get campaign list 1528987428645 1528987428905 OK
REQUEST BurstJourneySimulation 39 products 1528987428905 1528987428915 OK
REQUEST BurstJourneySimulation 39 products 1528987428915 1528987428925 OK
REQUEST BurstJourneySimulation 39 get programmes 1528987428925 1528987428938 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987428955
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987428955
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987428955
REQUEST BurstJourneySimulation 32 get break spots 1528987428899 1528987429023 OK
REQUEST BurstJourneySimulation 9 get break list 20180322 1528987428717 1528987429032 OK
REQUEST BurstJourneySimulation 39 get break list 20180323 1528987428938 1528987429042 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429055
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429055
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429055
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429505
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429505
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429505
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429555
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429555
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429555
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429724
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429724
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429724
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429733
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429733
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429733
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429774
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429774
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429774
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429823
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429823
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429823
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987429936
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987429936
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987429936
REQUEST BurstJourneySimulation 8 get break 1528987430115 1528987430192 OK
REQUEST BurstJourneySimulation 8 get break ratings 1528987430193 1528987430200 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987430323
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987430323
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987430323
REQUEST BurstJourneySimulation 8 get break spots 1528987430200 1528987430348 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987430364
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987430364
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987430364
REQUEST BurstJourneySimulation 8 get break 1528987430349 1528987430441 OK
REQUEST BurstJourneySimulation 8 get break ratings 1528987430442 1528987430456 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987430556
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987430556
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987430556
REQUEST BurstJourneySimulation 8 get break spots 1528987430457 1528987430582 OK
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987430815
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987430815
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987430815
REQUEST BurstJourneySimulation 33 get spot from break 01620180319194500 1528987430734 1528987430875 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 33 get spot from break 01620180319195900 1528987430877 1528987431009 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987431155
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987431155
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987431155
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987431883
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987431883
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987431883
REQUEST BurstJourneySimulation 50 get spot from break 01620180321194500 1528987431955 1528987432077 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 32 get spot from break 01620180319194500 1528987431933 1528987432116 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 50 get spot from break 01620180321195900 1528987432080 1528987432195 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
REQUEST BurstJourneySimulation 31 get spot from break 01620180319194500 1528987432084 1528987432264 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 32 get spot from break 01620180319195900 1528987432118 1528987432295 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
REQUEST BurstJourneySimulation 9 get break 1528987432275 1528987432336 OK
REQUEST BurstJourneySimulation 9 get break ratings 1528987432337 1528987432345 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 31 get spot from break 01620180319195900 1528987432266 1528987432407 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987432413
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987432413
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987432413
REQUEST BurstJourneySimulation 9 get break spots 1528987432346 1528987432509 OK
REQUEST BurstJourneySimulation 9 get break 1528987432510 1528987432620 OK
REQUEST BurstJourneySimulation 9 get break ratings 1528987432621 1528987432636 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987432713
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987432713
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987432713
REQUEST BurstJourneySimulation 9 get break spots 1528987432637 1528987432811 OK
REQUEST BurstJourneySimulation 34 get spot from break 01620180319194500 1528987432775 1528987432900 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 34 get spot from break 01620180319195900 1528987432902 1528987433063 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request get break: No attribute named 'break1Id' is defined 1528987433203
GROUP Failed to build request get break ratings: No attribute named 'break1AreaNumber' is defined 1528987433203
GROUP Failed to build request get break spots: No attribute named 'break1Id' is defined 1528987433203
REQUEST BurstJourneySimulation 11 get break 1528987433464 1528987433595 OK
REQUEST BurstJourneySimulation 11 get break ratings 1528987433596 1528987433614 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 11 get break spots 1528987433615 1528987433758 OK
REQUEST BurstJourneySimulation 11 get break 1528987433759 1528987433878 OK
REQUEST BurstJourneySimulation 11 get break ratings 1528987433879 1528987433896 KO status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 404
REQUEST BurstJourneySimulation 11 get break spots 1528987433897 1528987434087 OK
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987434525
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987434794
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987434823
REQUEST BurstJourneySimulation 12 get spot from break 01620180322204500 1528987435305 1528987435434 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 10 get spot from break 01620180322204500 1528987435385 1528987435547 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 12 get spot from break 01620180322205900 1528987435436 1528987435614 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
REQUEST BurstJourneySimulation 10 get spot from break 01620180322205900 1528987435549 1528987435717 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987436233
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987437175
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987437175
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987437175
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987437175
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987437175
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987437176
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987437176
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987437176
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987437176
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987437284
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987437284
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987437284
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987437284
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987437284
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987437285
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987437285
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987437285
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987437285
REQUEST BurstJourneySimulation 8 get spot from break 01620180322204500 1528987437134 1528987437306 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987437384
REQUEST BurstJourneySimulation 8 get spot from break 01620180322205900 1528987437308 1528987437421 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987438004
REQUEST BurstJourneySimulation 9 get spot from break 01620180322204500 1528987440355 1528987440538 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 9 get spot from break 01620180322205900 1528987440540 1528987440725 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987441173
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987441173
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987441174
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987441174
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987441174
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987441174
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987441174
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987441175
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987441175
REQUEST BurstJourneySimulation 11 get spot from break 01620180322204500 1528987441605 1528987441730 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 0
REQUEST BurstJourneySimulation 11 get spot from break 01620180322205900 1528987441732 1528987441874 KO bodyString.find.transform.exists failed, could not extract: transform crashed: 1
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987442034
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987442034
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987442034
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987442034
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987442034
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987442034
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987442035
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987442035
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987442035
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987442345
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987442345
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987442345
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987442345
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987442345
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987442346
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987442346
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987442346
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987442346
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987443425
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987444943
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987444944
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987444944
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987444944
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987444944
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987444945
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987444945
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987444945
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987444945
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987445364
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987445814
GROUP Failed to build request cancel spot: No attribute named 'spot1SpotNumber' is defined 1528987445873
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987447474
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987447474
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987447474
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987447474
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987447474
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987447475
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987447475
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987447475
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987447475
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987447613
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987447613
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987447613
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987447613
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987447613
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987447613
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987447613
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987447613
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987447613
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987450335
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987450335
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987450335
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987450335
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987450335
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987450336
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987450336
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987450336
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987450336
GROUP Failed to build request get spot: No attribute named 'spot2SpotNumber' is defined 1528987451985
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987451985
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987451985
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987451985
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987451985
GROUP Failed to build request get spot amend: No attribute named 'spot2CampaignNumber' is defined 1528987451986
GROUP Failed to build request get spot types: No attribute named 'spot2AreaNo' is defined 1528987451986
GROUP Failed to build request get break list basic: No attribute named 'spot2AreaNo' is defined 1528987451986
GROUP Failed to build request get multipart spots: No attribute named 'spot2SpotNumber' is defined 1528987451986
USER BurstJourneySimulation 52 START 1528988622434 1528988622434
USER BurstJourneySimulation 56 START 1528988622434 1528988622434
USER BurstJourneySimulation 55 START 1528988622434 1528988622434
USER BurstJourneySimulation 51 START 1528988622434 1528988622434
USER BurstJourneySimulation 57 START 1528988622434 1528988622434
USER BurstJourneySimulation 53 START 1528988622434 1528988622434
USER BurstJourneySimulation 59 START 1528988622434 1528988622434
USER BurstJourneySimulation 62 START 1528988622435 1528988622435
USER BurstJourneySimulation 54 START 1528988622434 1528988622434
USER BurstJourneySimulation 60 START 1528988622435 1528988622435
USER BurstJourneySimulation 58 START 1528988622434 1528988622434
USER BurstJourneySimulation 67 START 1528988622435 1528988622435
USER BurstJourneySimulation 68 START 1528988622435 1528988622435
USER BurstJourneySimulation 69 START 1528988622435 1528988622435
USER BurstJourneySimulation 70 START 1528988622435 1528988622435
USER BurstJourneySimulation 71 START 1528988622435 1528988622435
USER BurstJourneySimulation 72 START 1528988622435 1528988622435
USER BurstJourneySimulation 73 START 1528988622435 1528988622435
USER BurstJourneySimulation 74 START 1528988622435 1528988622435
USER BurstJourneySimulation 66 START 1528988622435 1528988622435
USER BurstJourneySimulation 75 START 1528988622436 1528988622436
USER BurstJourneySimulation 65 START 1528988622436 1528988622436
USER BurstJourneySimulation 61 START 1528988622436 1528988622436
USER BurstJourneySimulation 76 START 1528988622436 1528988622436
USER BurstJourneySimulation 77 START 1528988622436 1528988622436
USER BurstJourneySimulation 64 START 1528988622436 1528988622436
USER BurstJourneySimulation 78 START 1528988622436 1528988622436
USER BurstJourneySimulation 79 START 1528988622436 1528988622436
USER BurstJourneySimulation 63 START 1528988622436 1528988622436
USER BurstJourneySimulation 80 START 1528988622436 1528988622436
USER BurstJourneySimulation 82 START 1528988622436 1528988622436
USER BurstJourneySimulation 81 START 1528988622436 1528988622436
USER BurstJourneySimulation 83 START 1528988622436 1528988622436
USER BurstJourneySimulation 85 START 1528988622437 1528988622437
USER BurstJourneySimulation 86 START 1528988622437 1528988622437
USER BurstJourneySimulation 84 START 1528988622437 1528988622437
USER BurstJourneySimulation 87 START 1528988622437 1528988622437
USER BurstJourneySimulation 88 START 1528988622437 1528988622437
USER BurstJourneySimulation 89 START 1528988622437 1528988622437
USER BurstJourneySimulation 90 START 1528988622437 1528988622437
USER BurstJourneySimulation 91 START 1528988622437 1528988622437
USER BurstJourneySimulation 92 START 1528988622437 1528988622437
USER BurstJourneySimulation 93 START 1528988622437 1528988622437
USER BurstJourneySimulation 94 START 1528988622437 1528988622437
USER BurstJourneySimulation 96 START 1528988622437 1528988622437
USER BurstJourneySimulation 95 START 1528988622437 1528988622437
USER BurstJourneySimulation 97 START 1528988622437 1528988622437
USER BurstJourneySimulation 98 START 1528988622438 1528988622438
USER BurstJourneySimulation 99 START 1528988622438 1528988622438
USER BurstJourneySimulation 100 START 1528988622438 1528988622438
USER BurstJourneySimulation 101 START 1528988622438 1528988622438
USER BurstJourneySimulation 102 START 1528988622438 1528988622438
USER BurstJourneySimulation 103 START 1528988622438 1528988622438
USER BurstJourneySimulation 104 START 1528988622438 1528988622438
USER BurstJourneySimulation 105 START 1528988622438 1528988622438
USER BurstJourneySimulation 106 START 1528988622438 1528988622438
USER BurstJourneySimulation 107 START 1528988622438 1528988622438
USER BurstJourneySimulation 108 START 1528988622438 1528988622438
USER BurstJourneySimulation 109 START 1528988622438 1528988622438
USER BurstJourneySimulation 110 START 1528988622438 1528988622438
USER BurstJourneySimulation 111 START 1528988622438 1528988622438
USER BurstJourneySimulation 112 START 1528988622438 1528988622438
USER BurstJourneySimulation 113 START 1528988622438 1528988622438
USER BurstJourneySimulation 114 START 1528988622438 1528988622438
USER BurstJourneySimulation 115 START 1528988622439 1528988622439
USER BurstJourneySimulation 116 START 1528988622439 1528988622439
USER BurstJourneySimulation 117 START 1528988622439 1528988622439
USER BurstJourneySimulation 118 START 1528988622439 1528988622439
USER BurstJourneySimulation 119 START 1528988622439 1528988622439
USER BurstJourneySimulation 120 START 1528988622439 1528988622439
USER BurstJourneySimulation 121 START 1528988622439 1528988622439
USER BurstJourneySimulation 122 START 1528988622439 1528988622439
USER BurstJourneySimulation 123 START 1528988622439 1528988622439
USER BurstJourneySimulation 124 START 1528988622439 1528988622439
USER BurstJourneySimulation 125 START 1528988622439 1528988622439
USER BurstJourneySimulation 126 START 1528988622439 1528988622439
USER BurstJourneySimulation 127 START 1528988622439 1528988622439
USER BurstJourneySimulation 128 START 1528988622440 1528988622440
USER BurstJourneySimulation 129 START 1528988622440 1528988622440
USER BurstJourneySimulation 130 START 1528988622440 1528988622440
USER BurstJourneySimulation 131 START 1528988622440 1528988622440
USER BurstJourneySimulation 132 START 1528988622441 1528988622441
USER BurstJourneySimulation 133 START 1528988622441 1528988622441
USER BurstJourneySimulation 134 START 1528988622441 1528988622441
USER BurstJourneySimulation 135 START 1528988622441 1528988622441
USER BurstJourneySimulation 136 START 1528988622441 1528988622441
USER BurstJourneySimulation 137 START 1528988622441 1528988622441
USER BurstJourneySimulation 138 START 1528988622441 1528988622441
USER BurstJourneySimulation 139 START 1528988622441 1528988622441
USER BurstJourneySimulation 140 START 1528988622441 1528988622441
USER BurstJourneySimulation 141 START 1528988622441 1528988622441
USER BurstJourneySimulation 142 START 1528988622441 1528988622441
USER BurstJourneySimulation 143 START 1528988622441 1528988622441
USER BurstJourneySimulation 144 START 1528988622441 1528988622441
USER BurstJourneySimulation 145 START 1528988622441 1528988622441
USER BurstJourneySimulation 146 START 1528988622441 1528988622441
USER BurstJourneySimulation 147 START 1528988622441 1528988622441
USER BurstJourneySimulation 148 START 1528988622441 1528988622441
USER BurstJourneySimulation 149 START 1528988622441 1528988622441
USER BurstJourneySimulation 150 START 1528988622441 1528988622441
USER BurstJourneySimulation 151 START 1528988622441 1528988622441
USER BurstJourneySimulation 152 START 1528988622442 1528988622442
USER BurstJourneySimulation 153 START 1528988622442 1528988622442
USER BurstJourneySimulation 154 START 1528988622442 1528988622442
USER BurstJourneySimulation 155 START 1528988622442 1528988622442
USER BurstJourneySimulation 156 START 1528988622442 1528988622442
USER BurstJourneySimulation 157 START 1528988622442 1528988622442
USER BurstJourneySimulation 158 START 1528988622442 1528988622442
USER BurstJourneySimulation 159 START 1528988622442 1528988622442
USER BurstJourneySimulation 160 START 1528988622442 1528988622442
USER BurstJourneySimulation 161 START 1528988622442 1528988622442
USER BurstJourneySimulation 162 START 1528988622442 1528988622442
USER BurstJourneySimulation 163 START 1528988622442 1528988622442
USER BurstJourneySimulation 164 START 1528988622442 1528988622442
USER BurstJourneySimulation 165 START 1528988622442 1528988622442
USER BurstJourneySimulation 166 START 1528988622442 1528988622442
USER BurstJourneySimulation 167 START 1528988622442 1528988622442
USER BurstJourneySimulation 168 START 1528988622442 1528988622442
USER BurstJourneySimulation 169 START 1528988622442 1528988622442
USER BurstJourneySimulation 170 START 1528988622442 1528988622442
USER BurstJourneySimulation 171 START 1528988622443 1528988622443
USER BurstJourneySimulation 172 START 1528988622443 1528988622443
USER BurstJourneySimulation 173 START 1528988622443 1528988622443
USER BurstJourneySimulation 174 START 1528988622443 1528988622443
USER BurstJourneySimulation 175 START 1528988622443 1528988622443
USER BurstJourneySimulation 177 START 1528988622443 1528988622443
USER BurstJourneySimulation 178 START 1528988622443 1528988622443
USER BurstJourneySimulation 176 START 1528988622443 1528988622443
USER BurstJourneySimulation 179 START 1528988622443 1528988622443
USER BurstJourneySimulation 180 START 1528988622443 1528988622443
USER BurstJourneySimulation 181 START 1528988622443 1528988622443
USER BurstJourneySimulation 182 START 1528988622443 1528988622443
USER BurstJourneySimulation 184 START 1528988622443 1528988622443
USER BurstJourneySimulation 183 START 1528988622443 1528988622443
USER BurstJourneySimulation 185 START 1528988622444 1528988622444
USER BurstJourneySimulation 186 START 1528988622444 1528988622444
USER BurstJourneySimulation 187 START 1528988622444 1528988622444
USER BurstJourneySimulation 188 START 1528988622444 1528988622444
USER BurstJourneySimulation 189 START 1528988622444 1528988622444
USER BurstJourneySimulation 190 START 1528988622444 1528988622444
USER BurstJourneySimulation 191 START 1528988622444 1528988622444
USER BurstJourneySimulation 192 START 1528988622444 1528988622444
USER BurstJourneySimulation 193 START 1528988622444 1528988622444
USER BurstJourneySimulation 194 START 1528988622444 1528988622444
USER BurstJourneySimulation 195 START 1528988622444 1528988622444
USER BurstJourneySimulation 196 START 1528988622444 1528988622444
USER BurstJourneySimulation 197 START 1528988622444 1528988622444
USER BurstJourneySimulation 198 START 1528988622444 1528988622444
USER BurstJourneySimulation 199 START 1528988622444 1528988622444
USER BurstJourneySimulation 200 START 1528988622444 1528988622444
REQUEST BurstJourneySimulation 53 notifications 1528988622435 1528988622641 OK
REQUEST BurstJourneySimulation 60 notifications 1528988622449 1528988622641 OK
REQUEST BurstJourneySimulation 54 notifications 1528988622443 1528988622667 OK
REQUEST BurstJourneySimulation 99 notifications 1528988622475 1528988622667 OK
REQUEST BurstJourneySimulation 68 notifications 1528988622458 1528988622685 OK
REQUEST BurstJourneySimulation 70 notifications 1528988622459 1528988622689 OK
REQUEST BurstJourneySimulation 105 notifications 1528988622477 1528988622689 OK
REQUEST BurstJourneySimulation 113 notifications 1528988622479 1528988622696 OK
REQUEST BurstJourneySimulation 74 notifications 1528988622460 1528988622696 OK
REQUEST BurstJourneySimulation 81 notifications 1528988622466 1528988622697 OK
REQUEST BurstJourneySimulation 93 notifications 1528988622473 1528988622709 OK
REQUEST BurstJourneySimulation 65 notifications 1528988622461 1528988622709 OK
REQUEST BurstJourneySimulation 85 notifications 1528988622470 1528988622715 OK
REQUEST BurstJourneySimulation 173 notifications 1528988622509 1528988622715 OK
REQUEST BurstJourneySimulation 139 notifications 1528988622496 1528988622715 OK
REQUEST BurstJourneySimulation 83 notifications 1528988622469 1528988622715 OK
REQUEST BurstJourneySimulation 135 notifications 1528988622494 1528988622780 OK
REQUEST BurstJourneySimulation 149 notifications 1528988622499 1528988622782 OK
REQUEST BurstJourneySimulation 171 notifications 1528988622508 1528988622793 OK
REQUEST BurstJourneySimulation 155 notifications 1528988622501 1528988622794 OK
REQUEST BurstJourneySimulation 189 notifications 1528988622603 1528988622806 OK
REQUEST BurstJourneySimulation 151 notifications 1528988622500 1528988622806 OK
REQUEST BurstJourneySimulation 56 notifications 1528988622446 1528988622806 OK
REQUEST BurstJourneySimulation 101 notifications 1528988622475 1528988622826 OK
REQUEST BurstJourneySimulation 175 notifications 1528988622510 1528988622826 OK
REQUEST BurstJourneySimulation 159 notifications 1528988622503 1528988622827 OK
REQUEST BurstJourneySimulation 107 notifications 1528988622477 1528988622828 OK
REQUEST BurstJourneySimulation 133 notifications 1528988622493 1528988622828 OK
REQUEST BurstJourneySimulation 184 notifications 1528988622581 1528988622842 OK
REQUEST BurstJourneySimulation 51 notifications 1528988622447 1528988622860 OK
REQUEST BurstJourneySimulation 127 notifications 1528988622484 1528988622861 OK
REQUEST BurstJourneySimulation 77 notifications 1528988622462 1528988622957 OK
REQUEST BurstJourneySimulation 63 notifications 1528988622463 1528988623099 OK
REQUEST BurstJourneySimulation 115 notifications 1528988622480 1528988623129 OK
REQUEST BurstJourneySimulation 179 notifications 1528988622511 1528988623130 OK
REQUEST BurstJourneySimulation 78 notifications 1528988622463 1528988623156 OK
REQUEST BurstJourneySimulation 193 notifications 1528988622605 1528988623185 OK
REQUEST BurstJourneySimulation 197 notifications 1528988622609 1528988623361 OK
REQUEST BurstJourneySimulation 75 notifications 1528988622461 1528988623626 OK
REQUEST BurstJourneySimulation 55 notifications 1528988622445 1528988623626 OK
REQUEST BurstJourneySimulation 148 notifications 1528988622499 1528988623635 OK
REQUEST BurstJourneySimulation 183 notifications 1528988622596 1528988623650 OK
REQUEST BurstJourneySimulation 176 notifications 1528988622511 1528988623693 OK
REQUEST BurstJourneySimulation 104 notifications 1528988622476 1528988623694 OK
REQUEST BurstJourneySimulation 188 notifications 1528988622603 1528988623694 OK
REQUEST BurstJourneySimulation 129 notifications 1528988622492 1528988623696 OK
REQUEST BurstJourneySimulation 102 notifications 1528988622476 1528988623698 OK
REQUEST BurstJourneySimulation 154 notifications 1528988622501 1528988623700 OK
REQUEST BurstJourneySimulation 196 notifications 1528988622608 1528988623702 OK
REQUEST BurstJourneySimulation 73 notifications 1528988622460 1528988623702 OK
REQUEST BurstJourneySimulation 71 notifications 1528988622459 1528988623704 OK
REQUEST BurstJourneySimulation 177 notifications 1528988622510 1528988623709 OK
REQUEST BurstJourneySimulation 153 notifications 1528988622501 1528988623709 OK
REQUEST BurstJourneySimulation 64 notifications 1528988622462 1528988623709 OK
REQUEST BurstJourneySimulation 199 notifications 1528988622610 1528988623716 OK
REQUEST BurstJourneySimulation 166 notifications 1528988622505 1528988623758 OK
REQUEST BurstJourneySimulation 94 notifications 1528988622473 1528988623866 OK
REQUEST BurstJourneySimulation 98 notifications 1528988622474 1528988623872 OK
REQUEST BurstJourneySimulation 61 notifications 1528988622461 1528988623872 OK
REQUEST BurstJourneySimulation 95 notifications 1528988622474 1528988623881 OK
REQUEST BurstJourneySimulation 124 notifications 1528988622483 1528988623914 OK
REQUEST BurstJourneySimulation 160 notifications 1528988622503 1528988623914 OK
REQUEST BurstJourneySimulation 158 notifications 1528988622502 1528988623943 OK
REQUEST BurstJourneySimulation 138 notifications 1528988622495 1528988624133 OK
REQUEST BurstJourneySimulation 100 notifications 1528988622475 1528988624133 OK
REQUEST BurstJourneySimulation 145 notifications 1528988622498 1528988624135 OK
REQUEST BurstJourneySimulation 182 notifications 1528988622512 1528988624136 OK
REQUEST BurstJourneySimulation 200 notifications 1528988622610 1528988624141 OK
REQUEST BurstJourneySimulation 147 notifications 1528988622499 1528988624147 OK
REQUEST BurstJourneySimulation 150 notifications 1528988622500 1528988624147 OK
REQUEST BurstJourneySimulation 66 notifications 1528988622460 1528988624156 OK
REQUEST BurstJourneySimulation 142 notifications 1528988622497 1528988624156 OK
REQUEST BurstJourneySimulation 84 notifications 1528988622469 1528988624156 OK
REQUEST BurstJourneySimulation 118 notifications 1528988622481 1528988624157 OK
REQUEST BurstJourneySimulation 59 notifications 1528988622448 1528988624158 OK
REQUEST BurstJourneySimulation 89 notifications 1528988622471 1528988624158 OK
REQUEST BurstJourneySimulation 194 notifications 1528988622605 1528988624161 OK
REQUEST BurstJourneySimulation 79 notifications 1528988622463 1528988624163 OK
REQUEST BurstJourneySimulation 151 get demographics 1528988623303 1528988624168 OK
REQUEST BurstJourneySimulation 178 notifications 1528988622510 1528988624168 OK
REQUEST BurstJourneySimulation 193 get demographics 1528988623563 1528988624168 OK
REQUEST BurstJourneySimulation 139 get demographics 1528988624024 1528988624169 OK
REQUEST BurstJourneySimulation 168 notifications 1528988622506 1528988624243 OK
REQUEST BurstJourneySimulation 57 notifications 1528988622441 1528988624243 OK
REQUEST BurstJourneySimulation 82 notifications 1528988622468 1528988624243 OK
REQUEST BurstJourneySimulation 137 notifications 1528988622495 1528988624256 OK
REQUEST BurstJourneySimulation 143 notifications 1528988622497 1528988624256 OK
REQUEST BurstJourneySimulation 169 notifications 1528988622506 1528988624258 OK
REQUEST BurstJourneySimulation 99 get demographics 1528988622993 1528988624259 OK
REQUEST BurstJourneySimulation 107 get demographics 1528988623363 1528988624265 OK
REQUEST BurstJourneySimulation 155 get demographics 1528988623733 1528988624269 OK
REQUEST BurstJourneySimulation 173 get demographics 1528988624043 1528988624272 OK
REQUEST BurstJourneySimulation 139 get sales groups 1528988624170 1528988624279 OK
REQUEST BurstJourneySimulation 107 get sales groups 1528988624265 1528988624280 OK
REQUEST BurstJourneySimulation 155 get sales groups 1528988624270 1528988624286 OK
REQUEST BurstJourneySimulation 67 notifications 1528988622450 1528988624369 OK
REQUEST BurstJourneySimulation 193 get sales groups 1528988624168 1528988624384 OK
REQUEST BurstJourneySimulation 186 notifications 1528988622600 1528988624449 OK
REQUEST BurstJourneySimulation 128 notifications 1528988622491 1528988624449 OK