-
Notifications
You must be signed in to change notification settings - Fork 376
/
uwsgi.log
2317 lines (2315 loc) · 450 KB
/
uwsgi.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
*** Starting uWSGI 2.0.15 (64bit) on [Sat Mar 3 20:26:14 2018] ***
compiled with version: 5.4.0 20160609 on 05 December 2017 21:27:26
os: Linux-4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018
nodename: lenovo-y400
machine: x86_64
clock source: unix
detected number of CPU cores: 4
current working directory: /home/tmm/PycharmProjects/djangos/cmdb
writing pidfile to ./project-master.pid
detected binary path: /usr/local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /home/tmm/PycharmProjects/djangos/cmdb/
your processes number limit is 31196
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to TCP address 127.0.0.1:8091 fd 3
Python version: 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609]
Python main interpreter initialized at 0xc56cc0
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 702000 bytes (685 KB) for 8 cores
*** Operational MODE: preforking+threaded ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0xc56cc0 pid: 19869 (default app)
*** uWSGI is running in multiple interpreter mode ***
spawned uWSGI master process (pid: 19869)
spawned uWSGI worker 1 (pid: 19872, cores: 2)
spawned uWSGI worker 2 (pid: 19874, cores: 2)
spawned uWSGI worker 3 (pid: 19876, cores: 2)
spawned uWSGI worker 4 (pid: 19878, cores: 2)
[pid: 19872|app: 0|req: 1/1] 127.0.0.1 () {44 vars in 1095 bytes} [Sat Mar 3 20:26:57 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 287 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 2/2] 127.0.0.1 () {50 vars in 1246 bytes} [Sat Mar 3 20:27:00 2018] POST /api/v1/search/data => generated 3254 bytes in 112 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 19878|app: 0|req: 1/3] 127.0.0.1 () {44 vars in 1095 bytes} [Sat Mar 3 20:27:00 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 235 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 3/4] 127.0.0.1 () {44 vars in 1095 bytes} [Sat Mar 3 20:27:01 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 47 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 19878|app: 0|req: 2/5] 127.0.0.1 () {50 vars in 1262 bytes} [Sat Mar 3 20:27:01 2018] POST /api/v1/search/deleted-data => generated 2762 bytes in 79 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 4/6] 127.0.0.1 () {44 vars in 1095 bytes} [Sat Mar 3 20:27:02 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 45 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
/home/tmm/.local/lib/python3.5/site-packages/rest_framework/pagination.py:208: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'django.contrib.auth.models.User'> QuerySet.
paginator = self.django_paginator_class(queryset, page_size)
[pid: 19876|app: 0|req: 1/7] 127.0.0.1 () {44 vars in 1132 bytes} [Sat Mar 3 20:27:03 2018] GET /api/v1/mgmt/user?page_size=10&page=1 => generated 2533 bytes in 222 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 5/8] 127.0.0.1 () {44 vars in 983 bytes} [Sat Mar 3 20:27:04 2018] GET /api/v1/docs => generated 370414 bytes in 375 msecs (HTTP/1.1 200) 5 headers in 161 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 6/9] 127.0.0.1 () {42 vars in 895 bytes} [Sat Mar 3 20:27:04 2018] GET /api/v1/docsschema.js => generated 38672 bytes in 64 msecs (HTTP/1.1 200) 5 headers in 165 bytes (1 switches on core 1)
[pid: 19878|app: 0|req: 3/10] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 21:12:59 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 642 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 19874|app: 0|req: 1/11] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 21:12:59 2018] POST /api/v1/search/data => generated 3254 bytes in 1127 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 7/12] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 21:13:12 2018] GET /api/v1/mgmt/table => generated 1821 bytes in 963 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 8/13] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 21:14:14 2018] POST /api/v1/mgmt/table => generated 42 bytes in 42 msecs (HTTP/1.1 400) 5 headers in 156 bytes (1 switches on core 1)
GET http://192.168.5.219:9200/_nodes/_all/http [status:N/A request:0.102s]
Traceback (most recent call last):
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 386, in _make_request
six.raise_from(e, None)
File "<string>", line 2, in raise_from
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 382, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib/python3.5/http/client.py", line 1197, in getresponse
response.begin()
File "/usr/lib/python3.5/http/client.py", line 297, in begin
version, status, reason = self._read_status()
File "/usr/lib/python3.5/http/client.py", line 258, in _read_status
line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
File "/usr/lib/python3.5/socket.py", line 575, in readinto
return self._sock.recv_into(b)
socket.timeout: timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/elasticsearch/connection/http_urllib3.py", line 149, in perform_request
response = self.pool.urlopen(method, url, body, retries=False, headers=request_headers, **kw)
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 649, in urlopen
_stacktrace=sys.exc_info()[2])
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/util/retry.py", line 333, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/packages/six.py", line 686, in reraise
raise value
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 600, in urlopen
chunked=chunked)
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 388, in _make_request
self._raise_timeout(err=e, url=url, timeout_value=read_timeout)
File "/home/tmm/.local/lib/python3.5/site-packages/urllib3/connectionpool.py", line 308, in _raise_timeout
raise ReadTimeoutError(self, url, "Read timed out. (read timeout=%s)" % timeout_value)
urllib3.exceptions.ReadTimeoutError: HTTPConnectionPool(host='192.168.5.219', port=9200): Read timed out. (read timeout=0.1)
[pid: 19872|app: 0|req: 9/14] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 21:14:39 2018] POST /api/v1/mgmt/table => generated 600 bytes in 776 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 10/15] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 21:14:50 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 49 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 19874|app: 0|req: 2/16] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 21:14:50 2018] POST /api/v1/search/data => generated 4221 bytes in 86 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 11/17] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 21:14:54 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 29 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 12/18] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 21:14:59 2018] POST /api/v1/data/project => generated 114 bytes in 29 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 13/19] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:15:34 2018] POST /api/v1/data/project => generated 128 bytes in 37 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 0)
[pid: 19878|app: 0|req: 4/20] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:15:49 2018] POST /api/v1/data/project => generated 40 bytes in 74 msecs (HTTP/1.1 404) 3 headers in 115 bytes (1 switches on core 0)
[pid: 19876|app: 0|req: 2/21] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:16:22 2018] POST /api/v1/data/project => generated 40 bytes in 189 msecs (HTTP/1.1 404) 3 headers in 115 bytes (1 switches on core 1)
[pid: 19876|app: 0|req: 3/22] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:19:09 2018] POST /api/v1/data/project => generated 40 bytes in 17 msecs (HTTP/1.1 404) 3 headers in 115 bytes (1 switches on core 0)
[pid: 19872|app: 0|req: 14/23] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:19:30 2018] POST /api/v1/data/project => generated 186 bytes in 249 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 15/24] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:19:58 2018] POST /api/v1/data/project => generated 186 bytes in 47 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 19874|app: 0|req: 3/25] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:19:59 2018] POST /api/v1/data/project => generated 40 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 115 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 16/26] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 21:20:45 2018] POST /api/v1/data/project => generated 186 bytes in 55 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 19872|app: 0|req: 17/27] 127.0.0.1 () {44 vars in 631 bytes} [Sun Mar 4 21:22:17 2018] POST /api/v1/data/project => generated 58 bytes in 25 msecs (HTTP/1.1 401) 6 headers in 200 bytes (1 switches on core 0)
[pid: 19876|app: 0|req: 4/28] 127.0.0.1 () {46 vars in 830 bytes} [Sun Mar 4 21:22:55 2018] POST /api/v1/data/project => generated 40 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 115 bytes (1 switches on core 0)
...gracefully killing workers...
Gracefully killing worker 1 (pid: 19872)...
Gracefully killing worker 2 (pid: 19874)...
Gracefully killing worker 3 (pid: 19876)...
Gracefully killing worker 4 (pid: 19878)...
worker 1 buried after 1 seconds
worker 2 buried after 1 seconds
worker 3 buried after 1 seconds
worker 4 buried after 1 seconds
binary reloading uWSGI...
chdir() to /home/tmm/PycharmProjects/djangos/cmdb
closing all non-uwsgi socket fds > 2 (max_fd = 1024)...
found fd 3 mapped to socket 0 (127.0.0.1:8091)
running /usr/local/bin/uwsgi
[uWSGI] getting INI configuration from uwsgi.ini
*** Starting uWSGI 2.0.15 (64bit) on [Sun Mar 4 22:03:35 2018] ***
compiled with version: 5.4.0 20160609 on 05 December 2017 21:27:26
os: Linux-4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018
nodename: lenovo-y400
machine: x86_64
clock source: unix
detected number of CPU cores: 4
current working directory: /home/tmm/PycharmProjects/djangos/cmdb
detected binary path: /usr/local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /home/tmm/PycharmProjects/djangos/cmdb/
your processes number limit is 31196
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 inherited INET address 127.0.0.1:8091 fd 3
Python version: 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609]
Python main interpreter initialized at 0x251d690
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 702000 bytes (685 KB) for 8 cores
*** Operational MODE: preforking+threaded ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x251d690 pid: 19869 (default app)
*** uWSGI is running in multiple interpreter mode ***
gracefully (RE)spawned uWSGI master process (pid: 19869)
spawned uWSGI worker 1 (pid: 7352, cores: 2)
spawned uWSGI worker 2 (pid: 7354, cores: 2)
spawned uWSGI worker 3 (pid: 7356, cores: 2)
spawned uWSGI worker 4 (pid: 7358, cores: 2)
[pid: 7352|app: 0|req: 1/1] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:03:39 2018] POST /api/v1/data/project => generated 186 bytes in 201 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 2/2] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:03:50 2018] POST /api/v1/data/project => generated 125 bytes in 49 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 7352|app: 0|req: 3/3] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:03:53 2018] POST /api/v1/data/project => generated 54 bytes in 28 msecs (HTTP/1.1 500) 3 headers in 127 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 4/4] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:03:58 2018] POST /api/v1/data/project => generated 54 bytes in 30 msecs (HTTP/1.1 500) 3 headers in 127 bytes (1 switches on core 1)
[pid: 7352|app: 0|req: 5/5] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:05:38 2018] POST /api/v1/data/project => generated 54 bytes in 27 msecs (HTTP/1.1 500) 3 headers in 127 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 6/6] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:17:59 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 244 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 1/7] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:17:59 2018] POST /api/v1/search/data => generated 3254 bytes in 653 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 7/8] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:19:00 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 29 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 8/9] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:19:04 2018] POST /api/v1/data/project => generated 114 bytes in 27 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 2/10] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:19:53 2018] POST /api/v1/data/project => generated 154 bytes in 52 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 3/11] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:24:00 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 68 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 7358|app: 0|req: 1/12] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:24:00 2018] POST /api/v1/search/data => generated 3254 bytes in 243 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 10/13] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:24:07 2018] POST /api/v1/search/data => generated 3254 bytes in 82 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 7352|app: 0|req: 10/14] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:24:07 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 98 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 11/15] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:24:14 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 28 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 1)
[pid: 7352|app: 0|req: 12/16] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:24:24 2018] POST /api/v1/data/project => generated 54 bytes in 29 msecs (HTTP/1.1 500) 3 headers in 127 bytes (1 switches on core 0)
[pid: 7354|app: 0|req: 4/17] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:24:39 2018] POST /api/v1/data/project => generated 154 bytes in 23 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 5/18] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:25:32 2018] POST /api/v1/search/data => generated 39 bytes in 33 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 0)
[pid: 7352|app: 0|req: 13/19] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:25:32 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 63 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 6/20] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:25:35 2018] POST /api/v1/search/data => generated 39 bytes in 53 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 1)
[pid: 7352|app: 0|req: 14/21] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:25:35 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 81 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 7354|app: 0|req: 7/22] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:27:12 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 28 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 7354|app: 0|req: 8/23] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:27:20 2018] POST /api/v1/data/project => generated 114 bytes in 31 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 7354|app: 0|req: 9/24] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:30:13 2018] POST /api/v1/search/data => generated 39 bytes in 50 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 0)
[pid: 7358|app: 0|req: 2/25] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:30:13 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 110 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
...gracefully killing workers...
Gracefully killing worker 1 (pid: 7352)...
Gracefully killing worker 2 (pid: 7354)...
Gracefully killing worker 3 (pid: 7356)...
Gracefully killing worker 4 (pid: 7358)...
worker 1 buried after 1 seconds
worker 2 buried after 1 seconds
worker 3 buried after 1 seconds
worker 4 buried after 1 seconds
binary reloading uWSGI...
chdir() to /home/tmm/PycharmProjects/djangos/cmdb
closing all non-uwsgi socket fds > 2 (max_fd = 1024)...
found fd 3 mapped to socket 0 (127.0.0.1:8091)
running /usr/local/bin/uwsgi
[uWSGI] getting INI configuration from uwsgi.ini
*** Starting uWSGI 2.0.15 (64bit) on [Sun Mar 4 22:30:42 2018] ***
compiled with version: 5.4.0 20160609 on 05 December 2017 21:27:26
os: Linux-4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018
nodename: lenovo-y400
machine: x86_64
clock source: unix
detected number of CPU cores: 4
current working directory: /home/tmm/PycharmProjects/djangos/cmdb
detected binary path: /usr/local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /home/tmm/PycharmProjects/djangos/cmdb/
your processes number limit is 31196
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 inherited INET address 127.0.0.1:8091 fd 3
Python version: 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609]
Python main interpreter initialized at 0x1dff690
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 702000 bytes (685 KB) for 8 cores
*** Operational MODE: preforking+threaded ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0x1dff690 pid: 19869 (default app)
*** uWSGI is running in multiple interpreter mode ***
gracefully (RE)spawned uWSGI master process (pid: 19869)
spawned uWSGI worker 1 (pid: 8763, cores: 2)
spawned uWSGI worker 2 (pid: 8765, cores: 2)
spawned uWSGI worker 3 (pid: 8766, cores: 2)
spawned uWSGI worker 4 (pid: 8768, cores: 2)
[pid: 8763|app: 0|req: 1/1] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:30:44 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 290 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 8765|app: 0|req: 1/2] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:30:44 2018] POST /api/v1/search/data => generated 3254 bytes in 439 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 8763|app: 0|req: 2/3] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:31:09 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 81 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 8765|app: 0|req: 2/4] 127.0.0.1 () {50 vars in 1262 bytes} [Sun Mar 4 22:31:09 2018] POST /api/v1/search/deleted-data => generated 2762 bytes in 86 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 8763|app: 0|req: 3/5] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:31:10 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 45 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 8763|app: 0|req: 5/6] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:31:12 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 69 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 8763|app: 0|req: 5/7] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:31:12 2018] POST /api/v1/search/data => generated 3254 bytes in 77 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 8765|app: 0|req: 3/8] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:31:21 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 32 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 8763|app: 0|req: 6/9] 127.0.0.1 () {50 vars in 1248 bytes} [Sun Mar 4 22:31:40 2018] POST /api/v1/data/project => generated 186 bytes in 45 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 8763|app: 0|req: 7/10] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:31:49 2018] POST /api/v1/search/data => generated 3813 bytes in 39 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 8763|app: 0|req: 8/11] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:31:58 2018] POST /api/v1/search/data => generated 1707 bytes in 43 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 8763|app: 0|req: 9/12] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:32:09 2018] POST /api/v1/search/data => generated 1985 bytes in 35 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 8768|app: 0|req: 1/13] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:32:12 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 182 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 8763|app: 0|req: 10/14] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:32:16 2018] PUT /api/v1/data/project/d71f15181fb411e8b40770188becb8a9 => generated 60 bytes in 54 msecs (HTTP/1.1 500) 3 headers in 127 bytes (1 switches on core 1)
[pid: 8765|app: 0|req: 4/15] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:36:01 2018] PUT /api/v1/data/project/d71f15181fb411e8b40770188becb8a9 => generated 125 bytes in 32 msecs (HTTP/1.1 400) 5 headers in 171 bytes (1 switches on core 1)
...gracefully killing workers...
Gracefully killing worker 1 (pid: 8763)...
Gracefully killing worker 2 (pid: 8765)...
Gracefully killing worker 3 (pid: 8766)...
Gracefully killing worker 4 (pid: 8768)...
worker 1 buried after 1 seconds
worker 2 buried after 1 seconds
worker 3 buried after 1 seconds
worker 4 buried after 1 seconds
binary reloading uWSGI...
chdir() to /home/tmm/PycharmProjects/djangos/cmdb
closing all non-uwsgi socket fds > 2 (max_fd = 1024)...
found fd 3 mapped to socket 0 (127.0.0.1:8091)
running /usr/local/bin/uwsgi
[uWSGI] getting INI configuration from uwsgi.ini
*** Starting uWSGI 2.0.15 (64bit) on [Sun Mar 4 22:37:37 2018] ***
compiled with version: 5.4.0 20160609 on 05 December 2017 21:27:26
os: Linux-4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018
nodename: lenovo-y400
machine: x86_64
clock source: unix
detected number of CPU cores: 4
current working directory: /home/tmm/PycharmProjects/djangos/cmdb
detected binary path: /usr/local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /home/tmm/PycharmProjects/djangos/cmdb/
your processes number limit is 31196
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 inherited INET address 127.0.0.1:8091 fd 3
Python version: 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609]
Python main interpreter initialized at 0x17e7690
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 702000 bytes (685 KB) for 8 cores
*** Operational MODE: preforking+threaded ***
WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x17e7690 pid: 19869 (default app)
*** uWSGI is running in multiple interpreter mode ***
gracefully (RE)spawned uWSGI master process (pid: 19869)
spawned uWSGI worker 1 (pid: 9023, cores: 2)
spawned uWSGI worker 2 (pid: 9025, cores: 2)
spawned uWSGI worker 3 (pid: 9027, cores: 2)
spawned uWSGI worker 4 (pid: 9029, cores: 2)
[pid: 9025|app: 0|req: 1/1] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:37:43 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 304 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 1/2] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:37:43 2018] POST /api/v1/search/data => generated 3254 bytes in 354 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 2/3] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:37:48 2018] POST /api/v1/search/data => generated 1985 bytes in 60 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 3/4] 127.0.0.1 () {46 vars in 1143 bytes} [Sun Mar 4 22:37:51 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 32 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 4/5] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:37:59 2018] PUT /api/v1/data/project/bc864aec1fae11e8b40770188becb8a9 => generated 29 bytes in 32 msecs (HTTP/1.1 400) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9027|app: 0|req: 1/6] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:38:04 2018] PUT /api/v1/data/project/bc864aec1fae11e8b40770188becb8a9 => generated 186 bytes in 261 msecs (HTTP/1.1 200) 5 headers in 162 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 5/7] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:38:12 2018] PUT /api/v1/data/project/bc864aec1fae11e8b40770188becb8a9 => generated 186 bytes in 112 msecs (HTTP/1.1 200) 5 headers in 162 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 6/8] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:38:18 2018] PUT /api/v1/data/project/bc864aec1fae11e8b40770188becb8a9 => generated 186 bytes in 64 msecs (HTTP/1.1 200) 5 headers in 162 bytes (1 switches on core 1)
[pid: 9025|app: 0|req: 2/9] 127.0.0.1 () {50 vars in 1315 bytes} [Sun Mar 4 22:38:22 2018] PUT /api/v1/data/project/bc864aec1fae11e8b40770188becb8a9 => generated 42 bytes in 56 msecs (HTTP/1.1 400) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 7/10] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:38:35 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 50 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 8/11] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:38:37 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 55 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9025|app: 0|req: 3/12] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:38:37 2018] POST /api/v1/search/data => generated 3254 bytes in 58 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 9/13] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:38:41 2018] GET /api/v1/mgmt/table => generated 2422 bytes in 47 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 10/14] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:38:59 2018] POST /api/v1/mgmt/table => generated 227 bytes in 568 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 11/15] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:39:02 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 66 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9025|app: 0|req: 4/16] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:39:02 2018] POST /api/v1/search/data => generated 3254 bytes in 74 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 12/17] 127.0.0.1 () {46 vars in 1137 bytes} [Sun Mar 4 22:39:09 2018] OPTIONS /api/v1/data/test => generated 604 bytes in 26 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 13/18] 127.0.0.1 () {50 vars in 1240 bytes} [Sun Mar 4 22:39:11 2018] POST /api/v1/data/test => generated 37 bytes in 31 msecs (HTTP/1.1 400) 5 headers in 156 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 15/19] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:40:12 2018] POST /api/v1/search/data => generated 4221 bytes in 72 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 15/20] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:40:12 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 80 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 16/21] 127.0.0.1 () {46 vars in 1135 bytes} [Sun Mar 4 22:40:15 2018] OPTIONS /api/v1/data/ddd => generated 525 bytes in 27 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 18/22] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:40:19 2018] POST /api/v1/search/data => generated 4221 bytes in 82 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 18/23] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:40:19 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 90 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 19/24] 127.0.0.1 () {46 vars in 1136 bytes} [Sun Mar 4 22:40:23 2018] OPTIONS /api/v1/data/ddd => generated 525 bytes in 30 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 20/25] 127.0.0.1 () {46 vars in 1138 bytes} [Sun Mar 4 22:40:34 2018] OPTIONS /api/v1/data/test => generated 604 bytes in 26 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 1)
[pid: 9023|app: 0|req: 21/26] 127.0.0.1 () {50 vars in 1243 bytes} [Sun Mar 4 22:40:51 2018] POST /api/v1/data/test => generated 123 bytes in 28 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 22/27] 127.0.0.1 () {50 vars in 1243 bytes} [Sun Mar 4 22:40:56 2018] POST /api/v1/data/test => generated 123 bytes in 32 msecs (HTTP/1.1 400) 5 headers in 157 bytes (1 switches on core 1)
[pid: 9025|app: 0|req: 5/28] 127.0.0.1 () {50 vars in 1243 bytes} [Sun Mar 4 22:40:59 2018] POST /api/v1/data/test => generated 90 bytes in 22 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9023|app: 0|req: 23/29] 127.0.0.1 () {50 vars in 1243 bytes} [Sun Mar 4 22:41:02 2018] POST /api/v1/data/test => generated 183 bytes in 54 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
...gracefully killing workers...
Gracefully killing worker 1 (pid: 9023)...
Gracefully killing worker 2 (pid: 9025)...
Gracefully killing worker 3 (pid: 9027)...
Gracefully killing worker 4 (pid: 9029)...
worker 1 buried after 1 seconds
worker 2 buried after 1 seconds
worker 3 buried after 1 seconds
worker 4 buried after 1 seconds
binary reloading uWSGI...
chdir() to /home/tmm/PycharmProjects/djangos/cmdb
closing all non-uwsgi socket fds > 2 (max_fd = 1024)...
found fd 3 mapped to socket 0 (127.0.0.1:8091)
running /usr/local/bin/uwsgi
[uWSGI] getting INI configuration from uwsgi.ini
*** Starting uWSGI 2.0.15 (64bit) on [Sun Mar 4 22:41:33 2018] ***
compiled with version: 5.4.0 20160609 on 05 December 2017 21:27:26
os: Linux-4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018
nodename: lenovo-y400
machine: x86_64
clock source: unix
detected number of CPU cores: 4
current working directory: /home/tmm/PycharmProjects/djangos/cmdb
detected binary path: /usr/local/bin/uwsgi
!!! no internal routing support, rebuild with pcre support !!!
chdir() to /home/tmm/PycharmProjects/djangos/cmdb/
your processes number limit is 31196
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 inherited INET address 127.0.0.1:8091 fd 3
Python version: 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609]
Python main interpreter initialized at 0xd9e690
python threads support enabled
your server socket listen backlog is limited to 100 connections
your mercy for graceful operations on workers is 60 seconds
mapped 702000 bytes (685 KB) for 8 cores
*** Operational MODE: preforking+threaded ***
WSGI app 0 (mountpoint='') ready in 0 seconds on interpreter 0xd9e690 pid: 19869 (default app)
*** uWSGI is running in multiple interpreter mode ***
gracefully (RE)spawned uWSGI master process (pid: 19869)
spawned uWSGI worker 1 (pid: 9177, cores: 2)
spawned uWSGI worker 2 (pid: 9179, cores: 2)
spawned uWSGI worker 3 (pid: 9181, cores: 2)
spawned uWSGI worker 4 (pid: 9183, cores: 2)
[pid: 9177|app: 0|req: 1/1] 127.0.0.1 () {46 vars in 1138 bytes} [Sun Mar 4 22:41:35 2018] OPTIONS /api/v1/data/test => generated 605 bytes in 182 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 2/2] 127.0.0.1 () {50 vars in 1241 bytes} [Sun Mar 4 22:41:44 2018] POST /api/v1/data/test => generated 183 bytes in 63 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 1/3] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:41:53 2018] POST /api/v1/search/data => generated 4221 bytes in 184 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 3/4] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:41:58 2018] POST /api/v1/search/data => generated 457 bytes in 33 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 2/5] 127.0.0.1 () {46 vars in 1138 bytes} [Sun Mar 4 22:42:10 2018] OPTIONS /api/v1/data/test => generated 605 bytes in 52 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 4/6] 127.0.0.1 () {50 vars in 1308 bytes} [Sun Mar 4 22:42:14 2018] PUT /api/v1/data/test/28df34321fba11e8b40770188becb8a9 => generated 29 bytes in 33 msecs (HTTP/1.1 400) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 5/7] 127.0.0.1 () {50 vars in 1310 bytes} [Sun Mar 4 22:42:21 2018] PUT /api/v1/data/test/28df34321fba11e8b40770188becb8a9 => generated 123 bytes in 30 msecs (HTTP/1.1 400) 5 headers in 171 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 6/8] 127.0.0.1 () {50 vars in 1308 bytes} [Sun Mar 4 22:42:32 2018] PUT /api/v1/data/test/28df34321fba11e8b40770188becb8a9 => generated 29 bytes in 31 msecs (HTTP/1.1 400) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 3/9] 127.0.0.1 () {50 vars in 1310 bytes} [Sun Mar 4 22:42:43 2018] PUT /api/v1/data/test/28df34321fba11e8b40770188becb8a9 => generated 183 bytes in 95 msecs (HTTP/1.1 200) 5 headers in 162 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 7/10] 127.0.0.1 () {46 vars in 1138 bytes} [Sun Mar 4 22:42:56 2018] OPTIONS /api/v1/data/test => generated 605 bytes in 26 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 8/11] 127.0.0.1 () {50 vars in 1310 bytes} [Sun Mar 4 22:43:14 2018] PUT /api/v1/data/test/28df34321fba11e8b40770188becb8a9 => generated 183 bytes in 72 msecs (HTTP/1.1 200) 5 headers in 162 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 9/12] 127.0.0.1 () {44 vars in 1174 bytes} [Sun Mar 4 22:43:17 2018] GET /api/v1/record-data/test/28df34321fba11e8b40770188becb8a9 => generated 563 bytes in 74 msecs (HTTP/1.1 200) 5 headers in 142 bytes (1 switches on core 0)
/home/tmm/.local/lib/python3.5/site-packages/rest_framework/pagination.py:208: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'django.contrib.auth.models.User'> QuerySet.
paginator = self.django_paginator_class(queryset, page_size)
[pid: 9183|app: 0|req: 1/13] 127.0.0.1 () {44 vars in 1133 bytes} [Sun Mar 4 22:43:34 2018] GET /api/v1/mgmt/user?page_size=10&page=1 => generated 2533 bytes in 224 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 10/14] 127.0.0.1 () {46 vars in 1141 bytes} [Sun Mar 4 22:43:38 2018] DELETE /api/v1/mgmt/user/2 => generated 0 bytes in 55 msecs (HTTP/1.1 204) 4 headers in 136 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 11/15] 127.0.0.1 () {50 vars in 1243 bytes} [Sun Mar 4 22:43:52 2018] POST /api/v1/mgmt/user => generated 244 bytes in 2523 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 12/16] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:07 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 59 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 1/17] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:44:07 2018] POST /api/v1/search/data => generated 4221 bytes in 193 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 4/18] 127.0.0.1 () {50 vars in 1263 bytes} [Sun Mar 4 22:44:08 2018] POST /api/v1/search/deleted-data => generated 2762 bytes in 58 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 13/19] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:08 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 70 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 14/20] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:44:09 2018] POST /api/v1/search/data => generated 4221 bytes in 55 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 5/21] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:09 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 75 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 6/22] 127.0.0.1 () {46 vars in 1201 bytes} [Sun Mar 4 22:44:13 2018] DELETE /api/v1/data/ddd/6dd25d1e1b0811e8b9d770188becb8a9 => generated 192 bytes in 125 msecs (HTTP/1.1 204) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 7/23] 127.0.0.1 () {50 vars in 1263 bytes} [Sun Mar 4 22:44:14 2018] POST /api/v1/search/deleted-data => generated 3023 bytes in 52 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 15/24] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:14 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 59 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 8/25] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:44:16 2018] POST /api/v1/search/data => generated 4504 bytes in 48 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 16/26] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:16 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 56 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 2/27] 127.0.0.1 () {46 vars in 1201 bytes} [Sun Mar 4 22:44:20 2018] DELETE /api/v1/data/ddd/704c540d1b0811e8b9d770188becb8a9 => generated 192 bytes in 115 msecs (HTTP/1.1 204) 5 headers in 170 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 17/28] 127.0.0.1 () {50 vars in 1263 bytes} [Sun Mar 4 22:44:21 2018] POST /api/v1/search/deleted-data => generated 3281 bytes in 41 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 9/29] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:21 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 56 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 3/30] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:44:23 2018] POST /api/v1/search/data => generated 4761 bytes in 52 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 18/31] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:23 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 64 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 19/32] 127.0.0.1 () {46 vars in 1136 bytes} [Sun Mar 4 22:44:25 2018] OPTIONS /api/v1/data/ddd => generated 525 bytes in 22 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 20/33] 127.0.0.1 () {46 vars in 1144 bytes} [Sun Mar 4 22:44:31 2018] OPTIONS /api/v1/data/project => generated 783 bytes in 28 msecs (HTTP/1.1 200) 5 headers in 148 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 21/34] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:44:35 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 49 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 22/35] 127.0.0.1 () {50 vars in 1247 bytes} [Sun Mar 4 22:57:20 2018] POST /api/v1/search/data => generated 4761 bytes in 46 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 10/36] 127.0.0.1 () {44 vars in 1096 bytes} [Sun Mar 4 22:57:20 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 63 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 11/37] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:57:23 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 89 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 2/38] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:57:23 2018] POST /api/v1/search/data => generated 4761 bytes in 121 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 12/39] 127.0.0.1 () {50 vars in 1262 bytes} [Sun Mar 4 22:57:24 2018] POST /api/v1/search/deleted-data => generated 3281 bytes in 40 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 23/40] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:57:24 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 57 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 24/41] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:57:25 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 51 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
/home/tmm/.local/lib/python3.5/site-packages/rest_framework/pagination.py:208: UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class 'django.contrib.auth.models.User'> QuerySet.
paginator = self.django_paginator_class(queryset, page_size)
[pid: 9177|app: 0|req: 25/42] 127.0.0.1 () {44 vars in 1132 bytes} [Sun Mar 4 22:57:26 2018] GET /api/v1/mgmt/user?page_size=10&page=1 => generated 2534 bytes in 87 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 26/43] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:57:27 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 52 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 13/44] 127.0.0.1 () {50 vars in 1262 bytes} [Sun Mar 4 22:57:27 2018] POST /api/v1/search/deleted-data => generated 3281 bytes in 56 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 28/45] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 22:57:27 2018] POST /api/v1/search/data => generated 4761 bytes in 45 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 28/46] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 22:57:27 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 54 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 4/47] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:06:41 2018] POST /api/v1/token => generated 68 bytes in 62 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 29/48] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:07:54 2018] POST /api/v1/token => generated 68 bytes in 68 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 5/49] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:08:24 2018] POST /api/v1/token => generated 68 bytes in 64 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 30/50] 127.0.0.1 () {48 vars in 877 bytes} [Sun Mar 4 23:08:47 2018] POST /api/v1/token => generated 68 bytes in 64 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 31/51] 127.0.0.1 () {48 vars in 877 bytes} [Sun Mar 4 23:08:51 2018] POST /api/v1/token => generated 68 bytes in 64 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 32/52] 127.0.0.1 () {48 vars in 877 bytes} [Sun Mar 4 23:08:54 2018] POST /api/v1/token => generated 68 bytes in 73 msecs (HTTP/1.1 400) 5 headers in 145 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 14/53] 127.0.0.1 () {48 vars in 877 bytes} [Sun Mar 4 23:08:59 2018] POST /api/v1/token => generated 173 bytes in 65 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 6/54] 127.0.0.1 () {50 vars in 1246 bytes} [Sun Mar 4 23:08:59 2018] POST /api/v1/search/data => generated 4761 bytes in 36 msecs (HTTP/1.1 200) 5 headers in 138 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 33/55] 127.0.0.1 () {44 vars in 1095 bytes} [Sun Mar 4 23:08:59 2018] GET /api/v1/mgmt/table => generated 2650 bytes in 64 msecs (HTTP/1.1 200) 5 headers in 149 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 34/56] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:09:06 2018] POST /api/v1/token => generated 173 bytes in 66 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 15/57] 127.0.0.1 () {42 vars in 737 bytes} [Sun Mar 4 23:09:06 2018] POST /api/v1/mgmt/table => generated 58 bytes in 1 msecs (HTTP/1.1 401) 6 headers in 200 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 35/58] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:10:04 2018] POST /api/v1/token => generated 173 bytes in 66 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 36/59] 127.0.0.1 () {42 vars in 741 bytes} [Sun Mar 4 23:10:04 2018] POST /api/v1/mgmt/table => generated 1165 bytes in 639 msecs (HTTP/1.1 201) 5 headers in 154 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 7/60] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:10:51 2018] POST /api/v1/token => generated 173 bytes in 70 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 8/61] 127.0.0.1 () {42 vars in 741 bytes} [Sun Mar 4 23:10:51 2018] POST /api/v1/mgmt/table => generated 51 bytes in 33 msecs (HTTP/1.1 400) 5 headers in 156 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 37/62] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:10:57 2018] POST /api/v1/token => generated 173 bytes in 77 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 9/63] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:11:05 2018] POST /api/v1/token => generated 173 bytes in 66 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 16/64] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:11:59 2018] POST /api/v1/token => generated 173 bytes in 69 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 3/65] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:12:18 2018] POST /api/v1/token => generated 173 bytes in 67 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 4/66] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:12:36 2018] POST /api/v1/token => generated 173 bytes in 60 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 10/67] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:12:56 2018] POST /api/v1/token => generated 173 bytes in 62 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 11/68] 127.0.0.1 () {40 vars in 542 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/token => generated 173 bytes in 58 msecs (HTTP/1.1 200) 5 headers in 137 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 38/69] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 69 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 39/70] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 40/71] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 12/72] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 14 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 17/73] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 19 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 18/74] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 19/75] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 20/76] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 13/77] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 14/78] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 41/79] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 21/80] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 22/81] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 23/82] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 24/83] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 25/84] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 42/85] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 43/86] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 45 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 44/87] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 15/88] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 45/89] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 46/90] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 47/91] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 44 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 48/92] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 43 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 26/93] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 16/94] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 27/95] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 28/96] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 49/97] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 50/98] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 29/99] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 17/100] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 18/101] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 19/102] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 20/103] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 30/104] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 51/105] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 21/106] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 22/107] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 23/108] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 52/109] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:46 2018] POST /api/v1/data/bank-account => generated 191 bytes in 48 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 31/110] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 53/111] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 32/112] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 54/113] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 5/114] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 14 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 55/115] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 33/116] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 57/117] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 58/118] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 49 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 58/119] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 43 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 34/120] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 35/121] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 36/122] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 37/123] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 38/124] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 39/125] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 40/126] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 41/127] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 42/128] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 59/129] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 60/130] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 24/131] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 43/132] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 44/133] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 61/134] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 62/135] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 26 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 25/136] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 45/137] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 6/138] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 63/139] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 45 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 46/140] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 64/141] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 65/142] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 66/143] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 67/144] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 47/145] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 26/146] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 68/147] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 27/148] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 28/149] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 29/150] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 30/151] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 31/152] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 48/153] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 49/154] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 69/155] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 50/156] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 70/157] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 71/158] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 72/159] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:47 2018] POST /api/v1/data/bank-account => generated 191 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 73/160] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 26 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 74/161] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 75/162] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 76/163] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 32/164] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 33/165] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 34/166] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 35/167] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 51/168] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 77/169] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 78/170] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 47 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 52/171] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 53/172] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 54/173] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 55/174] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 56/175] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 79/176] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 57/177] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 36/178] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 80/179] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 58/180] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 37/181] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 59/182] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 60/183] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 61/184] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 62/185] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 63/186] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 38/187] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 39/188] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 40/189] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 41/190] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 81/191] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 64/192] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 82/193] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 42/194] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 65/195] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 66/196] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 67/197] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 68/198] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 69/199] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 83/200] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 7/201] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 70/202] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 71/203] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 72/204] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 73/205] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 43/206] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 84/207] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 74/208] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 75/209] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 85/210] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 86/211] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 42 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 76/212] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 77/213] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 78/214] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 79/215] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 44/216] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 45/217] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 46/218] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 47/219] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 80/220] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 81/221] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 48/222] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 87/223] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 191 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 88/224] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 82/225] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 89/226] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:48 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 83/227] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 84/228] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 49/229] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 90/230] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 50/231] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 51/232] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 91/233] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 52/234] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 53/235] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 54/236] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 55/237] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 56/238] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 57/239] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 58/240] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 85/241] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 59/242] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 60/243] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 61/244] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 62/245] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 86/246] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 63/247] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 92/248] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 191 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 87/249] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 64/250] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 93/251] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 88/252] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 65/253] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 66/254] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 67/255] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 68/256] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 69/257] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 70/258] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 71/259] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 72/260] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 73/261] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 74/262] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 75/263] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 76/264] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 77/265] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 78/266] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 94/267] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 191 bytes in 42 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 95/268] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 96/269] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 97/270] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 89/271] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 90/272] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 98/273] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 99/274] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 79/275] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 100/276] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 191 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 91/277] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 92/278] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 101/279] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 102/280] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 43 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 93/281] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 103/282] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 42 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 104/283] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 94/284] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 95/285] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 96/286] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 80/287] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 81/288] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 82/289] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 97/290] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 98/291] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 99/292] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 100/293] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 101/294] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 105/295] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 106/296] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:49 2018] POST /api/v1/data/bank-account => generated 191 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 102/297] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 83/298] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 107/299] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 84/300] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 108/301] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 103/302] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 104/303] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 109/304] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 110/305] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 105/306] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 111/307] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 112/308] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 113/309] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 114/310] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 106/311] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 115/312] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 107/313] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 108/314] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 109/315] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 116/316] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 85/317] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 110/318] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 111/319] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 86/320] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 117/321] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 118/322] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 87/323] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 88/324] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 112/325] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 113/326] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 89/327] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 90/328] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 119/329] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 114/330] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 120/331] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 121/332] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 8/333] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 122/334] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 44 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 115/335] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 116/336] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 123/337] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 124/338] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 91/339] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 125/340] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 92/341] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 117/342] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 118/343] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 119/344] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 120/345] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 121/346] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 126/347] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:50 2018] POST /api/v1/data/bank-account => generated 192 bytes in 73 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 122/348] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 93/349] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 123/350] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 124/351] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 125/352] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 94/353] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 95/354] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 127/355] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 9/356] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 128/357] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 129/358] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 126/359] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 96/360] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 130/361] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 131/362] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 132/363] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 97/364] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 133/365] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 134/366] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 135/367] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 127/368] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 128/369] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 129/370] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 136/371] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 137/372] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 130/373] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 98/374] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 131/375] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 132/376] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 138/377] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 133/378] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 139/379] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 10/380] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 99/381] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 100/382] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 101/383] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 102/384] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 103/385] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 140/386] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 134/387] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 104/388] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 105/389] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 106/390] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 107/391] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 141/392] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 135/393] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 136/394] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 142/395] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 46 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 143/396] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 51 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 144/397] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 145/398] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:51 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 146/399] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 147/400] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 137/401] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 138/402] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 148/403] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 25 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 139/404] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 140/405] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 141/406] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 142/407] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 143/408] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 149/409] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 27 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 144/410] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 150/411] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 145/412] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 151/413] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 146/414] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 147/415] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 152/416] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 153/417] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 108/418] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 109/419] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 110/420] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 111/421] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 148/422] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 154/423] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 11/424] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 112/425] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 149/426] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 150/427] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 151/428] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 155/429] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 152/430] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 153/431] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 156/432] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 154/433] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 155/434] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 113/435] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 156/436] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 114/437] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 115/438] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 116/439] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 117/440] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 118/441] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 119/442] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 120/443] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 121/444] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 122/445] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 123/446] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 124/447] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 157/448] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 158/449] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 159/450] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 125/451] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 126/452] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 160/453] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 28 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 161/454] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 157/455] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 162/456] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 163/457] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 42 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 127/458] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 128/459] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 158/460] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 164/461] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 129/462] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:52 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 130/463] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 131/464] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 159/465] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 165/466] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 160/467] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 132/468] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 166/469] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 167/470] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 161/471] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 168/472] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 133/473] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 169/474] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 12/475] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 134/476] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 162/478] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 170/478] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 135/479] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 136/480] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 137/481] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 171/482] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 172/483] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 163/484] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 173/485] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 164/486] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 174/487] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 29 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 175/488] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 165/489] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 166/490] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 167/491] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 176/492] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 177/493] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 138/494] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 168/495] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 169/496] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 170/497] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 171/498] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 172/499] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 173/500] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 178/501] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9183|app: 0|req: 13/502] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 174/503] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 175/504] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 139/505] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 140/506] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 179/507] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 176/508] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 141/509] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 142/510] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 177/511] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 180/512] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 26 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 178/513] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 143/514] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 179/515] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 180/516] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 181/517] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 182/518] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 183/519] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 184/520] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 185/521] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 181/522] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 186/523] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 144/524] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 145/525] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 146/526] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 187/527] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 188/528] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 147/529] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 182/530] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 183/531] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:53 2018] POST /api/v1/data/bank-account => generated 192 bytes in 48 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 148/532] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 14/533] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 184/534] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 189/535] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 149/536] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 185/537] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 31 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 186/538] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 190/539] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 187/540] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 37 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 188/541] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 189/542] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 38 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 150/543] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 151/544] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 152/545] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 190/546] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 191/547] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 191/548] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9183|app: 0|req: 15/549] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 192/550] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 153/551] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 192/552] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 193/553] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 43 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 194/554] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 195/555] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 41 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 193/556] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 194/557] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 195/558] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 196/559] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 197/560] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 198/561] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 199/562] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 196/563] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 197/564] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 198/565] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 200/566] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 201/567] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 199/568] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 202/569] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 28 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 203/570] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 35 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 204/571] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:54 2018] POST /api/v1/data/bank-account => generated 192 bytes in 42 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 200/572] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 154/573] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 201/574] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 155/575] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 156/576] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 202/577] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 157/578] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 158/579] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 205/580] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 46 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 203/581] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 204/582] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 206/583] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 159/584] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 205/585] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 206/586] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 160/587] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 161/588] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 162/589] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 163/590] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 164/591] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 165/592] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 166/593] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 167/594] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 207/595] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 208/596] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 209/597] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 30 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 207/598] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 210/599] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 28 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 211/600] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 36 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 168/601] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 169/602] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 212/603] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 32 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 208/604] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 213/605] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 170/606] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 209/607] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 210/608] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 171/609] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 172/610] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 173/611] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 214/612] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 39 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 211/613] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 174/614] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 212/615] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 213/616] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 214/617] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 175/618] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 215/619] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 216/620] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 217/621] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 176/622] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 177/623] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 178/624] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 179/625] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 180/626] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 181/627] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 218/628] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 219/629] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 220/630] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 221/631] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 215/632] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 34 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9177|app: 0|req: 216/633] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 33 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 1)
[pid: 9177|app: 0|req: 217/634] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 192 bytes in 40 msecs (HTTP/1.1 201) 5 headers in 153 bytes (1 switches on core 0)
[pid: 9179|app: 0|req: 222/635] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 182/636] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 183/637] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 2 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 184/638] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 185/639] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 186/640] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 187/641] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 188/642] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9179|app: 0|req: 223/643] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 189/644] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)
[pid: 9181|app: 0|req: 190/645] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 1)
[pid: 9181|app: 0|req: 191/646] 127.0.0.1 () {42 vars in 755 bytes} [Sun Mar 4 23:13:55 2018] POST /api/v1/data/bank-account => generated 98 bytes in 1 msecs (HTTP/1.1 404) 3 headers in 100 bytes (1 switches on core 0)