-
Notifications
You must be signed in to change notification settings - Fork 0
/
newrelic_agent.log
1045 lines (1045 loc) · 223 KB
/
newrelic_agent.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
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.345Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.415Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.436Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.436Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.858Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:00.858Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:04.014Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:04.015Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BWA5-VG2V0mUADNv8RLDaX1hvE1YAAgBAAAnIQEAAJWJAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:04.016Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:04.018Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":38281,"time":"2021-12-17T08:40:04.028Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.332Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.402Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.429Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.429Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.437Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:15.437Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:18.390Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:18.391Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BZBLMj2O2zUwADNv8RLDaX1hvE2UAAgBAAAnIQEAAJiYAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:18.392Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:18.393Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:18.397Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39064,"time":"2021-12-17T08:41:19.399Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:33.952Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:34.016Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:34.037Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:34.037Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:34.042Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:34.043Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:36.317Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:36.318Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BZGAKuGxUpHrADNv8RLDaX1hvE2UAAgBAAAnIQEAAJk0AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:36.319Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:36.322Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:36.331Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39220,"time":"2021-12-17T08:41:37.332Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.850Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.895Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.909Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.909Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.914Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:38.914Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:40.892Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:40.893Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BdCrdPuTirVIADNv8RLDaX1hvE2UAAgBAAAnIQEAAJloAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:40.894Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:40.896Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:40.906Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39272,"time":"2021-12-17T08:41:41.907Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.223Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.319Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.349Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.349Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.358Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:19.358Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:22.861Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:22.862Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BQmML6rTTH_hADNv8RLDaX1hvE84AAgBAAAnIQEAAJodAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:22.863Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:22.864Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:22.871Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39453,"time":"2021-12-17T08:48:23.872Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.019Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.113Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.145Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.145Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.163Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:20.163Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:22.223Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:22.224Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRghY3WJeGRkADNv8RLDaX1hvE90AAgBAAAnIQEAAJpTAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:22.225Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:22.227Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:22.237Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39507,"time":"2021-12-17T08:49:23.238Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.595Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.685Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.715Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.715Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.723Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:19.723Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:22.711Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:22.712Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BQU7cdeLSd3FADNv8RLDaX1hvE-wAAgBAAAnIQEAAJr_AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:22.712Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:22.713Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:22.719Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39679,"time":"2021-12-17T08:50:23.721Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:17.874Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:17.969Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:18.001Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:18.001Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:18.009Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:18.009Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:20.062Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:20.063Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BXrJQwPwkX9QADNv8RLDaX1hvE_sAAgBAAAnIQEAAJs_AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:20.064Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:20.067Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:20.077Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39743,"time":"2021-12-17T08:51:21.079Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.399Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.489Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.523Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.523Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.532Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39782,"time":"2021-12-17T08:51:28.532Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.480Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.552Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.578Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.578Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.587Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:31.587Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:34.311Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:34.312Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRW_Lsavv_-KADNv8RLDaX1hvE_sAAgBAAAnIQEAAJuFAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:34.313Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:34.314Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39813,"time":"2021-12-17T08:51:34.320Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.777Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.848Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.870Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.870Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.877Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:34.877Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:36.979Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:36.981Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRhbCTn8QLOdADNv8RLDaX1hvE_sAAgBAAAnIQEAAJumAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:36.981Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:36.983Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:36.993Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39846,"time":"2021-12-17T08:51:37.994Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.214Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.303Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.339Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.339Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.347Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:05.347Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:07.392Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:07.393Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BTNKqlHQgC_UADNv8RLDaX1hvFAoAAgBAAAnIQEAAJvMAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:07.394Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:07.396Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:07.405Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39884,"time":"2021-12-17T08:52:08.407Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.699Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.791Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.823Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.824Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.833Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:28.833Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:30.434Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:30.434Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRX6CqOpsbACADNv8RLDaX1hvFAoAAgBAAAnIQEAAJv_AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:30.434Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:30.437Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:30.445Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":39935,"time":"2021-12-17T08:52:31.447Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.082Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.180Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.216Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.217Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.224Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40006,"time":"2021-12-17T08:53:22.224Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.018Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.095Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.121Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.121Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.130Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:24.130Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:26.909Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:26.911Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BYa1_HW-Oe2DADNv8RLDaX1hvFBkAAgBAAAnIQEAAJxhAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:26.911Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:26.913Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:26.922Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40033,"time":"2021-12-17T08:53:27.923Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:13.980Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:14.075Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:14.111Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:14.112Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:14.119Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:14.119Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:16.162Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:16.163Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BWizTeDTGQgZADNv8RLDaX1hvFCgAAgBAAAnIQEAAJ0RAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:16.164Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:16.166Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:16.175Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40209,"time":"2021-12-17T08:54:17.176Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.497Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.592Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.622Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.622Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.631Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:29.631Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:33.158Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:33.159Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BcyGs7DSX0iqADNv8RLDaX1hvFIIAAgBAAAnIQEAAJ3dAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:33.160Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:33.163Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:33.173Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40413,"time":"2021-12-17T09:00:34.174Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.846Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.942Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.971Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.971Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.979Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:48.979Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:51.019Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:51.020Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BQROiWuxA1ClADNv8RLDaX1hvFIIAAgBAAAnIQEAAJ4kAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:51.020Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:51.021Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:51.026Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40484,"time":"2021-12-17T09:00:52.028Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.097Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.187Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.215Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.215Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.223Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:12.223Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:13.827Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:13.828Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BbSVUYOkY0k6ADNv8RLDaX1hvFJEAAgBAAAnIQEAAJ5sAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:13.829Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:13.830Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40556,"time":"2021-12-17T09:01:13.836Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.604Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.673Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.698Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.699Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.707Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:14.707Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:16.314Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:16.315Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID Bcp0WvKAe_QAADNv8RLDaX1hvFJEAAgBAAAnIQEAAJ6NAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:16.315Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:16.318Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:16.327Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40589,"time":"2021-12-17T09:01:17.329Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.097Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.168Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.194Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.194Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.202Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:38.203Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:41.339Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:41.340Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BfTvje6_0SJJADNv8RLDaX1hvFJEAAgBAAAnIQEAAJ6wAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:41.340Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:41.343Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:41.352Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":40624,"time":"2021-12-17T09:01:42.354Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:05.943Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:06.044Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:06.077Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:06.077Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:06.087Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:06.087Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:09.643Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:09.645Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BT8_Q3a56ev4ADNv8RLDaX1hvFa4AAgBAAAnIQEAAKBUAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:09.645Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:09.647Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:09.657Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41044,"time":"2021-12-17T09:20:10.657Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.009Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.121Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.158Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.158Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.166Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:56.166Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:59.613Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:59.614Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BQW1YQqiFwwPADNv8RLDaX1hvFeoAAgBAAAnIQEAAKDIAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:59.615Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:59.617Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:24:59.627Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41160,"time":"2021-12-17T09:25:00.627Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:00.704Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:00.808Z","msg":"Using LegacyContextManager"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:00.850Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:00.863Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:00.863Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:01.009Z","msg":"startBackgroundTransaction called with a handle that is not a function","component":"api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:05.091Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:05.091Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BZ1mZ_D_TaAiADNv8RLChPZhvFggAAgBAAAnIQEAAKEqAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:05.091Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:05.092Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:05.096Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41258,"time":"2021-12-17T09:26:06.096Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.722Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.819Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.850Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.850Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.859Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:27:58.859Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:02.345Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:02.347Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BVX4dZvsar9AADNv8RLDaX1hvFiYAAgBAAAnIQEAAKF-AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:02.348Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:02.350Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:02.360Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41342,"time":"2021-12-17T09:28:03.360Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.823Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.911Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.938Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.939Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.946Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:10.946Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:12.508Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:12.509Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BVTXtr6BAXJjADNv8RLDaX1hvFiYAAgBAAAnIQEAAKGoAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:12.509Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:12.510Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:12.516Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41384,"time":"2021-12-17T09:28:13.517Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.517Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.592Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.618Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.619Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.627Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:15.627Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:17.187Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:17.187Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID Ba3-5BmE5dJtADNv8RLDaX1hvFiYAAgBAAAnIQEAAKHGAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:17.188Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:17.189Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:17.195Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41414,"time":"2021-12-17T09:28:18.198Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.476Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.569Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.602Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.602Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.611Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:01.612Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:04.605Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:04.606Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BUCE0sLo8MO8ADNv8RLDaX1hvFlMAAgBAAAnIQEAAKIaAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:04.606Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:04.608Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:04.618Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41498,"time":"2021-12-17T09:31:05.620Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.227Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.312Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.340Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.340Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.347Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:08.347Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:10.443Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:10.444Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BcZb2n-DooHNADNv8RLDaX1hvFlMAAgBAAAnIQEAAKI8AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:10.444Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:10.447Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:10.456Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41532,"time":"2021-12-17T09:31:11.459Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:40.985Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:41.068Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:41.096Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:41.097Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:41.103Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:41.104Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:43.185Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:43.187Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BVw4aPnkrjwcADNv8RLDaX1hvFlMAAgBAAAnIQEAAKJeAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:43.188Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:43.191Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:43.203Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41566,"time":"2021-12-17T09:31:44.204Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:46.964Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:47.059Z","msg":"Using LegacyContextManager"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:47.089Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:47.097Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:47.097Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:49.251Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:49.252Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BT8UkXj_nOdJADNv8RLChPZhvFlMAAgBAAAnIQEAAKJ0AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:49.254Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:49.258Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:49.273Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41588,"time":"2021-12-17T09:31:50.273Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:39.970Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:40.065Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:40.100Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:40.100Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:40.109Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:40.109Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:43.881Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:43.883Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BSdZqlL8_l85ADNv8RLDaX1hvFq0AAgBAAAnIQEAAKMBAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:43.883Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:43.887Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:43.897Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41729,"time":"2021-12-17T09:37:44.898Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.429Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.517Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.550Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.550Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.559Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41783,"time":"2021-12-17T09:38:48.559Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.111Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.187Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.214Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.214Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.221Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:49.221Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:51.654Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:51.654Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BU0BnKLGtLkTADNv8RLDaX1hvFrwAAgBAAAnIQEAAKNDAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:51.655Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:51.656Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:51.663Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41795,"time":"2021-12-17T09:38:52.664Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.117Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.215Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.242Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.242Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.249Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41874,"time":"2021-12-17T09:39:53.250Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.803Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.917Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.947Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.947Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.956Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:54.956Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:57.282Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:57.283Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BQweDNS_LTpZADNv8RLDaX1hvFssAAgBAAAnIQEAAKOmAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:57.283Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:57.284Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:57.289Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41894,"time":"2021-12-17T09:39:58.290Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.789Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.885Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.912Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.912Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.919Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41944,"time":"2021-12-17T09:40:24.919Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.559Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.630Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.656Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.656Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.665Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41977,"time":"2021-12-17T09:40:26.665Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:27.935Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:28.004Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:28.032Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:28.032Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:28.040Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:28.041Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:30.079Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:30.080Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BcvJPqaJP3oQADNv8RLDaX1hvFtoAAgBAAAnIQEAAKQMAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:30.081Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:30.083Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:30.092Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":41996,"time":"2021-12-17T09:40:31.093Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.730Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.822Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.852Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.852Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.859Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:47.859Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:49.895Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:49.896Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BT-ZG_eEeAd7ADNv8RLDaX1hvFtoAAgBAAAnIQEAAKQtAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:49.896Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:49.898Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:49.904Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42029,"time":"2021-12-17T09:40:50.904Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.341Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.426Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.448Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js\n\tmongodb: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/mongodb/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.448Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.455Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:40:57.455Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:00.469Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:00.470Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BTmbebSIkBhVADNv8RLDaX1hvFukAAgBAAAnIQEAAKRSAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:00.471Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:00.473Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:00.483Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42066,"time":"2021-12-17T09:41:01.485Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.267Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.367Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.396Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.396Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.404Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42127,"time":"2021-12-17T09:41:46.404Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:47.944Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:48.064Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:48.116Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:48.117Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:48.133Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:48.133Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:50.313Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:50.314Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID Bd63JLqYTc1LADNv8RLDaX1hvFukAAgBAAAnIQEAAKStAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:50.314Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:50.317Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:50.322Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42157,"time":"2021-12-17T09:41:51.323Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.222Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.320Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.348Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.348Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.358Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:52.358Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:55.943Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:55.944Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BeKcXBvaSTZIADNv8RLDaX1hvFvgAAgBAAAnIQEAAKTtAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:55.944Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:55.946Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:55.953Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42221,"time":"2021-12-17T09:42:56.954Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.265Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.360Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.386Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.387Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.394Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:06.394Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:08.554Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:08.555Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BaxawqziPojAADNv8RLDaX1hvFwcAAgBAAAnIQEAAKURAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:08.555Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:08.557Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:08.563Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42257,"time":"2021-12-17T09:43:09.565Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.695Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.795Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.823Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.823Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.831Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:31.831Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:33.983Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:33.983Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BeTmNP_Vfc28ADNv8RLDaX1hvFwcAAgBAAAnIQEAAKU6AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:33.983Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:33.985Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42298,"time":"2021-12-17T09:43:33.988Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.488Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.583Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.610Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.610Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.617Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:41.617Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:43.310Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:43.311Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BTm1Nk67_9kNADNv8RLDaX1hvFwcAAgBAAAnIQEAAKWwAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:43.312Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:43.315Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:43.327Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42416,"time":"2021-12-17T09:43:44.327Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:21.276Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:21.374Z","msg":"Using LegacyContextManager"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:21.406Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:21.416Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:21.416Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:24.472Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:24.473Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BS7QQIKjqXIfADNv8RLChPZhvF44AAgBAAAnIQEAAKaJAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:24.473Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:24.474Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:24.480Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":42633,"time":"2021-12-17T09:52:25.481Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:15.919Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:16.024Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:16.056Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:16.056Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:16.071Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:16.071Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:19.194Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:19.195Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BWYnWInrUKE8ADNv8RLDaX1hvGOcAAgBAAAnIQEAAKgbAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:19.195Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:19.198Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:19.204Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43035,"time":"2021-12-17T10:15:20.205Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.655Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.761Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.789Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.789Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.803Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:09.803Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:13.390Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:13.391Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRTY6_HsVRUPADNv8RLDaX1hvGaoAAgBAAAnIQEAAKkJAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:13.391Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:13.394Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:13.399Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43273,"time":"2021-12-17T10:28:14.400Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.336Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.439Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.468Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.468Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.476Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:28.476Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:32.084Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:32.086Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BZqnh9qw7ukmADNv8RLDaX1hvGcgAAgBAAAnIQEAAKoKAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:32.087Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:32.090Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:32.099Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:30:33.100Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T10:58:34.513Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T11:43:49.584Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T11:43:52.133Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T11:43:57.122Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":43530,"time":"2021-12-17T11:44:00.391Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.511Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.628Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.661Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.661Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.675Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44515,"time":"2021-12-17T12:02:24.675Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.576Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.660Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.682Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.682Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.690Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44535,"time":"2021-12-17T12:02:26.690Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:32.945Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:33.031Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:33.057Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:33.057Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:33.064Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44557,"time":"2021-12-17T12:02:33.064Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.024Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.125Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.152Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.152Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.162Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44592,"time":"2021-12-17T12:02:43.162Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.796Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.878Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.900Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.900Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.907Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:44.907Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:48.867Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:48.868Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID Ba6p3dfxDxtLADNv8RLDaX1hvHywAAgBAAAnIQEAAK5GAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:48.868Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:48.870Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:48.874Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44614,"time":"2021-12-17T12:02:49.874Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.326Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.429Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.457Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.457Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.465Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:05.465Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:07.820Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:07.821Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRueaRWF6tjHADNv8RLDaX1hvHzsAAgBAAAnIQEAAK5mAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:07.821Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:07.822Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:07.826Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44646,"time":"2021-12-17T12:03:08.826Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.746Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.843Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.875Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.875Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.885Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:44.885Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:47.670Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:47.670Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BUvEi9SXUuq1ADNv8RLDaX1hvHzsAAgBAAAnIQEAAK6wAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:47.670Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:47.671Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:47.674Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44720,"time":"2021-12-17T12:03:48.675Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.383Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.484Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.512Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.512Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.521Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44829,"time":"2021-12-17T12:06:38.522Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.588Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.667Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.688Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.688Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.694Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:40.694Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:43.721Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:43.722Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BYUKIHHwgw7LADNv8RLDaX1hvH2gAAgBAAAnIQEAAK84AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:43.722Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:43.725Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:43.732Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44856,"time":"2021-12-17T12:06:44.732Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.583Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.697Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.731Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.732Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.745Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:40.745Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:44.601Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:44.602Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BRW_hqTz1U9oADNv8RLDaX1hvH7MAAgBAAAnIQEAAK-0AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:44.602Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:44.603Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:44.609Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":44980,"time":"2021-12-17T12:11:45.610Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.667Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.765Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.793Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.793Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.800Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:50.801Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:52.698Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:52.699Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BdzAMUuFImQ3ADNv8RLDaX1hvH7MAAgBAAAnIQEAAK_dAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:52.699Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:52.702Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:52.707Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45021,"time":"2021-12-17T12:11:53.709Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.449Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.549Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.577Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.578Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.584Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:11:58.584Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:00.488Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:00.488Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BXFn9yHqJE0qADNv8RLDaX1hvH8IAAgBAAAnIQEAALAIAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:00.488Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:00.489Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:00.495Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45064,"time":"2021-12-17T12:12:01.496Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:32.963Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:33.060Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:33.088Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:33.088Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:33.095Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:33.096Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:35.891Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:35.891Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BXEAgxKnAVw5ADNv8RLDaX1hvH8IAAgBAAAnIQEAALA_AgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:35.891Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:35.892Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:35.895Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45119,"time":"2021-12-17T12:12:36.896Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.437Z","msg":"Using New Relic for Node.js. Agent version: 8.6.0; Node version: v14.16.1."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.533Z","msg":"Using LegacyContextManager"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.563Z","msg":"The newrelic module must be the first module required.\nThe following modules were required before newrelic and are not being instrumented:\n\texpress: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/express/index.js\n\tq: /Users/dan/Documents/GitHub/rsa_covid-19/node_modules/qs/lib/index.js"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.563Z","msg":"Agent state changed from stopped to starting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.571Z","msg":"Starting New Relic for Node.js connection process."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:43.571Z","msg":"Agent state changed from starting to connecting."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:47.309Z","msg":"Agent state changed from connecting to connected."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:47.309Z","msg":"Connected to collector-001.eu01.nr-data.net:443 with agent run ID BfTdyOPZx669ADNv8RLDaX1hvH8IAAgBAAAnIQEAALBxAgQSw27sAwAFOC42LjAADURhbnMtQWlyLmhvbWUADHJzYV9jb3ZpZC0xOQ.","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:47.309Z","msg":"Reporting to: https://rpm.eu.newrelic.com/accounts/3370993/applications/314797804","component":"collector_api"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:47.310Z","msg":"Valid event_harvest_config received. Updating harvest cycles. {\"report_period_ms\":5000,\"harvest_limits\":{\"error_event_data\":8,\"analytic_event_data\":833,\"custom_event_data\":83}}"}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:47.313Z","msg":"Agent state changed from connected to started."}
{"v":0,"level":30,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:12:48.315Z","msg":"Starting initial 1000ms harvest."}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:21:07.770Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:21:32.618Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:21:50.324Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:22:40.504Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:00.820Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:10.436Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:23.323Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:28.323Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:30.965Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:40.255Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:47.535Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:23:50.543Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:00.550Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:05.420Z","msg":"Merging 8 of 8 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:11.764Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:24.692Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:29.888Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:44.639Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:24:50.991Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:25:06.414Z","msg":"Merging 12 of 12 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:25:06.771Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:25:09.722Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:25:53.267Z","msg":"Merging 8 of 8 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:39:32.373Z","msg":"Merging 8 of 8 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:43:28.235Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:43:36.297Z","msg":"Merging 12 of 12 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:43:46.258Z","msg":"Merging 12 of 12 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:43:47.819Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:44:09.664Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T12:44:27.023Z","msg":"Merging 7 of 7 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T13:23:26.175Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T13:39:03.117Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T14:13:09.894Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T14:30:37.163Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T14:48:14.355Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T15:03:56.218Z","msg":"Merging 11 of 11 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T15:19:33.855Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T15:35:43.080Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T15:52:48.752Z","msg":"Merging 20 of 20 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T16:07:57.147Z","msg":"Merging 22 of 22 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T16:23:43.189Z","msg":"Merging 25 of 25 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T16:39:35.878Z","msg":"Merging 28 of 28 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T16:56:20.113Z","msg":"Merging 30 of 30 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T17:12:54.881Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T17:12:54.882Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T17:45:39.738Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T18:16:17.679Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T18:16:17.681Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T18:31:43.697Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T18:49:19.946Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T19:05:45.586Z","msg":"Merging 11 of 11 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T19:23:36.633Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T19:40:58.955Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T19:56:23.805Z","msg":"Merging 20 of 20 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T20:12:11.532Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T20:12:11.536Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T20:46:56.658Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T21:02:04.360Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T21:02:04.369Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T21:35:21.478Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T21:51:29.111Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T22:08:12.098Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T22:24:06.497Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T22:41:33.291Z","msg":"Merging 15 of 15 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T22:58:08.477Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T23:15:57.174Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T23:15:57.179Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T23:48:07.081Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-17T23:48:07.083Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T00:03:53.188Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T00:19:21.443Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T00:19:21.480Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T00:36:59.071Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T00:52:54.966Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T01:10:32.942Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T01:10:32.946Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T01:26:01.991Z","msg":"Merging 20 of 20 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T01:42:25.037Z","msg":"Merging 23 of 23 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T01:57:40.170Z","msg":"Merging 26 of 26 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T02:12:53.794Z","msg":"Merging 29 of 29 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T02:30:17.684Z","msg":"Merging 32 of 32 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T02:46:23.984Z","msg":"Merging 34 of 34 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T03:01:34.711Z","msg":"Merging 37 of 37 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T03:17:45.730Z","msg":"Merging 39 of 39 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T03:34:26.967Z","msg":"Merging 42 of 42 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T03:50:32.592Z","msg":"Merging 45 of 45 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T04:07:43.463Z","msg":"Merging 47 of 47 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T04:23:10.477Z","msg":"Merging 50 of 50 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T04:40:16.762Z","msg":"Merging 53 of 53 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T04:56:11.836Z","msg":"Merging 55 of 55 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T05:13:35.856Z","msg":"Merging 58 of 58 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T05:29:51.598Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T05:29:51.601Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T06:03:28.474Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T06:03:28.478Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T06:38:29.191Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T06:38:29.205Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T07:10:04.445Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T07:41:09.392Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T07:41:09.394Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T07:57:34.287Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T08:15:13.190Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T08:15:13.191Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T08:47:09.052Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T08:47:09.325Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T09:03:15.265Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T09:18:56.306Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T09:35:21.304Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T09:51:36.927Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T09:51:36.930Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T10:24:47.199Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T10:41:28.905Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T10:58:44.849Z","msg":"Merging 7 of 7 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:14:26.020Z","msg":"Merging 10 of 10 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:30:31.870Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:44:46.575Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:44:46.628Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:51:16.546Z","msg":"Merging 12 of 12 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T11:51:21.038Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:07:44.459Z","msg":"Merging 20 of 20 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:07:44.658Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:07:49.426Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:24:19.680Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:24:19.682Z","msg":"Merging 23 of 23 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:42:08.142Z","msg":"Merging 8 of 8 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T12:42:08.146Z","msg":"Merging 27 of 27 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:00:07.576Z","msg":"Merging 11 of 11 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:00:07.580Z","msg":"Merging 31 of 31 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:00:12.561Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:18:08.423Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:18:08.425Z","msg":"Merging 35 of 35 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:35:24.762Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:35:24.765Z","msg":"Merging 39 of 39 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:52:45.145Z","msg":"Merging 20 of 20 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T13:52:45.150Z","msg":"Merging 43 of 43 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:09:05.474Z","msg":"Merging 23 of 23 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:09:05.479Z","msg":"Merging 47 of 47 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:09:10.506Z","msg":"Merging 25 of 25 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:26:02.333Z","msg":"Merging 25 of 25 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:26:02.336Z","msg":"Merging 50 of 50 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:41:17.482Z","msg":"Merging 27 of 27 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:41:17.484Z","msg":"Merging 53 of 53 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:41:19.568Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:41:22.476Z","msg":"Merging 33 of 33 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:58:26.049Z","msg":"Merging 33 of 33 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T14:58:26.051Z","msg":"Merging 57 of 57 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:13:55.483Z","msg":"Merging 35 of 35 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:13:55.484Z","msg":"Merging 60 of 60 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:30:36.844Z","msg":"Merging 38 of 38 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:30:36.854Z","msg":"Merging 64 of 64 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:46:42.290Z","msg":"Merging 41 of 41 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:46:42.295Z","msg":"Merging 68 of 68 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T15:46:47.232Z","msg":"Merging 44 of 44 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:01:52.582Z","msg":"Merging 44 of 44 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:01:52.598Z","msg":"Merging 72 of 72 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:17:31.941Z","msg":"Merging 47 of 47 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:17:31.947Z","msg":"Merging 76 of 76 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:17:36.928Z","msg":"Merging 50 of 50 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:25:23.025Z","msg":"Merging 50 of 50 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T16:25:23.029Z","msg":"Merging 80 of 80 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T17:32:31.962Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T17:50:43.020Z","msg":"Merging 4 of 4 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:07:48.585Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:13:33.909Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:13:36.554Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:30:47.717Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:48:19.424Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T18:48:19.425Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:05:42.919Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:05:42.922Z","msg":"Merging 7 of 7 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:21:37.582Z","msg":"Merging 8 of 8 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:21:37.584Z","msg":"Merging 11 of 11 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:38:20.454Z","msg":"Merging 11 of 11 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:38:20.455Z","msg":"Merging 15 of 15 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:38:25.359Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:54:43.442Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T19:54:43.449Z","msg":"Merging 19 of 19 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:11:53.265Z","msg":"Merging 16 of 16 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:11:53.266Z","msg":"Merging 22 of 22 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:11:58.273Z","msg":"Merging 19 of 19 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:28:53.948Z","msg":"Merging 19 of 19 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:28:53.950Z","msg":"Merging 26 of 26 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:45:26.147Z","msg":"Merging 19 of 19 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T20:45:26.151Z","msg":"Merging 26 of 26 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:02:43.743Z","msg":"Merging 22 of 22 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:02:43.747Z","msg":"Merging 30 of 30 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:19:46.298Z","msg":"Merging 25 of 25 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:19:46.304Z","msg":"Merging 34 of 34 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:37:31.923Z","msg":"Merging 28 of 28 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:37:31.927Z","msg":"Merging 38 of 38 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:52:58.608Z","msg":"Merging 31 of 31 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T21:52:58.610Z","msg":"Merging 42 of 42 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:08:08.318Z","msg":"Merging 33 of 33 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:08:08.328Z","msg":"Merging 45 of 45 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:23:29.155Z","msg":"Merging 36 of 36 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:23:29.158Z","msg":"Merging 49 of 49 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:23:34.013Z","msg":"Merging 39 of 39 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:38:35.316Z","msg":"Merging 39 of 39 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:38:35.318Z","msg":"Merging 53 of 53 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:56:25.842Z","msg":"Merging 42 of 42 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:56:25.846Z","msg":"Merging 57 of 57 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T22:56:26.181Z","msg":"Merging 6 of 6 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:13:24.330Z","msg":"Merging 44 of 44 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:13:24.338Z","msg":"Merging 66 of 66 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:28:52.042Z","msg":"Merging 47 of 47 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:28:52.045Z","msg":"Merging 70 of 70 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:28:56.898Z","msg":"Merging 50 of 50 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:46:45.961Z","msg":"Merging 50 of 50 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:46:45.970Z","msg":"Merging 74 of 74 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-18T23:46:50.858Z","msg":"Merging 53 of 53 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:01:56.812Z","msg":"Merging 53 of 53 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:01:56.813Z","msg":"Merging 78 of 78 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:02:01.837Z","msg":"Merging 56 of 56 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:16:39.309Z","msg":"Merging 56 of 56 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:16:39.311Z","msg":"Merging 82 of 82 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:23:45.822Z","msg":"Merging 59 of 59 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:23:45.833Z","msg":"Merging 86 of 86 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:23:50.765Z","msg":"Merging 61 of 61 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:40:42.999Z","msg":"Merging 61 of 61 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:40:43.001Z","msg":"Merging 89 of 89 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:56:11.855Z","msg":"Merging 64 of 64 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T00:56:11.858Z","msg":"Merging 93 of 93 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:14:10.942Z","msg":"Merging 97 of 97 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:14:10.943Z","msg":"Merging 67 of 67 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:31:46.795Z","msg":"Merging 70 of 70 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:31:46.797Z","msg":"Merging 101 of 101 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:31:51.802Z","msg":"Merging 73 of 73 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:48:48.329Z","msg":"Merging 73 of 73 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T01:48:48.331Z","msg":"Merging 105 of 105 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:04:28.027Z","msg":"Merging 76 of 76 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:04:28.029Z","msg":"Merging 109 of 109 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:19:48.684Z","msg":"Merging 79 of 79 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:19:48.687Z","msg":"Merging 113 of 113 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:36:51.377Z","msg":"Merging 82 of 82 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:36:51.380Z","msg":"Merging 117 of 117 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:52:26.036Z","msg":"Merging 84 of 84 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T02:52:26.038Z","msg":"Merging 120 of 120 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:09:47.605Z","msg":"Merging 86 of 86 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:09:47.607Z","msg":"Merging 123 of 123 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:25:46.564Z","msg":"Merging 89 of 89 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:25:46.566Z","msg":"Merging 127 of 127 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:25:51.426Z","msg":"Merging 92 of 92 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:41:26.481Z","msg":"Merging 92 of 92 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:41:26.482Z","msg":"Merging 131 of 131 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:41:31.393Z","msg":"Merging 94 of 94 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:58:14.684Z","msg":"Merging 94 of 94 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:58:14.685Z","msg":"Merging 134 of 134 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:59:59.387Z","msg":"Merging 96 of 96 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T03:59:59.388Z","msg":"Merging 137 of 137 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T04:00:04.373Z","msg":"Merging 98 of 98 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T04:47:21.240Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:01:01.390Z","msg":"Merging 8 of 8 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:01:01.392Z","msg":"Merging 4 of 4 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:06:33.839Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:06:37.295Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:06:42.094Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:07:41.061Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:07:41.061Z","msg":"Merging 7 of 7 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:07:46.045Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:07:51.047Z","msg":"Merging 5 of 5 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:41:25.846Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:57:18.834Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T05:57:19.390Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T06:13:13.203Z","msg":"Merging 11 of 11 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T06:29:13.021Z","msg":"Merging 13 of 13 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T06:46:31.055Z","msg":"Merging 15 of 15 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T07:03:05.427Z","msg":"Merging 17 of 17 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T07:20:26.295Z","msg":"Merging 19 of 19 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T07:36:00.019Z","msg":"Merging 22 of 22 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T07:52:57.326Z","msg":"Merging 24 of 24 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T08:10:25.259Z","msg":"Merging 27 of 27 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T08:25:53.901Z","msg":"Merging 29 of 29 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T08:42:50.203Z","msg":"Merging 32 of 32 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T08:59:10.176Z","msg":"Merging 34 of 34 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T09:14:18.889Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T09:14:18.898Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T09:47:31.867Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T09:47:31.874Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T10:54:10.604Z","msg":"Merging 4 of 4 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T10:54:10.605Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T11:26:22.413Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T11:26:22.728Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T11:59:38.687Z","msg":"Merging 3 of 3 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T12:17:00.453Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T12:33:51.480Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T12:50:48.624Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T13:07:25.522Z","msg":"Merging 3 of 3 events into SpanEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T13:07:25.524Z","msg":"Merging 2 of 2 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T13:25:09.362Z","msg":"Merging 4 of 4 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T13:41:26.412Z","msg":"Merging 6 of 6 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T13:56:49.352Z","msg":"Merging 9 of 9 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T14:13:54.631Z","msg":"Merging 12 of 12 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}
{"v":0,"level":40,"name":"newrelic","hostname":"Dans-Air.home","pid":45169,"time":"2021-12-19T14:29:52.177Z","msg":"Merging 14 of 14 events into TransactionEventAggregator for next harvest","component":"event_aggregator"}