-
Notifications
You must be signed in to change notification settings - Fork 1
/
newrelic_agent.log
1189 lines (1189 loc) · 265 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
{"name":"newrelic","hostname":"Kether-Portable","pid":15024,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T14:58:55.569Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15024,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T14:59:01.050Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15024,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084257427.","time":"2014-07-28T14:59:01.051Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15892,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:21:54.923Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15892,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:21:59.626Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15892,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084284373.","time":"2014-07-28T15:21:59.626Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12396,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:24:30.883Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12396,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:24:35.642Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12396,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084287112.","time":"2014-07-28T15:24:35.642Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13228,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:27:44.553Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13228,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:27:49.212Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13228,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084290605.","time":"2014-07-28T15:27:49.212Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9900,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:30:55.775Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9900,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:31:00.518Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9900,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084294066.","time":"2014-07-28T15:31:00.519Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14328,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:32:37.083Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14328,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:32:41.798Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14328,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084295955.","time":"2014-07-28T15:32:41.798Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14620,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:34:48.402Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14620,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:34:53.097Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14620,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084298245.","time":"2014-07-28T15:34:53.098Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15476,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:35:36.085Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15476,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:35:41.027Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15476,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084299235.","time":"2014-07-28T15:35:41.027Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16024,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:36:24.229Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16024,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:36:29.026Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16024,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084300037.","time":"2014-07-28T15:36:29.029Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12284,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:45:04.961Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12284,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:45:09.775Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12284,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084309506.","time":"2014-07-28T15:45:09.775Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13040,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:47:37.239Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13040,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:47:41.991Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13040,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084312653.","time":"2014-07-28T15:47:41.991Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11176,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:55:48.510Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11176,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:55:53.240Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11176,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084322122.","time":"2014-07-28T15:55:53.240Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13764,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T15:58:32.454Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13764,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T15:58:37.175Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13764,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084324868.","time":"2014-07-28T15:58:37.175Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:00:10.264Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:00:14.938Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084326689.","time":"2014-07-28T16:00:14.938Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13080,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:00:52.292Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13080,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:00:56.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13080,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084328545.","time":"2014-07-28T16:00:56.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15632,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:02:31.229Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15632,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:02:36.243Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15632,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084331248.","time":"2014-07-28T16:02:36.243Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15996,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:04:50.815Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15996,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:04:55.843Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15996,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084333763.","time":"2014-07-28T16:04:55.843Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16348,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:06:21.604Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16348,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:06:26.290Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16348,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084335522.","time":"2014-07-28T16:06:26.291Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15192,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:08:28.899Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15192,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:08:33.588Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15192,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084338020.","time":"2014-07-28T16:08:33.588Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10756,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:10:40.876Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10756,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:10:45.611Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10756,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084340791.","time":"2014-07-28T16:10:45.611Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8612,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:11:59.511Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8612,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:12:04.206Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8612,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084342328.","time":"2014-07-28T16:12:04.206Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14640,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:24:33.618Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14640,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:24:38.339Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14640,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084357167.","time":"2014-07-28T16:24:38.339Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16052,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-28T16:28:10.493Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16052,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-28T16:28:15.192Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16052,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1084361167.","time":"2014-07-28T16:28:15.192Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11996,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T04:01:55.136Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11996,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T04:02:55.248Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11996,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T04:05:55.279Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9476,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T04:14:14.462Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9476,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T04:15:14.567Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9476,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T04:18:14.599Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17364,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:16:15.131Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17364,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:16:19.094Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17364,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085236086.","time":"2014-07-29T05:16:19.094Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:21:34.851Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:21:37.825Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085241543.","time":"2014-07-29T05:21:37.825Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12740,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:25:08.067Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12740,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:25:11.044Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12740,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085244511.","time":"2014-07-29T05:25:11.045Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12952,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:28:58.610Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12952,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:29:01.666Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12952,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085247905.","time":"2014-07-29T05:29:01.666Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16440,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:29:16.798Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16440,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:29:19.837Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16440,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085248117.","time":"2014-07-29T05:29:19.838Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15792,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:33:59.273Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15792,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:34:02.270Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15792,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085252694.","time":"2014-07-29T05:34:02.271Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:34:50.284Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:34:53.675Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17160,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085253527.","time":"2014-07-29T05:34:53.676Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9548,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:36:39.095Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9548,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:36:42.179Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9548,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085255287.","time":"2014-07-29T05:36:42.180Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17144,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:36:59.848Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17144,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:37:03.198Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17144,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085255708.","time":"2014-07-29T05:37:03.199Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14628,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:38:00.282Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14628,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:38:03.700Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14628,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085256570.","time":"2014-07-29T05:38:03.701Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12172,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T05:52:14.215Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12172,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T05:52:17.236Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":12172,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085268795.","time":"2014-07-29T05:52:17.237Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T06:12:05.368Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T06:12:12.710Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14624,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085288424.","time":"2014-07-29T06:12:12.711Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14088,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T06:21:17.517Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14088,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-29T06:21:22.651Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14088,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1085296717.","time":"2014-07-29T06:21:22.652Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17504,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T06:36:05.238Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17504,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T06:37:05.344Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17504,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T06:40:05.371Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16792,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T07:01:25.086Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16792,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T07:02:25.200Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6868,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:27:11.260Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6868,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T11:28:11.371Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6868,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T11:31:11.400Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17616,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:35:28.069Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17616,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T11:36:28.172Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17584,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:51:34.664Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17584,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T11:52:34.770Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15008,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:53:01.199Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15196,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:53:59.624Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18192,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T11:54:48.168Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18192,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T11:55:48.273Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13168,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:22:37.778Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13656,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:23:19.191Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13656,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T12:24:19.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17588,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:25:47.315Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17588,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T12:26:47.432Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17588,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T12:29:47.459Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13516,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:30:55.209Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13516,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T12:31:55.315Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11424,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:33:19.888Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11424,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T12:34:19.989Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13104,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:37:48.162Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5164,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T12:39:35.571Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5164,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T12:40:35.687Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5164,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T12:43:35.723Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16068,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:02:28.618Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16068,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T13:03:28.729Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16068,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T13:06:28.759Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16984,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:08:08.819Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16984,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T13:09:08.922Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16240,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:10:33.751Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16240,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T13:11:33.862Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16840,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:13:08.664Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11812,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:16:04.028Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11812,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T13:17:04.132Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13588,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:18:29.533Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16308,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T13:22:38.970Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16308,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T13:23:39.080Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13832,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T15:18:10.103Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13832,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T15:19:10.203Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13832,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T15:22:10.232Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17884,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T15:31:11.595Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18192,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T15:31:58.893Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18192,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T15:32:59.007Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13560,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T15:34:34.020Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10540,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-29T15:35:21.189Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10540,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-29T15:36:21.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10540,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-29T15:39:21.337Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20444,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:32:51.160Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20444,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:32:54.960Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20444,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087700671.","time":"2014-07-30T15:32:54.960Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19532,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:36:17.370Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19532,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:36:20.673Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19532,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087704690.","time":"2014-07-30T15:36:20.673Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18556,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:39:37.260Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18556,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:39:40.552Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18556,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087708635.","time":"2014-07-30T15:39:40.552Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16232,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:39:45.836Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16232,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:39:49.419Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":16232,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087708767.","time":"2014-07-30T15:39:49.419Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18580,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:43:46.145Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18580,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:43:49.386Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18580,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087713307.","time":"2014-07-30T15:43:49.387Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19884,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:45:58.758Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19884,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:46:01.985Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19884,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087716090.","time":"2014-07-30T15:46:01.986Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14752,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:49:33.970Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14752,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:49:37.254Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14752,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087720357.","time":"2014-07-30T15:49:37.255Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14228,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:50:30.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14228,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:50:37.343Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14228,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087721669.","time":"2014-07-30T15:50:37.343Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15580,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:54:03.784Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15580,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:54:07.224Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15580,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087725886.","time":"2014-07-30T15:54:07.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20164,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:57:04.050Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20164,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:57:08.618Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20164,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087729515.","time":"2014-07-30T15:57:08.618Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19384,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T15:59:19.689Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19384,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T15:59:22.978Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19384,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087732322.","time":"2014-07-30T15:59:22.978Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20392,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T16:02:37.238Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20392,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T16:02:40.642Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20392,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087737955.","time":"2014-07-30T16:02:40.642Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18868,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T16:06:12.905Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18868,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T16:06:16.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18868,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087742158.","time":"2014-07-30T16:06:16.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18608,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T16:07:58.040Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18608,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T16:08:01.361Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18608,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087744510.","time":"2014-07-30T16:08:01.361Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14420,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-30T16:09:57.186Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14420,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-30T16:10:00.673Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14420,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1087747032.","time":"2014-07-30T16:10:00.673Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6152,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T07:42:54.549Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":17452,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T08:11:35.600Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":18812,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T08:12:23.938Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19804,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T08:13:34.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11424,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T08:14:29.924Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15636,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T08:15:42.496Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":15636,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-31T08:16:42.615Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19008,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T11:18:01.188Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19008,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-31T11:19:01.290Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14268,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T11:23:39.684Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14268,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-07-31T11:24:39.797Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":14268,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-07-31T11:27:39.823Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9492,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T11:31:20.995Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13408,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-07-31T15:36:46.157Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13408,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-07-31T15:36:49.888Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":13408,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1089226108.","time":"2014-07-31T15:36:49.888Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":21956,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T03:46:18.532Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":21956,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-02T03:47:18.643Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":21956,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-02T03:50:18.677Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23396,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T04:04:32.789Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23396,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-02T04:05:32.896Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19872,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T04:20:41.363Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23356,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T04:21:42.888Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":19444,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T04:24:14.282Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20148,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T04:25:29.866Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20148,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-02T04:26:29.984Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":20148,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-02T04:29:30.016Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25504,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T13:07:04.509Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25504,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-02T13:07:08.087Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25504,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1092072543.","time":"2014-08-02T13:07:08.087Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23024,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T13:20:22.265Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23024,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-02T13:20:25.659Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":23024,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1092084364.","time":"2014-08-02T13:20:25.660Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-02T14:56:49.460Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25036,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-02T14:56:52.779Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":25036,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1092173846.","time":"2014-08-02T14:56:52.779Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2828,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-05T00:25:20.793Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2828,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-05T00:26:21.105Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2828,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-05T00:29:21.134Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6808,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-05T00:35:38.878Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6808,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-05T00:36:39.180Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6808,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-05T00:39:39.209Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4484,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-05T00:46:26.363Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4484,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-05T00:47:26.647Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4484,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-05T00:50:26.678Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9984,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-07T12:43:36.224Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9984,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-07T12:43:39.423Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9984,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1099579460.","time":"2014-08-07T12:43:39.423Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4300,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-08T05:43:59.700Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4300,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-08T05:44:01.038Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4300,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1100667991.","time":"2014-08-08T05:44:01.039Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9176,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-08T11:09:15.200Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9176,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-08T11:09:16.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9176,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1100988575.","time":"2014-08-08T11:09:16.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9176,"component":"collector_api","level":50,"err":{"message":"connect ETIMEDOUT","name":"Error","stack":"Error: connect ETIMEDOUT\n at errnoException (net.js:904:11)\n at Object.afterConnect [as oncomplete] (net.js:895:19)","code":"ETIMEDOUT","errno":"ETIMEDOUT","syscall":"connect"},"msg":"Calling metric_data on New Relic failed unexpectedly. Data will be held until it can be submitted:","time":"2014-08-08T13:31:39.574Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9176,"level":30,"err":{"message":"connect ETIMEDOUT","name":"Error","stack":"Error: connect ETIMEDOUT\n at errnoException (net.js:904:11)\n at Object.afterConnect [as oncomplete] (net.js:895:19)","code":"ETIMEDOUT","errno":"ETIMEDOUT","syscall":"connect"},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-08T13:31:39.575Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3796,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:35:32.524Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3796,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:35:35.573Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3796,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105401309.","time":"2014-08-11T14:35:35.573Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5644,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:36:51.643Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5644,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:36:52.949Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5644,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105402788.","time":"2014-08-11T14:36:52.950Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8220,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:38:40.080Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8220,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:38:41.363Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8220,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105404994.","time":"2014-08-11T14:38:41.363Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":416,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:39:32.101Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":416,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:39:33.383Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":416,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105405837.","time":"2014-08-11T14:39:33.384Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8628,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:39:56.199Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8628,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:39:57.545Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8628,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105406145.","time":"2014-08-11T14:39:57.545Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T14:40:22.456Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T14:40:24.171Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105406972.","time":"2014-08-11T14:40:24.171Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6268,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:06:40.939Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6268,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:06:42.521Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6268,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105438602.","time":"2014-08-11T15:06:42.522Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7820,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:12:29.647Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7820,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:12:34.720Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7820,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105445625.","time":"2014-08-11T15:12:34.721Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3276,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:32:24.118Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3276,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:32:28.343Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3276,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105469629.","time":"2014-08-11T15:32:28.343Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8420,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:45:55.237Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8420,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:45:56.627Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8420,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105485472.","time":"2014-08-11T15:45:56.628Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8052,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:48:50.191Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8052,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:48:51.528Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8052,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105488607.","time":"2014-08-11T15:48:51.529Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7824,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:51:46.690Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7824,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:51:50.125Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7824,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105491952.","time":"2014-08-11T15:51:50.125Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8664,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:54:31.218Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8664,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:54:32.500Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8664,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105495197.","time":"2014-08-11T15:54:32.501Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5760,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:57:19.568Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5760,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:57:21.170Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5760,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105498522.","time":"2014-08-11T15:57:21.170Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:57:39.158Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:57:41.081Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105499002.","time":"2014-08-11T15:57:41.081Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6400,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T15:59:19.142Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6400,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T15:59:22.222Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6400,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105500881.","time":"2014-08-11T15:59:22.223Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1112,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:02:43.324Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1112,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:02:44.948Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1112,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105506871.","time":"2014-08-11T16:02:44.949Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7448,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:04:03.194Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7448,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:04:04.484Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7448,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105508394.","time":"2014-08-11T16:04:04.484Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:04:29.852Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:04:31.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105508923.","time":"2014-08-11T16:04:31.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8908,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:06:13.182Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8908,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:06:16.508Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8908,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105510934.","time":"2014-08-11T16:06:16.509Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1340,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:06:43.607Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8864,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:08:38.632Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8864,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:08:39.950Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8864,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105513293.","time":"2014-08-11T16:08:39.950Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7956,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T16:09:36.079Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7956,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T16:09:37.493Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7956,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105514214.","time":"2014-08-11T16:09:37.493Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5656,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:04:05.406Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5656,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:04:18.100Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5656,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105643682.","time":"2014-08-11T18:04:18.101Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5592,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:05:49.442Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5592,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:05:58.775Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5592,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105645732.","time":"2014-08-11T18:05:58.775Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8760,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:06:34.209Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8760,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:06:41.633Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8760,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105646539.","time":"2014-08-11T18:06:41.634Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:06:52.612Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9156,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:07:49.871Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2096,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:09:19.814Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2096,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:09:25.859Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2096,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105649351.","time":"2014-08-11T18:09:25.859Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6500,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:10:01.263Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6500,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:10:11.650Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6500,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105650284.","time":"2014-08-11T18:10:11.651Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4716,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:13:00.738Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8684,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:14:28.624Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1748,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:14:44.998Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1748,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:14:56.465Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1748,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105655239.","time":"2014-08-11T18:14:56.465Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4212,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:15:12.262Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4212,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:15:28.534Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4212,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105656117.","time":"2014-08-11T18:15:28.535Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8700,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:16:36.501Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7240,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:17:28.783Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8380,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:19:53.076Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8380,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:20:12.968Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8380,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105660909.","time":"2014-08-11T18:20:12.968Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7844,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:22:17.785Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7844,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:22:31.029Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7844,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105663573.","time":"2014-08-11T18:22:31.030Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7992,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:22:56.578Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7992,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:23:11.166Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7992,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105664227.","time":"2014-08-11T18:23:11.167Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7124,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:23:28.778Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7124,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:23:42.311Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7124,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105664700.","time":"2014-08-11T18:23:42.311Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6796,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:25:06.537Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6796,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:25:20.629Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6796,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105666594.","time":"2014-08-11T18:25:20.629Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8728,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:26:23.900Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8728,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:26:49.783Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8728,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105668154.","time":"2014-08-11T18:26:49.783Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6852,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:29:51.669Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6852,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:29:58.387Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6852,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105671259.","time":"2014-08-11T18:29:58.387Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7732,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:30:19.152Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7732,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:30:31.951Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7732,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105672186.","time":"2014-08-11T18:30:31.952Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2592,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:31:08.982Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2592,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:31:24.889Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2592,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105673351.","time":"2014-08-11T18:31:24.890Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:34:00.011Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:34:20.309Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105676795.","time":"2014-08-11T18:34:20.309Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9148,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:36:34.643Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9148,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:36:39.216Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9148,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105679535.","time":"2014-08-11T18:36:39.216Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5084,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T18:42:34.663Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5084,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T18:42:46.231Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5084,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105686110.","time":"2014-08-11T18:42:46.232Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7552,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T20:46:47.198Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7552,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T20:46:55.300Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7552,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105831216.","time":"2014-08-11T20:46:55.300Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8536,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T20:47:30.397Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8536,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T20:47:39.961Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8536,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105832191.","time":"2014-08-11T20:47:39.962Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T20:50:20.676Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T20:50:26.365Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105836062.","time":"2014-08-11T20:50:26.365Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7228,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T20:52:08.455Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7228,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T20:52:13.710Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7228,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105838231.","time":"2014-08-11T20:52:13.711Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9080,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-11T20:55:05.228Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9080,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-11T20:55:12.605Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9080,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1105842275.","time":"2014-08-11T20:55:12.606Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T12:52:35.271Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T12:52:36.906Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106793601.","time":"2014-08-12T12:52:36.906Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:05:12.871Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:05:14.220Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106807919.","time":"2014-08-12T13:05:14.221Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2128,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:09:57.917Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2128,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:09:59.242Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2128,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106812470.","time":"2014-08-12T13:09:59.242Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4784,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:13:16.600Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4784,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:13:18.159Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4784,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106816006.","time":"2014-08-12T13:13:18.159Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6608,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:14:20.636Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6608,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:14:22.162Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6608,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106817062.","time":"2014-08-12T13:14:22.163Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6240,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:16:57.317Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6240,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:16:58.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6240,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106820048.","time":"2014-08-12T13:16:58.614Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7020,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-12T13:19:33.148Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7020,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-12T13:19:34.670Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7020,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1106822901.","time":"2014-08-12T13:19:34.670Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9160,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:25:22.456Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9160,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:25:23.806Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9160,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108748358.","time":"2014-08-13T18:25:23.806Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9140,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:26:10.970Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9140,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:26:12.254Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9140,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108749133.","time":"2014-08-13T18:26:12.255Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:27:23.272Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:27:24.677Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108750395.","time":"2014-08-13T18:27:24.677Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:27:39.252Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:27:40.767Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108750609.","time":"2014-08-13T18:27:40.768Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8876,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:29:56.194Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8876,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:29:57.618Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8876,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108752659.","time":"2014-08-13T18:29:57.619Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7680,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:34:50.103Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7680,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:34:51.849Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7680,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108758867.","time":"2014-08-13T18:34:51.849Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7144,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:36:31.312Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7144,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:36:34.066Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7144,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108761128.","time":"2014-08-13T18:36:34.067Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7656,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:37:28.184Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7656,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:37:29.507Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7656,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108762259.","time":"2014-08-13T18:37:29.508Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6532,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:39:03.324Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6532,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:39:04.695Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6532,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108763870.","time":"2014-08-13T18:39:04.696Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:41:54.260Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:41:55.730Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108767724.","time":"2014-08-13T18:41:55.731Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:44:21.452Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:44:22.812Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108770490.","time":"2014-08-13T18:44:22.813Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:45:40.424Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:45:42.889Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7036,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108772348.","time":"2014-08-13T18:45:42.890Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1240,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-13T18:47:16.776Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1240,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-13T18:47:18.596Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1240,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1108773919.","time":"2014-08-13T18:47:18.596Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6308,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T19:53:35.451Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6308,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T19:54:35.909Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3456,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T19:56:52.114Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3456,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T19:57:52.221Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3456,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-17T20:00:52.253Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6820,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:03:11.223Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6820,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:04:11.319Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7548,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:04:20.521Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7548,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:05:20.630Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7548,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-17T20:08:20.663Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10104,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:13:06.302Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6524,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:13:31.884Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9488,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:13:54.823Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7784,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:14:31.518Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5068,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:14:51.470Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5068,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:15:51.576Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9612,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:18:51.683Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9612,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:19:51.803Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9184,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:20:43.648Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9184,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:21:43.765Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4876,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:23:25.728Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1308,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:24:33.506Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1308,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:25:33.616Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10000,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:26:57.846Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7620,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:28:06.589Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7356,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:28:17.181Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7356,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:29:17.291Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7356,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-17T20:32:17.323Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:46:15.639Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:47:15.758Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8820,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-17T20:50:15.787Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6220,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T20:57:10.334Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6220,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T20:58:10.431Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6220,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-17T21:01:10.460Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6752,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T21:07:04.033Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6752,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T21:08:04.140Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-17T21:09:28.060Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9036,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-17T21:10:28.175Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4520,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T08:11:21.144Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4520,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-18T08:12:21.240Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4520,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-18T08:15:21.268Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6824,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:21:35.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6824,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:21:36.653Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6824,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115409697.","time":"2014-08-18T11:21:36.653Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9496,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:26:18.048Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9496,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:26:19.350Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9496,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115414440.","time":"2014-08-18T11:26:19.350Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:33:37.938Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:33:39.334Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115421664.","time":"2014-08-18T11:33:39.334Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:39:20.064Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:39:21.450Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7468,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115427879.","time":"2014-08-18T11:39:21.451Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4944,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:42:29.707Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4944,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:42:31.064Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4944,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115431290.","time":"2014-08-18T11:42:31.064Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6556,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:42:47.568Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6556,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:42:49.089Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6556,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115431517.","time":"2014-08-18T11:42:49.089Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9420,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:46:55.997Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9420,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:46:57.393Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9420,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115435718.","time":"2014-08-18T11:46:57.393Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8844,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:49:35.124Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8844,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:49:36.598Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8844,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115438273.","time":"2014-08-18T11:49:36.598Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9972,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T11:59:30.859Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9972,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T11:59:32.275Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9972,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115448309.","time":"2014-08-18T11:59:32.275Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9600,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:01:35.434Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9600,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:01:37.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9600,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115452360.","time":"2014-08-18T12:01:37.225Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1640,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:06:06.070Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1640,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:06:07.535Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1640,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115456908.","time":"2014-08-18T12:06:07.535Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:07:49.358Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:07:50.751Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115458665.","time":"2014-08-18T12:07:50.752Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9808,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:09:11.977Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9808,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:09:13.584Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9808,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115460019.","time":"2014-08-18T12:09:13.584Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6292,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:11:28.895Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6292,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:11:30.335Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6292,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115462752.","time":"2014-08-18T12:11:30.336Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10224,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:14:44.216Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10224,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:14:45.631Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10224,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115466407.","time":"2014-08-18T12:14:45.632Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7776,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:17:05.652Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7776,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:17:07.143Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7776,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115468998.","time":"2014-08-18T12:17:07.144Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9796,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:18:16.623Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9796,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:18:18.450Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9796,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115470168.","time":"2014-08-18T12:18:18.451Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5416,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:23:52.354Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5416,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:23:53.785Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5416,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115475889.","time":"2014-08-18T12:23:53.786Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6012,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:27:18.246Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6012,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:27:19.678Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6012,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115479323.","time":"2014-08-18T12:27:19.678Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:28:01.894Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:28:03.358Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115479877.","time":"2014-08-18T12:28:03.358Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9944,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:28:26.088Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9944,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:28:27.570Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9944,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115480416.","time":"2014-08-18T12:28:27.570Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:28:46.601Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:28:49.244Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115480728.","time":"2014-08-18T12:28:49.244Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8736,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:46:59.526Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8736,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:47:01.031Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8736,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115499971.","time":"2014-08-18T12:47:01.031Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:50:44.564Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:50:46.702Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3916,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115504177.","time":"2014-08-18T12:50:46.702Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:54:01.075Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:54:02.545Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115507403.","time":"2014-08-18T12:54:02.545Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4844,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:55:37.476Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4844,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:55:38.983Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4844,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115509204.","time":"2014-08-18T12:55:38.983Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1256,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T12:58:10.768Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1256,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T12:58:12.221Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1256,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115511841.","time":"2014-08-18T12:58:12.222Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2868,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T13:08:26.357Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2868,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T13:08:27.971Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2868,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115525152.","time":"2014-08-18T13:08:27.972Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10080,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T13:09:35.294Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10080,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T13:09:36.776Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10080,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115526337.","time":"2014-08-18T13:09:36.777Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:07:17.602Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:07:19.095Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7760,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115977229.","time":"2014-08-18T19:07:19.095Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:13:52.046Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:13:53.466Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1115989175.","time":"2014-08-18T19:13:53.467Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6496,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:25:00.679Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6496,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:25:02.082Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6496,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116007139.","time":"2014-08-18T19:25:02.083Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5144,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:34:02.614Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5144,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:34:04.052Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5144,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116022339.","time":"2014-08-18T19:34:04.052Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9352,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:34:45.151Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9352,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:34:46.635Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9352,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116023201.","time":"2014-08-18T19:34:46.636Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10072,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:38:47.121Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10072,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:38:48.525Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10072,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116032373.","time":"2014-08-18T19:38:48.525Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:45:57.528Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:45:58.945Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1444,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116045182.","time":"2014-08-18T19:45:58.946Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2332,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:47:44.019Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2332,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:47:45.440Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2332,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116047171.","time":"2014-08-18T19:47:45.441Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6216,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:58:00.553Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6216,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:58:02.108Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6216,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116063343.","time":"2014-08-18T19:58:02.108Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8352,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T19:58:33.945Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8352,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T19:58:35.362Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8352,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116064300.","time":"2014-08-18T19:58:35.363Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3076,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:05:22.873Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3076,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:05:24.313Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3076,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116079043.","time":"2014-08-18T20:05:24.313Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:07:13.955Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:07:15.348Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8056,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116081139.","time":"2014-08-18T20:07:15.348Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8948,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:08:25.440Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8948,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:08:27.029Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8948,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116082965.","time":"2014-08-18T20:08:27.029Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:09:33.655Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:09:35.188Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116084858.","time":"2014-08-18T20:09:35.188Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6920,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:22:59.485Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6920,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:23:00.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6920,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116110101.","time":"2014-08-18T20:23:00.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9876,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:23:50.425Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9876,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:23:51.865Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9876,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116111272.","time":"2014-08-18T20:23:51.865Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:25:46.555Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:25:47.957Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116114497.","time":"2014-08-18T20:25:47.958Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8624,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:39:59.849Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8624,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:40:01.264Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8624,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116138620.","time":"2014-08-18T20:40:01.264Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6928,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T20:56:52.009Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6928,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T20:56:53.499Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6928,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116168324.","time":"2014-08-18T20:56:53.500Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3192,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T21:25:49.178Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3192,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T21:25:51.007Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3192,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116219055.","time":"2014-08-18T21:25:51.007Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T21:47:19.937Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T21:47:21.585Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8708,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116259874.","time":"2014-08-18T21:47:21.586Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7048,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T21:48:49.845Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7048,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T21:48:51.401Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7048,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116261772.","time":"2014-08-18T21:48:51.401Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8360,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-18T21:50:51.987Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8360,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-18T21:50:53.622Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8360,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1116265258.","time":"2014-08-18T21:50:53.623Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T09:08:52.474Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T09:08:54.285Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117131519.","time":"2014-08-19T09:08:54.285Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5800,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T12:30:14.982Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5800,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T12:30:18.689Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5800,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117368815.","time":"2014-08-19T12:30:18.689Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8128,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T12:36:11.153Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8128,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T12:36:13.071Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8128,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117375761.","time":"2014-08-19T12:36:13.072Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4508,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T12:39:21.391Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4508,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T12:39:23.852Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4508,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117380122.","time":"2014-08-19T12:39:23.852Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8672,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:01:51.014Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8672,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:01:52.896Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8672,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117418575.","time":"2014-08-19T13:01:52.896Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2368,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:10:59.449Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2368,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:11:01.306Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2368,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117432428.","time":"2014-08-19T13:11:01.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7792,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:28:52.782Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7792,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:28:54.529Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7792,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117458748.","time":"2014-08-19T13:28:54.530Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5428,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:35:57.434Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5428,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:35:59.300Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5428,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117468778.","time":"2014-08-19T13:35:59.301Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:37:36.972Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:37:39.162Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9040,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117470635.","time":"2014-08-19T13:37:39.162Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6820,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:38:18.705Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6820,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:38:20.507Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6820,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117471460.","time":"2014-08-19T13:38:20.507Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8208,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T13:41:13.904Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8208,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T13:41:15.788Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8208,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117475261.","time":"2014-08-19T13:41:15.788Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:29:08.155Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:29:29.667Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117908621.","time":"2014-08-19T18:29:29.667Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:29:31.105Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":50,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-19T18:29:31.107Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:31:33.284Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:31:33.284Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:32:32.590Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:32:32.590Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:33:32.521Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:33:32.522Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:34:40.060Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10572,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:34:40.060Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:35:32.358Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:35:33.981Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117917715.","time":"2014-08-19T18:35:33.982Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:37:35.544Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:37:35.547Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:38:35.335Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3908,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:38:35.336Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:47:15.349Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:47:17.030Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117934514.","time":"2014-08-19T18:47:17.030Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:48:18.904Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:48:18.906Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6420,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:49:16.900Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6420,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:49:18.637Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6420,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117937551.","time":"2014-08-19T18:49:18.638Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6420,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T18:50:21.048Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6420,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T18:50:21.050Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3104,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:55:10.389Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3104,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:55:12.077Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3104,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117945343.","time":"2014-08-19T18:55:12.078Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4480,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T18:57:24.547Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4480,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T18:57:26.342Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4480,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1117948000.","time":"2014-08-19T18:57:26.342Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T19:57:20.879Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T19:57:22.575Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118036543.","time":"2014-08-19T19:57:22.575Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T19:58:23.970Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T19:58:23.972Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7864,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:15:20.587Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4544,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:15:42.009Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4544,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T20:15:43.719Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4544,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118068677.","time":"2014-08-19T20:15:43.719Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4544,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T20:16:46.966Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4544,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T20:16:46.968Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:26:09.038Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T20:26:10.935Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118084492.","time":"2014-08-19T20:26:10.935Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-19T20:27:12.523Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9032,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-19T20:27:12.525Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10752,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:45:16.567Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10752,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T20:45:18.830Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10752,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118113144.","time":"2014-08-19T20:45:18.830Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4924,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:54:01.329Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4924,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T20:54:03.085Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4924,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118125754.","time":"2014-08-19T20:54:03.085Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8988,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T20:56:13.067Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8988,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T20:56:14.816Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8988,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118128400.","time":"2014-08-19T20:56:14.816Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:00:59.102Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:01:00.850Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118135108.","time":"2014-08-19T21:01:00.850Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:06:31.203Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:06:33.135Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1284,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118142369.","time":"2014-08-19T21:06:33.135Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10504,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:09:39.116Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10504,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:09:40.848Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10504,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118145533.","time":"2014-08-19T21:09:40.848Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10652,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:27:43.358Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10652,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:27:45.128Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10652,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118171710.","time":"2014-08-19T21:27:45.128Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:28:46.952Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:28:48.777Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6772,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118173120.","time":"2014-08-19T21:28:48.778Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9408,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T21:37:30.598Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9408,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T21:37:32.247Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9408,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118183213.","time":"2014-08-19T21:37:32.248Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3064,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T22:44:33.194Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3064,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T22:44:34.818Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3064,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118280419.","time":"2014-08-19T22:44:34.818Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7712,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:06:35.034Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7712,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:06:36.676Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7712,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118315664.","time":"2014-08-19T23:06:36.676Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7496,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:08:22.867Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7496,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:08:29.160Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7496,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118317375.","time":"2014-08-19T23:08:29.160Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10400,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:10:07.308Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10400,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:10:08.963Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10400,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118318892.","time":"2014-08-19T23:10:08.964Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:11:56.013Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:11:57.619Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1852,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118321010.","time":"2014-08-19T23:11:57.619Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10556,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:13:36.327Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10556,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:13:38.237Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10556,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118322638.","time":"2014-08-19T23:13:38.237Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4992,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:15:04.207Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4992,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:15:05.984Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4992,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118324159.","time":"2014-08-19T23:15:05.984Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11172,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:15:32.263Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11172,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:15:35.382Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11172,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118324937.","time":"2014-08-19T23:15:35.383Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4004,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:20:06.964Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4004,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:20:08.588Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4004,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118330677.","time":"2014-08-19T23:20:08.588Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8684,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:21:50.472Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8684,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:21:52.143Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8684,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118332871.","time":"2014-08-19T23:21:52.144Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:23:43.456Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:23:45.391Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7196,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118335131.","time":"2014-08-19T23:23:45.391Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3652,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:26:38.256Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3652,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:26:39.847Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3652,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118340072.","time":"2014-08-19T23:26:39.847Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1908,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:31:52.036Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1908,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:31:53.715Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1908,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118345960.","time":"2014-08-19T23:31:53.715Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10668,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:36:41.597Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10668,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:36:43.473Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":10668,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118353420.","time":"2014-08-19T23:36:43.474Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:39:09.494Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:39:11.097Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11164,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118355848.","time":"2014-08-19T23:39:11.097Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5528,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:40:35.338Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5528,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:40:36.993Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5528,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118357546.","time":"2014-08-19T23:40:36.993Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:44:36.530Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:44:38.158Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9904,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118361451.","time":"2014-08-19T23:44:38.158Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7904,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:45:28.439Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7904,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:45:30.077Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7904,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118362510.","time":"2014-08-19T23:45:30.077Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8780,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:47:14.239Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8780,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:47:16.195Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8780,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118365774.","time":"2014-08-19T23:47:16.195Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4452,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:48:44.713Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4452,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:48:46.355Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4452,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118368173.","time":"2014-08-19T23:48:46.355Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9692,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-19T23:50:09.317Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9692,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-19T23:50:10.941Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":9692,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118370002.","time":"2014-08-19T23:50:10.942Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11048,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T00:06:24.792Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11048,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T00:06:27.729Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":11048,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118392935.","time":"2014-08-20T00:06:27.729Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4532,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:09:46.238Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4532,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:09:47.899Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4532,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118959505.","time":"2014-08-20T08:09:47.899Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7544,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:13:32.949Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7544,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:13:34.622Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7544,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118964638.","time":"2014-08-20T08:13:34.623Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4724,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:15:40.937Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4724,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:15:42.626Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4724,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118967145.","time":"2014-08-20T08:15:42.627Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6864,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:17:33.813Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6864,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:17:35.490Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6864,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118969136.","time":"2014-08-20T08:17:35.490Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:19:52.980Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:19:54.568Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6236,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118972815.","time":"2014-08-20T08:19:54.569Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4188,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:22:24.380Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4188,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:22:36.547Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4188,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118977168.","time":"2014-08-20T08:22:36.547Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6044,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:37:27.233Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6044,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:37:28.913Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6044,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118996186.","time":"2014-08-20T08:37:28.913Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2124,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:40:15.658Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2124,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:40:17.341Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2124,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1118998910.","time":"2014-08-20T08:40:17.342Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2720,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:45:07.159Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2720,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:45:08.861Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":2720,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119005124.","time":"2014-08-20T08:45:08.861Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6108,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:46:53.342Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6108,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:46:54.975Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6108,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119007173.","time":"2014-08-20T08:46:54.975Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5020,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T08:48:51.511Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5020,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T08:48:53.097Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5020,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119008795.","time":"2014-08-20T08:48:53.098Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:00:10.799Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:00:12.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8168,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119019989.","time":"2014-08-20T09:00:12.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7800,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:04:53.750Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7800,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:04:55.334Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7800,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119027283.","time":"2014-08-20T09:04:55.335Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5640,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:24:04.075Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5640,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:24:05.820Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5640,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119050411.","time":"2014-08-20T09:24:05.820Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7536,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:25:48.887Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7536,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:25:50.614Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7536,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119052585.","time":"2014-08-20T09:25:50.614Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3524,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:26:56.456Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3524,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:26:58.141Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3524,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119054547.","time":"2014-08-20T09:26:58.142Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8156,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:27:58.935Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8156,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:28:01.791Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8156,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119055414.","time":"2014-08-20T09:28:01.791Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":904,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:28:56.655Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":904,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:28:58.232Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":904,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119056340.","time":"2014-08-20T09:28:58.232Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5036,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:29:23.613Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5036,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:29:25.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5036,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119056816.","time":"2014-08-20T09:29:25.307Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7580,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:30:25.007Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7580,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:30:33.309Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7580,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119058281.","time":"2014-08-20T09:30:33.309Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3100,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:41:25.620Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3100,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:41:27.211Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":3100,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119071737.","time":"2014-08-20T09:41:27.211Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7308,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:43:33.394Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7308,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:43:35.088Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7308,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119075152.","time":"2014-08-20T09:43:35.089Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6472,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:45:05.862Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6472,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:45:08.040Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6472,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119076664.","time":"2014-08-20T09:45:08.041Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4864,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:51:02.079Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4864,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:51:03.976Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4864,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119082623.","time":"2014-08-20T09:51:03.977Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4952,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:52:29.810Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4952,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:52:31.485Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4952,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119084267.","time":"2014-08-20T09:52:31.485Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4900,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T09:55:50.955Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4900,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T09:55:52.658Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4900,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119088657.","time":"2014-08-20T09:55:52.658Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7184,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:01:15.630Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7184,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:01:17.317Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7184,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119095176.","time":"2014-08-20T10:01:17.317Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7768,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:02:22.191Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7768,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:02:23.772Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7768,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119096949.","time":"2014-08-20T10:02:23.772Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:03:55.756Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:03:57.340Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7112,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119098406.","time":"2014-08-20T10:03:57.341Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6188,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:04:14.328Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6188,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:04:15.927Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6188,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119098770.","time":"2014-08-20T10:04:15.928Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7412,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:43:37.808Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7412,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:43:40.158Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7412,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119143498.","time":"2014-08-20T10:43:40.158Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6464,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:44:24.117Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6464,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:44:27.113Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6464,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119144322.","time":"2014-08-20T10:44:27.113Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:52:10.223Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:52:11.846Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4080,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119153099.","time":"2014-08-20T10:52:11.846Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7128,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:53:21.737Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7128,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:53:23.450Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7128,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119154242.","time":"2014-08-20T10:53:23.450Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6432,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:54:02.188Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6432,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:54:03.831Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6432,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119154779.","time":"2014-08-20T10:54:03.831Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7764,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:55:49.350Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7764,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:55:50.940Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7764,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119156682.","time":"2014-08-20T10:55:50.940Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4616,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T10:57:20.730Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4616,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T10:57:22.385Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4616,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119158134.","time":"2014-08-20T10:57:22.386Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T12:44:08.427Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T12:44:10.734Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119300246.","time":"2014-08-20T12:44:10.734Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"component":"collector_api","level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Calling metric_data on New Relic failed unexpectedly. Data will be held until it can be submitted:","time":"2014-08-20T12:51:10.822Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"level":30,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T12:51:10.822Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"component":"collector_api","level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Calling metric_data on New Relic failed unexpectedly. Data will be held until it can be submitted:","time":"2014-08-20T12:52:22.833Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6380,"level":30,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T12:52:22.833Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T13:14:25.617Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T13:14:27.146Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119344119.","time":"2014-08-20T13:14:27.146Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-20T13:17:28.514Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T13:17:28.516Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"component":"collector_api","level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Calling metric_data on New Relic failed unexpectedly. Data will be held until it can be submitted:","time":"2014-08-20T13:21:27.245Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"level":30,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T13:21:27.245Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"component":"collector_api","level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Calling metric_data on New Relic failed unexpectedly. Data will be held until it can be submitted:","time":"2014-08-20T13:22:27.259Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":4688,"level":30,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T13:22:27.259Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T13:25:59.375Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8012,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-20T13:26:59.732Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6328,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T13:31:07.842Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6328,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-20T13:32:08.178Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8096,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T13:32:46.899Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8096,"component":"collector_api","level":40,"msg":"No connection has been established to New Relic after 4 attempts.","time":"2014-08-20T13:33:47.270Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":8096,"level":50,"err":{"message":"getaddrinfo ENOTFOUND","name":"Error","stack":"Error: getaddrinfo ENOTFOUND\n at errnoException (dns.js:37:11)\n at Object.onanswer [as oncomplete] (dns.js:124:16)","code":"ENOTFOUND","errno":"ENOTFOUND","syscall":"getaddrinfo"},"msg":"New Relic for Node.js halted startup due to an error:","time":"2014-08-20T13:36:47.296Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5560,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-20T15:20:22.469Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5560,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-20T15:20:24.871Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5560,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1119531339.","time":"2014-08-20T15:20:24.871Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5560,"level":40,"msg":"analytics events failed to send; re-sampling","time":"2014-08-20T15:22:31.092Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5560,"level":30,"err":{"message":"Unexpected token S","name":"SyntaxError","stack":"SyntaxError: Unexpected token S\n at Object.parse (native)\n at StreamSink.parser [as callback] (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\collector\\parse-response.js:59:21)\n at StreamSink.end (C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\lib\\util\\stream-sink.js:43:8)\n at IncomingMessage.onend (_stream_readable.js:483:10)\n at IncomingMessage.g (events.js:180:16)\n at IncomingMessage.EventEmitter.emit (events.js:117:20)\n at _stream_readable.js:920:16\n at C:\\COURS-ISART\\Stage\\Prototypes\\GitProject - Juillet 2014\\Server\\node_modules\\newrelic\\node_modules\\continuation-local-storage\\node_modules\\async-listener\\glue.js:177:31\n at process._tickCallback (node.js:415:13)","statusCode":503,"laterErrors":[{}]},"msg":"Error on submission to New Relic (data held for redelivery):","time":"2014-08-20T15:22:31.108Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5504,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-21T08:25:26.268Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5504,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-21T08:25:28.537Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":5504,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1120801242.","time":"2014-08-21T08:25:28.537Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1196,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-21T08:31:55.928Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1196,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-21T08:31:57.573Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":1196,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1120808165.","time":"2014-08-21T08:31:57.573Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7264,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-21T08:41:18.140Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7264,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-21T08:41:19.915Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7264,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1120817127.","time":"2014-08-21T08:41:19.915Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7588,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-21T08:48:36.340Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7588,"component":"new_relic_response","level":30,"msg":"Reporting to: https://rpm.newrelic.com/accounts/700671/applications/4583090","time":"2014-08-21T08:48:40.023Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":7588,"component":"collector_api","level":30,"msg":"Connected to collector-103.newrelic.com:443 with agent run ID 1120824081.","time":"2014-08-21T08:48:40.023Z","v":0}
{"name":"newrelic","hostname":"Kether-Portable","pid":6172,"level":30,"msg":"Starting New Relic for Node.js connection process.","time":"2014-08-21T08:49:24.302Z","v":0}