Newer
Older
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
LineId,Label,Timestamp,Date,User,Month,Day,Time,Location,Component,PID,Content,EventId,EventTemplate
1,-,1131566461,2005.11.09,dn228,Nov,9,12:01:01,dn228/dn228,crond(pam_unix),2915,session closed for user root,E117,session closed for user root
2,-,1131566461,2005.11.09,dn228,Nov,9,12:01:01,dn228/dn228,crond(pam_unix),2915,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
3,-,1131566461,2005.11.09,dn228,Nov,9,12:01:01,dn228/dn228,crond,2916,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
4,-,1131566461,2005.11.09,dn261,Nov,9,12:01:01,dn261/dn261,crond(pam_unix),2907,session closed for user root,E117,session closed for user root
5,-,1131566461,2005.11.09,dn261,Nov,9,12:01:01,dn261/dn261,crond(pam_unix),2907,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
6,-,1131566461,2005.11.09,dn261,Nov,9,12:01:01,dn261/dn261,crond,2908,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
7,-,1131566461,2005.11.09,dn3,Nov,9,12:01:01,dn3/dn3,crond(pam_unix),2907,session closed for user root,E117,session closed for user root
8,-,1131566461,2005.11.09,dn3,Nov,9,12:01:01,dn3/dn3,crond(pam_unix),2907,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
9,-,1131566461,2005.11.09,dn3,Nov,9,12:01:01,dn3/dn3,crond,2908,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
10,-,1131566461,2005.11.09,dn596,Nov,9,12:01:01,dn596/dn596,crond(pam_unix),2727,session closed for user root,E117,session closed for user root
11,-,1131566461,2005.11.09,dn596,Nov,9,12:01:01,dn596/dn596,crond(pam_unix),2727,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
12,-,1131566461,2005.11.09,dn596,Nov,9,12:01:01,dn596/dn596,crond,2728,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
13,-,1131566461,2005.11.09,dn700,Nov,9,12:01:01,dn700/dn700,crond(pam_unix),2912,session closed for user root,E117,session closed for user root
14,-,1131566461,2005.11.09,dn700,Nov,9,12:01:01,dn700/dn700,crond(pam_unix),2912,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
15,-,1131566461,2005.11.09,dn700,Nov,9,12:01:01,dn700/dn700,crond,2913,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
16,-,1131566461,2005.11.09,dn73,Nov,9,12:01:01,dn73/dn73,crond(pam_unix),2917,session closed for user root,E117,session closed for user root
17,-,1131566461,2005.11.09,dn73,Nov,9,12:01:01,dn73/dn73,crond(pam_unix),2917,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
18,-,1131566461,2005.11.09,dn73,Nov,9,12:01:01,dn73/dn73,crond,2918,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
19,-,1131566461,2005.11.09,dn731,Nov,9,12:01:01,dn731/dn731,crond(pam_unix),2916,session closed for user root,E117,session closed for user root
20,-,1131566461,2005.11.09,dn731,Nov,9,12:01:01,dn731/dn731,crond(pam_unix),2916,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
21,-,1131566461,2005.11.09,dn731,Nov,9,12:01:01,dn731/dn731,crond,2917,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
22,-,1131566461,2005.11.09,dn754,Nov,9,12:01:01,dn754/dn754,crond(pam_unix),2913,session closed for user root,E117,session closed for user root
23,-,1131566461,2005.11.09,dn754,Nov,9,12:01:01,dn754/dn754,crond(pam_unix),2913,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
24,-,1131566461,2005.11.09,dn754,Nov,9,12:01:01,dn754/dn754,crond,2914,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
25,-,1131566461,2005.11.09,dn978,Nov,9,12:01:01,dn978/dn978,crond(pam_unix),2920,session closed for user root,E117,session closed for user root
26,-,1131566461,2005.11.09,dn978,Nov,9,12:01:01,dn978/dn978,crond(pam_unix),2920,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
27,-,1131566461,2005.11.09,dn978,Nov,9,12:01:01,dn978/dn978,crond,2921,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
28,-,1131566461,2005.11.09,eadmin1,Nov,9,12:01:01,src@eadmin1,crond(pam_unix),4307,session closed for user root,E117,session closed for user root
29,-,1131566461,2005.11.09,eadmin1,Nov,9,12:01:01,src@eadmin1,crond(pam_unix),4307,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
30,-,1131566461,2005.11.09,eadmin1,Nov,9,12:01:01,src@eadmin1,crond,4308,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
31,-,1131566461,2005.11.09,eadmin2,Nov,9,12:01:01,src@eadmin2,crond(pam_unix),12636,session closed for user root,E117,session closed for user root
32,-,1131566461,2005.11.09,eadmin2,Nov,9,12:01:01,src@eadmin2,crond(pam_unix),12636,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
33,-,1131566461,2005.11.09,eadmin2,Nov,9,12:01:01,src@eadmin2,crond,12637,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
34,-,1131566461,2005.11.09,en257,Nov,9,12:01:01,en257/en257,crond(pam_unix),8950,session closed for user root,E117,session closed for user root
35,-,1131566461,2005.11.09,en257,Nov,9,12:01:01,en257/en257,crond(pam_unix),8950,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
36,-,1131566461,2005.11.09,en257,Nov,9,12:01:01,en257/en257,crond,8951,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
37,-,1131566461,2005.11.09,en74,Nov,9,12:01:01,en74/en74,crond(pam_unix),3080,session closed for user root,E117,session closed for user root
38,-,1131566461,2005.11.09,en74,Nov,9,12:01:01,en74/en74,crond(pam_unix),3080,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
39,-,1131566461,2005.11.09,en74,Nov,9,12:01:01,en74/en74,crond,3081,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
40,-,1131566461,2005.11.09,tbird-admin1,Nov,9,12:01:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
41,-,1131566461,2005.11.09,tbird-admin1,Nov,9,12:01:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
42,-,1131566461,2005.11.09,tbird-admin1,Nov,9,12:01:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
43,-,1131566462,2005.11.09,#8#,Nov,9,12:01:02,#8#/#8#,crond(pam_unix),23469,session closed for user root,E117,session closed for user root
44,-,1131566462,2005.11.09,#8#,Nov,9,12:01:02,#8#/#8#,crond(pam_unix),23469,session opened for user root by (uid=0),E118,session opened for user root by (uid=0)
45,-,1131566462,2005.11.09,#8#,Nov,9,12:01:02,#8#/#8#,crond,23474,(root) CMD (run-parts /etc/cron.hourly),E3,(root) CMD (run-parts /etc/cron.hourly)
46,-,1131566463,2005.11.09,cn142,Nov,9,12:01:03,cn142/cn142,ntpd,7467,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
47,-,1131566463,2005.11.09,dn1021,Nov,9,12:01:03,dn1021/dn1021,ntpd,32563,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
48,-,1131566463,2005.11.09,dn736,Nov,9,12:01:03,dn736/dn736,ntpd,1119,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
49,-,1131566463,2005.11.09,tbird-admin1,Nov,9,12:01:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
50,-,1131566467,2005.11.09,cn46,Nov,9,12:01:07,cn46/cn46,ntpd,15291,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
51,-,1131566467,2005.11.09,tbird-admin1,Nov,9,12:01:07,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
52,-,1131566467,2005.11.09,tbird-admin1,Nov,9,12:01:07,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
53,-,1131566468,2005.11.09,tbird-admin1,Nov,9,12:01:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
54,-,1131566470,2005.11.09,bn441,Nov,9,12:01:10,bn441/bn441,ntpd,28489,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
55,-,1131566470,2005.11.09,cn661,Nov,9,12:01:10,cn661/cn661,ntpd,18505,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
56,-,1131566470,2005.11.09,tbird-sm1,Nov,9,12:01:10,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
57,-,1131566471,2005.11.09,dn393,Nov,9,12:01:11,dn393/dn393,ntpd,4696,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
58,-,1131566472,2005.11.09,tbird-admin1,Nov,9,12:01:12,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
59,-,1131566473,2005.11.09,cn379,Nov,9,12:01:13,cn379/cn379,ntpd,10573,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
60,-,1131566473,2005.11.09,cn733,Nov,9,12:01:13,cn733/cn733,ntpd,27716,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
61,-,1131566473,2005.11.09,tbird-admin1,Nov,9,12:01:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
62,-,1131566474,2005.11.09,cn925,Nov,9,12:01:14,cn925/cn925,ntpd,29072,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
63,-,1131566474,2005.11.09,tbird-sm1,Nov,9,12:01:14,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
64,-,1131566474,2005.11.09,tbird-sm1,Nov,9,12:01:14,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
65,-,1131566475,2005.11.09,tbird-admin1,Nov,9,12:01:15,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
66,-,1131566475,2005.11.09,tbird-admin1,Nov,9,12:01:15,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
67,-,1131566476,2005.11.09,tbird-admin1,Nov,9,12:01:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
68,-,1131566477,2005.11.09,cn543,Nov,9,12:01:17,cn543/cn543,ntpd,13785,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
69,-,1131566477,2005.11.09,tbird-admin1,Nov,9,12:01:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
70,-,1131566477,2005.11.09,tbird-admin1,Nov,9,12:01:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
71,-,1131566478,2005.11.09,cn551,Nov,9,12:01:18,cn551/cn551,ntpd,15308,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
72,-,1131566478,2005.11.09,dn360,Nov,9,12:01:18,dn360/dn360,ntpd,30984,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
73,-,1131566478,2005.11.09,tbird-admin1,Nov,9,12:01:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
74,-,1131566479,2005.11.09,#8#,Nov,9,12:01:19,#8#/#8#,sshd,19023,Local disconnected: Connection closed.,E67,Local disconnected: Connection closed.
75,-,1131566479,2005.11.09,#8#,Nov,9,12:01:19,#8#/#8#,sshd,19023,connection lost: 'Connection closed.',E30,connection lost: 'Connection closed.'
76,-,1131566479,2005.11.09,bn431,Nov,9,12:01:19,bn431/bn431,ntpd,28723,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
77,-,1131566480,2005.11.09,dn77,Nov,9,12:01:20,dn77/dn77,ntpd,9978,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
78,-,1131566480,2005.11.09,tbird-admin1,Nov,9,12:01:20,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
79,-,1131566482,2005.11.09,tbird-admin1,Nov,9,12:01:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
80,-,1131566482,2005.11.09,tbird-admin1,Nov,9,12:01:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
81,-,1131566482,2005.11.09,tbird-admin1,Nov,9,12:01:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
82,-,1131566482,2005.11.09,tbird-admin1,Nov,9,12:01:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
83,-,1131566483,2005.11.09,tbird-admin1,Nov,9,12:01:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
84,-,1131566484,2005.11.09,cn931,Nov,9,12:01:24,cn931/cn931,ntpd,29054,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
85,-,1131566484,2005.11.09,tbird-sm1,Nov,9,12:01:24,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
86,-,1131566485,2005.11.09,tbird-admin1,Nov,9,12:01:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
87,-,1131566486,2005.11.09,tbird-admin1,Nov,9,12:01:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
88,-,1131566486,2005.11.09,tbird-admin1,Nov,9,12:01:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
89,-,1131566486,2005.11.09,tbird-admin1,Nov,9,12:01:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
90,-,1131566487,2005.11.09,tbird-admin1,Nov,9,12:01:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
91,-,1131566488,2005.11.09,dn557,Nov,9,12:01:28,dn557/dn557,ntpd,31472,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
92,-,1131566488,2005.11.09,dn943,Nov,9,12:01:28,dn943/dn943,ntpd,3570,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
93,-,1131566488,2005.11.09,tbird-admin1,Nov,9,12:01:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
94,-,1131566488,2005.11.09,tbird-sm1,Nov,9,12:01:28,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
95,-,1131566488,2005.11.09,tbird-sm1,Nov,9,12:01:28,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
96,-,1131566490,2005.11.09,eadmin1,Nov,9,12:01:30,src@eadmin1,sendmail,4306,unable to qualify my own domain name (eadmin1) -- using short name,E131,unable to qualify my own domain name (<*>) -- using short name
97,-,1131566491,2005.11.09,eadmin1,Nov,9,12:01:31,src@eadmin1,crond(pam_unix),1205,session closed for user root,E117,session closed for user root
98,-,1131566491,2005.11.09,eadmin1,Nov,9,12:01:31,src@eadmin1,sendmail,4306,"jA9J1UvC004306: from=root, size=629060, class=0, nrcpts=1, msgid=<200511091901.jA9J1UvC004306@eadmin1>, relay=#7#@localhost",E15,"<*>: from=root, size=<*>, class=<*>, nrcpts=<*>, msgid=<<*>>, relay=#<*>#@localhost"
99,-,1131566491,2005.11.09,eadmin1,Nov,9,12:01:31,src@eadmin1,sendmail,4306,"jA9J1UvC004306: to=root, ctladdr=root (0/0), delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=659060, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]",E16,"<*>: to=root, ctladdr=root (0/0), delay=<*>:<*>:<*>, xdelay=<*>:<*>:<*>, mailer=relay, pri=<*>, relay=[<*>] [<*>], dsn=<*>.<*>.<*>, stat=Deferred: Connection refused by [<*>]"
100,-,1131566491,2005.11.09,tbird-admin1,Nov,9,12:01:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
101,-,1131566492,2005.11.09,badmin1,Nov,9,12:01:32,src@badmin1,sendmail,11176,unable to qualify my own domain name (badmin1) -- using short name,E131,unable to qualify my own domain name (<*>) -- using short name
102,-,1131566492,2005.11.09,cadmin1,Nov,9,12:01:32,src@cadmin1,sendmail,19391,unable to qualify my own domain name (cadmin1) -- using short name,E131,unable to qualify my own domain name (<*>) -- using short name
103,-,1131566492,2005.11.09,cn615,Nov,9,12:01:32,cn615/cn615,ntpd,18517,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
104,-,1131566492,2005.11.09,dadmin1,Nov,9,12:01:32,src@dadmin1,sendmail,24258,unable to qualify my own domain name (dadmin1) -- using short name,E131,unable to qualify my own domain name (<*>) -- using short name
105,-,1131566492,2005.11.09,tbird-admin1,Nov,9,12:01:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
106,-,1131566493,2005.11.09,cn566,Nov,9,12:01:33,cn566/cn566,ntpd,18010,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
107,-,1131566493,2005.11.09,tbird-admin1,Nov,9,12:01:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
108,-,1131566494,2005.11.09,cadmin1,Nov,9,12:01:34,src@cadmin1,crond(pam_unix),16315,session closed for user root,E117,session closed for user root
109,-,1131566494,2005.11.09,cadmin1,Nov,9,12:01:34,src@cadmin1,sendmail,19391,"jA9J1Wd7019391: from=root, size=1594553, class=0, nrcpts=1, msgid=<200511091901.jA9J1Wd7019391@cadmin1>, relay=#7#@localhost",E15,"<*>: from=root, size=<*>, class=<*>, nrcpts=<*>, msgid=<<*>>, relay=#<*>#@localhost"
110,-,1131566494,2005.11.09,cadmin1,Nov,9,12:01:34,src@cadmin1,sendmail,19391,"jA9J1Wd7019391: to=root, ctladdr=root (0/0), delay=00:00:02, xdelay=00:00:00, mailer=relay, pri=1624553, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]",E16,"<*>: to=root, ctladdr=root (0/0), delay=<*>:<*>:<*>, xdelay=<*>:<*>:<*>, mailer=relay, pri=<*>, relay=[<*>] [<*>], dsn=<*>.<*>.<*>, stat=Deferred: Connection refused by [<*>]"
111,-,1131566494,2005.11.09,cn728,Nov,9,12:01:34,cn728/cn728,ntpd,28511,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
112,-,1131566494,2005.11.09,tbird-admin1,Nov,9,12:01:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
113,-,1131566495,2005.11.09,badmin1,Nov,9,12:01:35,src@badmin1,crond(pam_unix),8099,session closed for user root,E117,session closed for user root
114,-,1131566495,2005.11.09,badmin1,Nov,9,12:01:35,src@badmin1,sendmail,11176,"jA9J1WSU011176: from=root, size=1593894, class=0, nrcpts=1, msgid=<200511091901.jA9J1WSU011176@badmin1>, relay=#7#@localhost",E15,"<*>: from=root, size=<*>, class=<*>, nrcpts=<*>, msgid=<<*>>, relay=#<*>#@localhost"
115,-,1131566495,2005.11.09,badmin1,Nov,9,12:01:35,src@badmin1,sendmail,11176,"jA9J1WSU011176: to=root, ctladdr=root (0/0), delay=00:00:03, xdelay=00:00:00, mailer=relay, pri=1623894, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]",E16,"<*>: to=root, ctladdr=root (0/0), delay=<*>:<*>:<*>, xdelay=<*>:<*>:<*>, mailer=relay, pri=<*>, relay=[<*>] [<*>], dsn=<*>.<*>.<*>, stat=Deferred: Connection refused by [<*>]"
116,-,1131566495,2005.11.09,dadmin1,Nov,9,12:01:35,src@dadmin1,crond(pam_unix),21181,session closed for user root,E117,session closed for user root
117,-,1131566495,2005.11.09,dadmin1,Nov,9,12:01:35,src@dadmin1,sendmail,24258,"jA9J1WFE024258: from=root, size=1597080, class=0, nrcpts=1, msgid=<200511091901.jA9J1WFE024258@dadmin1>, relay=#7#@localhost",E15,"<*>: from=root, size=<*>, class=<*>, nrcpts=<*>, msgid=<<*>>, relay=#<*>#@localhost"
118,-,1131566495,2005.11.09,dadmin1,Nov,9,12:01:35,src@dadmin1,sendmail,24258,"jA9J1WFE024258: to=root, ctladdr=root (0/0), delay=00:00:03, xdelay=00:00:00, mailer=relay, pri=1627080, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]",E16,"<*>: to=root, ctladdr=root (0/0), delay=<*>:<*>:<*>, xdelay=<*>:<*>:<*>, mailer=relay, pri=<*>, relay=[<*>] [<*>], dsn=<*>.<*>.<*>, stat=Deferred: Connection refused by [<*>]"
119,-,1131566495,2005.11.09,tbird-admin1,Nov,9,12:01:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
120,-,1131566496,2005.11.09,cn980,Nov,9,12:01:36,cn980/cn980,ntpd,19676,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
121,-,1131566497,2005.11.09,tbird-admin1,Nov,9,12:01:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
122,-,1131566497,2005.11.09,tbird-admin1,Nov,9,12:01:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
123,-,1131566498,2005.11.09,tbird-admin1,Nov,9,12:01:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
124,-,1131566498,2005.11.09,tbird-sm1,Nov,9,12:01:38,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
125,-,1131566499,2005.11.09,aadmin1,Nov,9,12:01:39,src@aadmin1,sendmail,16560,unable to qualify my own domain name (aadmin1) -- using short name,E131,unable to qualify my own domain name (<*>) -- using short name
126,-,1131566500,2005.11.09,cn822,Nov,9,12:01:40,cn822/cn822,ntpd,28661,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
127,-,1131566501,2005.11.09,aadmin1,Nov,9,12:01:41,src@aadmin1,crond(pam_unix),13476,session closed for user root,E117,session closed for user root
128,-,1131566501,2005.11.09,aadmin1,Nov,9,12:01:41,src@aadmin1,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1,E36,DHCPDISCOVER from <*> via eth1
129,-,1131566501,2005.11.09,aadmin1,Nov,9,12:01:41,src@aadmin1,dhcpd,,DHCPOFFER on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E38,DHCPOFFER on <*> to <*> via eth1
130,-,1131566501,2005.11.09,aadmin1,Nov,9,12:01:41,src@aadmin1,sendmail,16560,"jA9J1dQ7016560: from=root, size=1595423, class=0, nrcpts=1, msgid=<200511091901.jA9J1dQ7016560@aadmin1>, relay=#7#@localhost",E15,"<*>: from=root, size=<*>, class=<*>, nrcpts=<*>, msgid=<<*>>, relay=#<*>#@localhost"
131,-,1131566501,2005.11.09,aadmin1,Nov,9,12:01:41,src@aadmin1,sendmail,16560,"jA9J1dQ7016560: to=root, ctladdr=root (0/0), delay=00:00:02, xdelay=00:00:00, mailer=relay, pri=1625423, relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]",E16,"<*>: to=root, ctladdr=root (0/0), delay=<*>:<*>:<*>, xdelay=<*>:<*>:<*>, mailer=relay, pri=<*>, relay=[<*>] [<*>], dsn=<*>.<*>.<*>, stat=Deferred: Connection refused by [<*>]"
132,-,1131566501,2005.11.09,aadmin2,Nov,9,12:01:41,src@aadmin2,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
133,-,1131566501,2005.11.09,aadmin3,Nov,9,12:01:41,src@aadmin3,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
134,-,1131566501,2005.11.09,aadmin4,Nov,9,12:01:41,src@aadmin4,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
135,-,1131566501,2005.11.09,tbird-admin1,Nov,9,12:01:41,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
136,-,1131566502,2005.11.09,bn999,Nov,9,12:01:42,bn999/bn999,ntpd,14515,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
137,-,1131566502,2005.11.09,tbird-sm1,Nov,9,12:01:42,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
138,-,1131566502,2005.11.09,tbird-sm1,Nov,9,12:01:42,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
139,-,1131566503,2005.11.09,aadmin1,Nov,9,12:01:43,src@aadmin1,dhcpd,,DHCPACK on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E35,DHCPACK on <*> to <*> via eth1
140,-,1131566503,2005.11.09,aadmin1,Nov,9,12:01:43,src@aadmin1,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1,E39,DHCPREQUEST for <*> (<*>) from <*> via eth1
141,-,1131566503,2005.11.09,aadmin1,Nov,9,12:01:43,src@aadmin1,xinetd,18274,START: tftp pid=16563 from=10.100.4.251,E119,START: tftp pid=<*> from=<*>
142,-,1131566503,2005.11.09,aadmin2,Nov,9,12:01:43,src@aadmin2,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
143,-,1131566503,2005.11.09,aadmin3,Nov,9,12:01:43,src@aadmin3,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
144,-,1131566503,2005.11.09,aadmin4,Nov,9,12:01:43,src@aadmin4,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
145,-,1131566503,2005.11.09,dn77,Nov,9,12:01:43,dn77/dn77,ntpd,9978,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
146,-,1131566503,2005.11.09,tbird-admin1,Nov,9,12:01:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
147,-,1131566506,2005.11.09,cn296,Nov,9,12:01:46,cn296/cn296,ntpd,24199,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
148,-,1131566506,2005.11.09,tbird-admin1,Nov,9,12:01:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
149,-,1131566507,2005.11.09,tbird-admin1,Nov,9,12:01:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
150,-,1131566507,2005.11.09,tbird-admin1,Nov,9,12:01:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
151,-,1131566508,2005.11.09,dn233,Nov,9,12:01:48,dn233/dn233,ntpd,11151,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
152,-,1131566509,2005.11.09,bn999,Nov,9,12:01:49,bn999/bn999,ntpd,14515,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
153,-,1131566509,2005.11.09,tbird-admin1,Nov,9,12:01:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
154,-,1131566509,2005.11.09,tbird-admin1,Nov,9,12:01:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
155,-,1131566510,2005.11.09,bn132,Nov,9,12:01:50,bn132/bn132,ntpd,22316,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
156,-,1131566510,2005.11.09,bn874,Nov,9,12:01:50,bn874/bn874,ntpd,25657,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
157,-,1131566510,2005.11.09,bn946,Nov,9,12:01:50,bn946/bn946,ntpd,15562,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
158,-,1131566510,2005.11.09,tbird-admin1,Nov,9,12:01:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
159,-,1131566510,2005.11.09,tbird-admin1,Nov,9,12:01:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
160,-,1131566511,2005.11.09,tbird-admin1,Nov,9,12:01:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
161,-,1131566512,2005.11.09,tbird-admin1,Nov,9,12:01:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
162,-,1131566512,2005.11.09,tbird-sm1,Nov,9,12:01:52,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
163,-,1131566514,2005.11.09,tbird-admin1,Nov,9,12:01:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
164,-,1131566515,2005.11.09,cn633,Nov,9,12:01:55,cn633/cn633,ntpd,18665,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
165,-,1131566516,2005.11.09,tbird-admin1,Nov,9,12:01:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
166,-,1131566516,2005.11.09,tbird-admin1,Nov,9,12:01:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
167,-,1131566516,2005.11.09,tbird-admin1,Nov,9,12:01:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
168,-,1131566516,2005.11.09,tbird-sm1,Nov,9,12:01:56,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
169,-,1131566516,2005.11.09,tbird-sm1,Nov,9,12:01:56,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
170,-,1131566517,2005.11.09,bn825,Nov,9,12:01:57,bn825/bn825,ntpd,23041,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
171,-,1131566517,2005.11.09,tbird-admin1,Nov,9,12:01:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
172,-,1131566517,2005.11.09,tbird-admin1,Nov,9,12:01:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
173,-,1131566517,2005.11.09,tbird-admin1,Nov,9,12:01:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
174,-,1131566517,2005.11.09,tbird-admin1,Nov,9,12:01:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
175,-,1131566518,2005.11.09,cn808,Nov,9,12:01:58,cn808/cn808,ntpd,28601,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
176,-,1131566518,2005.11.09,cn887,Nov,9,12:01:58,cn887/cn887,ntpd,28964,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
177,-,1131566518,2005.11.09,dn338,Nov,9,12:01:58,dn338/dn338,ntpd,31526,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
178,-,1131566518,2005.11.09,tbird-admin1,Nov,9,12:01:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
179,-,1131566519,2005.11.09,cn763,Nov,9,12:01:59,cn763/cn763,ntpd,27810,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
180,-,1131566519,2005.11.09,cn921,Nov,9,12:01:59,cn921/cn921,ntpd,28851,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
181,-,1131566519,2005.11.09,tbird-admin1,Nov,9,12:01:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
182,-,1131566520,2005.11.09,bn780,Nov,9,12:02:00,bn780/bn780,ntpd,24873,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
183,-,1131566521,2005.11.09,tbird-admin1,Nov,9,12:02:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
184,-,1131566522,2005.11.09,tbird-admin1,Nov,9,12:02:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
185,-,1131566522,2005.11.09,tbird-admin1,Nov,9,12:02:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
186,-,1131566523,2005.11.09,dn233,Nov,9,12:02:03,dn233/dn233,ntpd,11151,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
187,-,1131566523,2005.11.09,tbird-admin1,Nov,9,12:02:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
188,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPACK on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E35,DHCPACK on <*> to <*> via eth1
189,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1,E36,DHCPDISCOVER from <*> via eth1
190,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1,E36,DHCPDISCOVER from <*> via eth1
191,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPOFFER on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E38,DHCPOFFER on <*> to <*> via eth1
192,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPOFFER on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E38,DHCPOFFER on <*> to <*> via eth1
193,-,1131566525,2005.11.09,aadmin1,Nov,9,12:02:05,src@aadmin1,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1,E39,DHCPREQUEST for <*> (<*>) from <*> via eth1
194,-,1131566525,2005.11.09,aadmin2,Nov,9,12:02:05,src@aadmin2,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
195,-,1131566525,2005.11.09,aadmin2,Nov,9,12:02:05,src@aadmin2,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
196,-,1131566525,2005.11.09,aadmin2,Nov,9,12:02:05,src@aadmin2,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
197,-,1131566525,2005.11.09,aadmin3,Nov,9,12:02:05,src@aadmin3,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
198,-,1131566525,2005.11.09,aadmin3,Nov,9,12:02:05,src@aadmin3,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
199,-,1131566525,2005.11.09,aadmin3,Nov,9,12:02:05,src@aadmin3,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
200,-,1131566525,2005.11.09,aadmin4,Nov,9,12:02:05,src@aadmin4,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
201,-,1131566525,2005.11.09,aadmin4,Nov,9,12:02:05,src@aadmin4,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
202,-,1131566525,2005.11.09,aadmin4,Nov,9,12:02:05,src@aadmin4,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
203,-,1131566526,2005.11.09,bn317,Nov,9,12:02:06,bn317/bn317,ntpd,28385,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
204,-,1131566526,2005.11.09,tbird-admin1,Nov,9,12:02:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
205,-,1131566526,2005.11.09,tbird-sm1,Nov,9,12:02:06,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
206,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPACK on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E35,DHCPACK on <*> to <*> via eth1
207,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1,E36,DHCPDISCOVER from <*> via eth1
208,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1,E36,DHCPDISCOVER from <*> via eth1
209,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPOFFER on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E38,DHCPOFFER on <*> to <*> via eth1
210,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPOFFER on 10.100.4.251 to 00:11:43:e3:ba:c3 via eth1,E38,DHCPOFFER on <*> to <*> via eth1
211,-,1131566527,2005.11.09,aadmin1,Nov,9,12:02:07,src@aadmin1,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1,E39,DHCPREQUEST for <*> (<*>) from <*> via eth1
212,-,1131566527,2005.11.09,aadmin2,Nov,9,12:02:07,src@aadmin2,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
213,-,1131566527,2005.11.09,aadmin2,Nov,9,12:02:07,src@aadmin2,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
214,-,1131566527,2005.11.09,aadmin2,Nov,9,12:02:07,src@aadmin2,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
215,-,1131566527,2005.11.09,aadmin3,Nov,9,12:02:07,src@aadmin3,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
216,-,1131566527,2005.11.09,aadmin3,Nov,9,12:02:07,src@aadmin3,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
217,-,1131566527,2005.11.09,aadmin3,Nov,9,12:02:07,src@aadmin3,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
218,-,1131566527,2005.11.09,aadmin4,Nov,9,12:02:07,src@aadmin4,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
219,-,1131566527,2005.11.09,aadmin4,Nov,9,12:02:07,src@aadmin4,dhcpd,,DHCPDISCOVER from 00:11:43:e3:ba:c3 via eth1: network A_net: no free leases,E37,DHCPDISCOVER from <*> via eth1: network A_net: no free leases
220,-,1131566527,2005.11.09,aadmin4,Nov,9,12:02:07,src@aadmin4,dhcpd,,DHCPREQUEST for 10.100.4.251 (10.100.0.250) from 00:11:43:e3:ba:c3 via eth1: unknown lease 10.100.4.251.,E40,DHCPREQUEST for <*> (<*>) from <*> via eth1: unknown lease <*>.
221,-,1131566528,2005.11.09,cn330,Nov,9,12:02:08,cn330/cn330,ntpd,23300,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
222,-,1131566529,2005.11.09,dn345,Nov,9,12:02:09,dn345/dn345,ntpd,32322,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
223,-,1131566529,2005.11.09,tbird-admin1,Nov,9,12:02:09,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
224,-,1131566530,2005.11.09,bn837,Nov,9,12:02:10,bn837/bn837,ntpd,21755,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
225,-,1131566530,2005.11.09,tbird-sm1,Nov,9,12:02:10,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
226,-,1131566530,2005.11.09,tbird-sm1,Nov,9,12:02:10,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
227,-,1131566532,2005.11.09,bn82,Nov,9,12:02:12,bn82/bn82,ntpd,10804,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
228,-,1131566533,2005.11.09,tbird-admin1,Nov,9,12:02:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
229,-,1131566533,2005.11.09,tbird-admin1,Nov,9,12:02:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
230,-,1131566534,2005.11.09,tbird-admin1,Nov,9,12:02:14,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
231,-,1131566535,2005.11.09,cn179,Nov,9,12:02:15,cn179/cn179,ntpd,9791,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
232,-,1131566535,2005.11.09,tbird-admin1,Nov,9,12:02:15,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
233,-,1131566536,2005.11.09,cn220,Nov,9,12:02:16,cn220/cn220,ntpd,10886,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
234,-,1131566537,2005.11.09,tbird-admin1,Nov,9,12:02:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
235,-,1131566537,2005.11.09,tbird-admin1,Nov,9,12:02:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
236,-,1131566538,2005.11.09,tbird-admin1,Nov,9,12:02:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
237,-,1131566539,2005.11.09,cn285,Nov,9,12:02:19,cn285/cn285,ntpd,26823,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
238,-,1131566539,2005.11.09,tbird-admin1,Nov,9,12:02:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
239,-,1131566540,2005.11.09,tbird-admin1,Nov,9,12:02:20,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
240,-,1131566540,2005.11.09,tbird-admin1,Nov,9,12:02:20,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
241,-,1131566540,2005.11.09,tbird-sm1,Nov,9,12:02:20,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
242,-,1131566541,2005.11.09,tbird-admin1,Nov,9,12:02:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
243,-,1131566542,2005.11.09,dn752,Nov,9,12:02:22,dn752/dn752,ntpd,31276,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
244,-,1131566542,2005.11.09,tbird-admin1,Nov,9,12:02:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
245,-,1131566542,2005.11.09,tbird-admin1,Nov,9,12:02:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
246,-,1131566543,2005.11.09,cn795,Nov,9,12:02:23,cn795/cn795,ntpd,28751,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
247,-,1131566544,2005.11.09,cn327,Nov,9,12:02:24,cn327/cn327,ntpd,23021,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
248,-,1131566544,2005.11.09,tbird-sm1,Nov,9,12:02:24,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
249,-,1131566544,2005.11.09,tbird-sm1,Nov,9,12:02:24,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
250,-,1131566545,2005.11.09,tbird-admin1,Nov,9,12:02:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
251,-,1131566546,2005.11.09,bn71,Nov,9,12:02:26,bn71/bn71,ntpd,22508,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
252,-,1131566546,2005.11.09,tbird-admin1,Nov,9,12:02:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
253,-,1131566547,2005.11.09,tbird-admin1,Nov,9,12:02:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
254,-,1131566547,2005.11.09,tbird-admin1,Nov,9,12:02:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
255,-,1131566547,2005.11.09,tbird-admin1,Nov,9,12:02:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
256,-,1131566548,2005.11.09,cn209,Nov,9,12:02:28,cn209/cn209,ntpd,19303,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
257,-,1131566548,2005.11.09,tbird-admin1,Nov,9,12:02:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
258,-,1131566548,2005.11.09,tbird-admin1,Nov,9,12:02:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
259,-,1131566549,2005.11.09,tbird-admin1,Nov,9,12:02:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
260,-,1131566551,2005.11.09,tbird-admin1,Nov,9,12:02:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
261,-,1131566552,2005.11.09,tbird-admin1,Nov,9,12:02:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
262,-,1131566553,2005.11.09,bn346,Nov,9,12:02:33,bn346/bn346,ntpd,28647,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
263,-,1131566553,2005.11.09,dn907,Nov,9,12:02:33,dn907/dn907,ntpd,3975,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
264,-,1131566554,2005.11.09,tbird-admin1,Nov,9,12:02:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
265,-,1131566554,2005.11.09,tbird-admin1,Nov,9,12:02:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
266,-,1131566554,2005.11.09,tbird-admin1,Nov,9,12:02:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
267,-,1131566554,2005.11.09,tbird-sm1,Nov,9,12:02:34,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
268,-,1131566556,2005.11.09,cn737,Nov,9,12:02:36,cn737/cn737,ntpd,29331,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
269,-,1131566556,2005.11.09,tbird-admin1,Nov,9,12:02:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
270,-,1131566558,2005.11.09,cn697,Nov,9,12:02:38,cn697/cn697,ntpd,19486,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
271,-,1131566558,2005.11.09,tbird-sm1,Nov,9,12:02:38,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
272,-,1131566558,2005.11.09,tbird-sm1,Nov,9,12:02:38,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
273,-,1131566560,2005.11.09,cn921,Nov,9,12:02:40,cn921/cn921,ntpd,28851,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
274,-,1131566561,2005.11.09,cn250,Nov,9,12:02:41,cn250/cn250,ntpd,11202,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
275,-,1131566562,2005.11.09,bn413,Nov,9,12:02:42,bn413/bn413,ntpd,29462,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
276,-,1131566562,2005.11.09,bn645,Nov,9,12:02:42,bn645/bn645,ntpd,23720,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
277,-,1131566562,2005.11.09,tbird-admin1,Nov,9,12:02:42,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
278,-,1131566563,2005.11.09,tbird-admin1,Nov,9,12:02:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
279,-,1131566564,2005.11.09,tbird-admin1,Nov,9,12:02:44,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
280,-,1131566566,2005.11.09,bn506,Nov,9,12:02:46,bn506/bn506,ntpd,28888,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
281,-,1131566567,2005.11.09,bn112,Nov,9,12:02:47,bn112/bn112,ntpd,22405,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
282,-,1131566567,2005.11.09,tbird-admin1,Nov,9,12:02:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
283,-,1131566567,2005.11.09,tbird-admin1,Nov,9,12:02:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
284,-,1131566568,2005.11.09,cn41,Nov,9,12:02:48,cn41/cn41,ntpd,16857,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
285,-,1131566568,2005.11.09,tbird-admin1,Nov,9,12:02:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
286,-,1131566568,2005.11.09,tbird-admin1,Nov,9,12:02:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
287,-,1131566568,2005.11.09,tbird-admin1,Nov,9,12:02:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
288,-,1131566568,2005.11.09,tbird-sm1,Nov,9,12:02:48,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
289,-,1131566569,2005.11.09,tbird-admin1,Nov,9,12:02:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
290,-,1131566570,2005.11.09,cn738,Nov,9,12:02:50,cn738/cn738,ntpd,29056,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
291,-,1131566570,2005.11.09,tbird-admin1,Nov,9,12:02:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
292,-,1131566572,2005.11.09,cn661,Nov,9,12:02:52,cn661/cn661,ntpd,18505,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
293,-,1131566572,2005.11.09,tbird-admin1,Nov,9,12:02:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
294,-,1131566572,2005.11.09,tbird-sm1,Nov,9,12:02:52,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
295,-,1131566572,2005.11.09,tbird-sm1,Nov,9,12:02:52,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
296,-,1131566573,2005.11.09,tbird-admin1,Nov,9,12:02:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
297,-,1131566574,2005.11.09,tbird-admin1,Nov,9,12:02:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
298,-,1131566574,2005.11.09,tbird-admin1,Nov,9,12:02:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
299,-,1131566575,2005.11.09,tbird-admin1,Nov,9,12:02:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
300,-,1131566575,2005.11.09,tbird-admin1,Nov,9,12:02:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
301,-,1131566576,2005.11.09,bn661,Nov,9,12:02:56,bn661/bn661,ntpd,23903,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
302,-,1131566576,2005.11.09,tbird-admin1,Nov,9,12:02:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
303,-,1131566577,2005.11.09,cn275,Nov,9,12:02:57,cn275/cn275,ntpd,9831,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
304,-,1131566577,2005.11.09,cn990,Nov,9,12:02:57,cn990/cn990,ntpd,18995,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
305,-,1131566578,2005.11.09,tbird-admin1,Nov,9,12:02:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
306,-,1131566578,2005.11.09,tbird-admin1,Nov,9,12:02:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
307,-,1131566578,2005.11.09,tbird-admin1,Nov,9,12:02:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
308,-,1131566579,2005.11.09,cn692,Nov,9,12:02:59,cn692/cn692,ntpd,17144,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
309,-,1131566580,2005.11.09,bn282,Nov,9,12:03:00,bn282/bn282,ntpd,9064,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
310,-,1131566580,2005.11.09,tbird-admin1,Nov,9,12:03:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
311,-,1131566580,2005.11.09,tbird-admin1,Nov,9,12:03:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
312,-,1131566580,2005.11.09,tbird-admin1,Nov,9,12:03:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
313,-,1131566581,2005.11.09,cn321,Nov,9,12:03:01,cn321/cn321,ntpd,23556,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
314,-,1131566581,2005.11.09,tbird-admin1,Nov,9,12:03:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
315,-,1131566582,2005.11.09,tbird-sm1,Nov,9,12:03:02,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
316,-,1131566583,2005.11.09,tbird-admin1,Nov,9,12:03:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
317,-,1131566584,2005.11.09,tbird-admin1,Nov,9,12:03:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
318,-,1131566585,2005.11.09,cn487,Nov,9,12:03:05,cn487/cn487,ntpd,15545,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
319,-,1131566585,2005.11.09,cn841,Nov,9,12:03:05,cn841/cn841,ntpd,28103,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
320,-,1131566586,2005.11.09,tbird-sm1,Nov,9,12:03:06,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
321,-,1131566586,2005.11.09,tbird-sm1,Nov,9,12:03:06,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
322,-,1131566587,2005.11.09,tbird-admin1,Nov,9,12:03:07,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
323,-,1131566587,2005.11.09,tbird-admin1,Nov,9,12:03:07,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
324,-,1131566588,2005.11.09,tbird-admin1,Nov,9,12:03:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
325,-,1131566590,2005.11.09,bn468,Nov,9,12:03:10,bn468/bn468,ntpd,29128,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
326,-,1131566592,2005.11.09,tbird-admin1,Nov,9,12:03:12,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
327,-,1131566593,2005.11.09,tbird-admin1,Nov,9,12:03:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
328,-,1131566593,2005.11.09,tbird-admin1,Nov,9,12:03:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
329,-,1131566594,2005.11.09,tbird-admin1,Nov,9,12:03:14,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
330,-,1131566596,2005.11.09,bn430,Nov,9,12:03:16,bn430/bn430,ntpd,29622,"synchronized to 10.100.14.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
331,-,1131566596,2005.11.09,tbird-admin1,Nov,9,12:03:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
332,-,1131566596,2005.11.09,tbird-sm1,Nov,9,12:03:16,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
333,-,1131566598,2005.11.09,cn568,Nov,9,12:03:18,cn568/cn568,ntpd,17942,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
334,-,1131566598,2005.11.09,tbird-admin1,Nov,9,12:03:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
335,-,1131566598,2005.11.09,tbird-admin1,Nov,9,12:03:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
336,-,1131566599,2005.11.09,tbird-admin1,Nov,9,12:03:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
337,-,1131566600,2005.11.09,tbird-sm1,Nov,9,12:03:20,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
338,-,1131566600,2005.11.09,tbird-sm1,Nov,9,12:03:20,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
339,-,1131566603,2005.11.09,tbird-admin1,Nov,9,12:03:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
340,-,1131566603,2005.11.09,tbird-admin1,Nov,9,12:03:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
341,-,1131566603,2005.11.09,tbird-admin1,Nov,9,12:03:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
342,-,1131566603,2005.11.09,tbird-admin1,Nov,9,12:03:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
343,-,1131566605,2005.11.09,tbird-admin1,Nov,9,12:03:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
344,-,1131566605,2005.11.09,tbird-admin1,Nov,9,12:03:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
345,-,1131566605,2005.11.09,tbird-admin1,Nov,9,12:03:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
346,-,1131566606,2005.11.09,cn245,Nov,9,12:03:26,cn245/cn245,ntpd,31779,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
347,-,1131566606,2005.11.09,tbird-admin1,Nov,9,12:03:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
348,-,1131566606,2005.11.09,tbird-admin1,Nov,9,12:03:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
349,-,1131566609,2005.11.09,bn453,Nov,9,12:03:29,bn453/bn453,ntpd,30219,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
350,-,1131566609,2005.11.09,tbird-admin1,Nov,9,12:03:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
351,-,1131566609,2005.11.09,tbird-admin1,Nov,9,12:03:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
352,-,1131566610,2005.11.09,bn782,Nov,9,12:03:30,bn782/bn782,ntpd,18565,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
353,-,1131566610,2005.11.09,tbird-sm1,Nov,9,12:03:30,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
354,-,1131566611,2005.11.09,tbird-admin1,Nov,9,12:03:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
355,-,1131566611,2005.11.09,tbird-admin1,Nov,9,12:03:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
356,-,1131566611,2005.11.09,tbird-admin1,Nov,9,12:03:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
357,-,1131566612,2005.11.09,cn401,Nov,9,12:03:32,cn401/cn401,ntpd,13355,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
358,-,1131566612,2005.11.09,tbird-admin1,Nov,9,12:03:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
359,-,1131566613,2005.11.09,cn798,Nov,9,12:03:33,cn798/cn798,ntpd,28046,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
360,-,1131566613,2005.11.09,tbird-admin1,Nov,9,12:03:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
361,-,1131566614,2005.11.09,cn671,Nov,9,12:03:34,cn671/cn671,ntpd,18058,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
362,-,1131566614,2005.11.09,tbird-admin1,Nov,9,12:03:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
363,-,1131566614,2005.11.09,tbird-sm1,Nov,9,12:03:34,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
364,-,1131566614,2005.11.09,tbird-sm1,Nov,9,12:03:34,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
365,-,1131566615,2005.11.09,bn272,Nov,9,12:03:35,bn272/bn272,ntpd,23856,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
366,-,1131566618,2005.11.09,cn212,Nov,9,12:03:38,cn212/cn212,ntpd,19672,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
367,-,1131566618,2005.11.09,tbird-admin1,Nov,9,12:03:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
368,-,1131566619,2005.11.09,cn302,Nov,9,12:03:39,cn302/cn302,ntpd,23306,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
369,-,1131566619,2005.11.09,dn235,Nov,9,12:03:39,dn235/dn235,ntpd,11149,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
370,-,1131566619,2005.11.09,tbird-admin1,Nov,9,12:03:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
371,-,1131566619,2005.11.09,tbird-admin1,Nov,9,12:03:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
372,-,1131566621,2005.11.09,tbird-admin1,Nov,9,12:03:41,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
373,-,1131566623,2005.11.09,tbird-admin1,Nov,9,12:03:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
374,-,1131566624,2005.11.09,dn276,Nov,9,12:03:44,dn276/dn276,ntpd,1773,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
375,-,1131566624,2005.11.09,tbird-admin1,Nov,9,12:03:44,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
376,-,1131566624,2005.11.09,tbird-sm1,Nov,9,12:03:44,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
377,-,1131566625,2005.11.09,cn196,Nov,9,12:03:45,cn196/cn196,ntpd,20345,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
378,-,1131566625,2005.11.09,tbird-admin1,Nov,9,12:03:45,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
379,-,1131566626,2005.11.09,cn866,Nov,9,12:03:46,cn866/cn866,ntpd,28395,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
380,-,1131566626,2005.11.09,tbird-admin1,Nov,9,12:03:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
381,-,1131566627,2005.11.09,bn993,Nov,9,12:03:47,bn993/bn993,ntpd,14363,"synchronized to 10.100.12.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
382,-,1131566627,2005.11.09,tbird-admin1,Nov,9,12:03:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
383,-,1131566628,2005.11.09,cn451,Nov,9,12:03:48,cn451/cn451,ntpd,11052,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
384,-,1131566628,2005.11.09,cn458,Nov,9,12:03:48,cn458/cn458,ntpd,11916,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
385,-,1131566628,2005.11.09,tbird-sm1,Nov,9,12:03:48,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
386,-,1131566628,2005.11.09,tbird-sm1,Nov,9,12:03:48,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
387,-,1131566629,2005.11.09,tbird-admin1,Nov,9,12:03:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
388,-,1131566630,2005.11.09,tbird-admin1,Nov,9,12:03:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
389,-,1131566631,2005.11.09,cn908,Nov,9,12:03:51,cn908/cn908,ntpd,28064,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
390,-,1131566631,2005.11.09,dn515,Nov,9,12:03:51,dn515/dn515,ntpd,31947,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
391,-,1131566631,2005.11.09,tbird-admin1,Nov,9,12:03:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
392,-,1131566631,2005.11.09,tbird-admin1,Nov,9,12:03:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
393,-,1131566633,2005.11.09,cn762,Nov,9,12:03:53,cn762/cn762,ntpd,29005,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
394,-,1131566633,2005.11.09,tbird-admin1,Nov,9,12:03:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
395,-,1131566634,2005.11.09,tbird-admin1,Nov,9,12:03:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
396,-,1131566635,2005.11.09,cn212,Nov,9,12:03:55,cn212/cn212,ntpd,19672,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
397,-,1131566635,2005.11.09,tbird-admin1,Nov,9,12:03:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
398,-,1131566636,2005.11.09,bn316,Nov,9,12:03:56,bn316/bn316,ntpd,29439,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
399,-,1131566636,2005.11.09,bn880,Nov,9,12:03:56,bn880/bn880,ntpd,1799,"synchronized to 10.100.14.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
400,-,1131566636,2005.11.09,tbird-admin1,Nov,9,12:03:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
401,-,1131566636,2005.11.09,tbird-admin1,Nov,9,12:03:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
402,-,1131566636,2005.11.09,tbird-admin1,Nov,9,12:03:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
403,-,1131566637,2005.11.09,cn747,Nov,9,12:03:57,cn747/cn747,ntpd,29165,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
404,-,1131566637,2005.11.09,tbird-admin1,Nov,9,12:03:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,RRD_update (/var/lib/ganglia/rrds/C Nodes/cn304/pkts_out.rrd): illegal attempt to update using time 1131563037 when last update time is 1131563037 (minimum one second step),E111,RRD_update (/var/lib/ganglia/rrds/<*>.rrd): illegal attempt to update using time <*> when last update time is <*> (minimum one second step)
405,-,1131566637,2005.11.09,tbird-admin1,Nov,9,12:03:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
406,-,1131566638,2005.11.09,tbird-admin1,Nov,9,12:03:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
407,-,1131566638,2005.11.09,tbird-sm1,Nov,9,12:03:58,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
408,-,1131566639,2005.11.09,bn363,Nov,9,12:03:59,bn363/bn363,ntpd,28759,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
409,-,1131566639,2005.11.09,bn843,Nov,9,12:03:59,bn843/bn843,ntpd,22085,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
410,-,1131566639,2005.11.09,tbird-admin1,Nov,9,12:03:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
411,-,1131566640,2005.11.09,bn601,Nov,9,12:04:00,bn601/bn601,ntpd,24357,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
412,-,1131566640,2005.11.09,tbird-admin1,Nov,9,12:04:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
413,-,1131566641,2005.11.09,cn262,Nov,9,12:04:01,cn262/cn262,ntpd,2245,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
414,-,1131566642,2005.11.09,tbird-admin1,Nov,9,12:04:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
415,-,1131566642,2005.11.09,tbird-sm1,Nov,9,12:04:02,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
416,-,1131566642,2005.11.09,tbird-sm1,Nov,9,12:04:02,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
417,-,1131566643,2005.11.09,tbird-admin1,Nov,9,12:04:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
418,-,1131566644,2005.11.09,cn779,Nov,9,12:04:04,cn779/cn779,ntpd,28009,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
419,-,1131566644,2005.11.09,cn936,Nov,9,12:04:04,cn936/cn936,ntpd,29168,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
420,-,1131566644,2005.11.09,cn991,Nov,9,12:04:04,cn991/cn991,ntpd,18491,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
421,-,1131566644,2005.11.09,dn428,Nov,9,12:04:04,dn428/dn428,ntpd,32524,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
422,-,1131566644,2005.11.09,tbird-admin1,Nov,9,12:04:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
423,-,1131566644,2005.11.09,tbird-admin1,Nov,9,12:04:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
424,-,1131566645,2005.11.09,cn301,Nov,9,12:04:05,cn301/cn301,ntpd,22898,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
425,-,1131566645,2005.11.09,cn923,Nov,9,12:04:05,cn923/cn923,ntpd,28988,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
426,-,1131566645,2005.11.09,tbird-admin1,Nov,9,12:04:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
427,-,1131566645,2005.11.09,tbird-admin1,Nov,9,12:04:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
428,-,1131566646,2005.11.09,tbird-admin1,Nov,9,12:04:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
429,-,1131566647,2005.11.09,cn709,Nov,9,12:04:07,cn709/cn709,ntpd,19295,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
430,-,1131566648,2005.11.09,bn263,Nov,9,12:04:08,bn263/bn263,ntpd,23720,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
431,-,1131566648,2005.11.09,tbird-admin1,Nov,9,12:04:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
432,-,1131566649,2005.11.09,dn74,Nov,9,12:04:09,dn74/dn74,ntpd,20434,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
433,-,1131566650,2005.11.09,bn734,Nov,9,12:04:10,bn734/bn734,ntpd,2444,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
434,-,1131566650,2005.11.09,bn735,Nov,9,12:04:10,bn735/bn735,ntpd,2371,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
435,-,1131566652,2005.11.09,bn263,Nov,9,12:04:12,bn263/bn263,ntpd,23720,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
436,-,1131566652,2005.11.09,tbird-sm1,Nov,9,12:04:12,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
437,-,1131566653,2005.11.09,tbird-admin1,Nov,9,12:04:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
438,-,1131566653,2005.11.09,tbird-admin1,Nov,9,12:04:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
439,-,1131566653,2005.11.09,tbird-admin1,Nov,9,12:04:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
440,-,1131566656,2005.11.09,cn847,Nov,9,12:04:16,cn847/cn847,ntpd,27885,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
441,-,1131566656,2005.11.09,tbird-admin1,Nov,9,12:04:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
442,-,1131566656,2005.11.09,tbird-sm1,Nov,9,12:04:16,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
443,-,1131566656,2005.11.09,tbird-sm1,Nov,9,12:04:16,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
444,-,1131566657,2005.11.09,dn37,Nov,9,12:04:17,dn37/dn37,ntpd,19909,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
445,-,1131566657,2005.11.09,tbird-admin1,Nov,9,12:04:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
446,-,1131566657,2005.11.09,tbird-admin1,Nov,9,12:04:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
447,-,1131566659,2005.11.09,cn25,Nov,9,12:04:19,cn25/cn25,ntpd,15539,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
448,-,1131566659,2005.11.09,tbird-admin1,Nov,9,12:04:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
449,-,1131566659,2005.11.09,tbird-admin1,Nov,9,12:04:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
450,-,1131566659,2005.11.09,tbird-admin1,Nov,9,12:04:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
451,-,1131566661,2005.11.09,tbird-admin1,Nov,9,12:04:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
452,-,1131566662,2005.11.09,bn932,Nov,9,12:04:22,bn932/bn932,ntpd,25246,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
453,-,1131566662,2005.11.09,cn947,Nov,9,12:04:22,cn947/cn947,ntpd,19822,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
454,-,1131566662,2005.11.09,tbird-admin1,Nov,9,12:04:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
455,-,1131566664,2005.11.09,bn10,Nov,9,12:04:24,bn10/bn10,ntpd,22328,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
456,-,1131566664,2005.11.09,bn594,Nov,9,12:04:24,bn594/bn594,ntpd,7901,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
457,-,1131566664,2005.11.09,cn205,Nov,9,12:04:24,cn205/cn205,ntpd,20490,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
458,-,1131566665,2005.11.09,cn765,Nov,9,12:04:25,cn765/cn765,ntpd,27990,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
459,-,1131566665,2005.11.09,tbird-admin1,Nov,9,12:04:25,local@tbird-admin1,ntpd,1815,kernel time sync disabled 0041,E61,kernel time sync disabled <*>
460,-,1131566665,2005.11.09,tbird-admin1,Nov,9,12:04:25,local@tbird-admin1,ntpd,1815,time reset +0.182379 s,E128,time reset +<*>.<*> s
461,-,1131566666,2005.11.09,bn10,Nov,9,12:04:26,bn10/bn10,ntpd,22328,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
462,-,1131566666,2005.11.09,tbird-admin1,Nov,9,12:04:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
463,-,1131566666,2005.11.09,tbird-admin1,Nov,9,12:04:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
464,-,1131566666,2005.11.09,tbird-admin1,Nov,9,12:04:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
465,-,1131566666,2005.11.09,tbird-admin1,Nov,9,12:04:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
466,-,1131566666,2005.11.09,tbird-admin1,Nov,9,12:04:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
467,-,1131566666,2005.11.09,tbird-sm1,Nov,9,12:04:26,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
468,-,1131566667,2005.11.09,dn356,Nov,9,12:04:27,dn356/dn356,ntpd,32234,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
469,-,1131566667,2005.11.09,tbird-admin1,Nov,9,12:04:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
470,-,1131566668,2005.11.09,cn912,Nov,9,12:04:28,cn912/cn912,ntpd,28300,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
471,-,1131566668,2005.11.09,tbird-admin1,Nov,9,12:04:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
472,-,1131566669,2005.11.09,tbird-admin1,Nov,9,12:04:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
473,-,1131566670,2005.11.09,cn534,Nov,9,12:04:30,cn534/cn534,ntpd,16244,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
474,-,1131566670,2005.11.09,tbird-admin1,Nov,9,12:04:30,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
475,-,1131566670,2005.11.09,tbird-sm1,Nov,9,12:04:30,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
476,-,1131566670,2005.11.09,tbird-sm1,Nov,9,12:04:30,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
477,-,1131566672,2005.11.09,tbird-admin1,Nov,9,12:04:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
478,-,1131566672,2005.11.09,tbird-admin1,Nov,9,12:04:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
479,-,1131566673,2005.11.09,bn429,Nov,9,12:04:33,bn429/bn429,ntpd,29251,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
480,-,1131566673,2005.11.09,cn351,Nov,9,12:04:33,cn351/cn351,ntpd,11981,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
481,-,1131566673,2005.11.09,tbird-admin1,Nov,9,12:04:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
482,-,1131566673,2005.11.09,tbird-admin1,Nov,9,12:04:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
483,-,1131566674,2005.11.09,cn573,Nov,9,12:04:34,cn573/cn573,ntpd,15193,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
484,-,1131566675,2005.11.09,cn231,Nov,9,12:04:35,cn231/cn231,ntpd,10735,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
485,-,1131566676,2005.11.09,cn424,Nov,9,12:04:36,cn424/cn424,ntpd,12754,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
486,-,1131566676,2005.11.09,cn984,Nov,9,12:04:36,cn984/cn984,ntpd,19722,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
487,-,1131566676,2005.11.09,tbird-admin1,Nov,9,12:04:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
488,-,1131566677,2005.11.09,cn846,Nov,9,12:04:37,cn846/cn846,ntpd,27289,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
489,-,1131566679,2005.11.09,bn27,Nov,9,12:04:39,bn27/bn27,ntpd,22307,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
490,-,1131566679,2005.11.09,bn978,Nov,9,12:04:39,bn978/bn978,ntpd,14255,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
491,-,1131566679,2005.11.09,cn737,Nov,9,12:04:39,cn737/cn737,ntpd,29331,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
492,-,1131566679,2005.11.09,cn864,Nov,9,12:04:39,cn864/cn864,ntpd,27499,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
493,-,1131566679,2005.11.09,tbird-admin1,Nov,9,12:04:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
494,-,1131566680,2005.11.09,bn846,Nov,9,12:04:40,bn846/bn846,ntpd,22032,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
495,-,1131566680,2005.11.09,tbird-admin1,Nov,9,12:04:40,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
496,-,1131566680,2005.11.09,tbird-sm1,Nov,9,12:04:40,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
497,-,1131566681,2005.11.09,cn658,Nov,9,12:04:41,cn658/cn658,ntpd,24187,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
498,-,1131566681,2005.11.09,tbird-admin1,Nov,9,12:04:41,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
499,-,1131566681,2005.11.09,tbird-admin1,Nov,9,12:04:41,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
500,-,1131566683,2005.11.09,bn364,Nov,9,12:04:43,bn364/bn364,ntpd,28894,"synchronized to 10.100.14.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
501,-,1131566683,2005.11.09,cn541,Nov,9,12:04:43,cn541/cn541,ntpd,14451,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
502,-,1131566683,2005.11.09,cn621,Nov,9,12:04:43,cn621/cn621,ntpd,18491,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
503,-,1131566683,2005.11.09,tbird-admin1,Nov,9,12:04:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
504,-,1131566684,2005.11.09,cn317,Nov,9,12:04:44,cn317/cn317,ntpd,23387,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
505,-,1131566684,2005.11.09,cn402,Nov,9,12:04:44,cn402/cn402,ntpd,13156,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
506,-,1131566684,2005.11.09,cn859,Nov,9,12:04:44,cn859/cn859,ntpd,28794,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
507,-,1131566684,2005.11.09,cn967,Nov,9,12:04:44,cn967/cn967,ntpd,19908,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
508,-,1131566684,2005.11.09,tbird-sm1,Nov,9,12:04:44,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
509,-,1131566684,2005.11.09,tbird-sm1,Nov,9,12:04:44,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
510,-,1131566686,2005.11.09,bn846,Nov,9,12:04:46,bn846/bn846,ntpd,22032,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
511,-,1131566686,2005.11.09,dn891,Nov,9,12:04:46,dn891/dn891,ntpd,2854,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
512,-,1131566686,2005.11.09,tbird-admin1,Nov,9,12:04:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
513,-,1131566687,2005.11.09,bn424,Nov,9,12:04:47,bn424/bn424,ntpd,30101,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
514,-,1131566688,2005.11.09,cn656,Nov,9,12:04:48,cn656/cn656,ntpd,32284,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
515,-,1131566688,2005.11.09,tbird-admin1,Nov,9,12:04:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
516,-,1131566688,2005.11.09,tbird-admin1,Nov,9,12:04:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
517,-,1131566688,2005.11.09,tbird-admin1,Nov,9,12:04:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
518,-,1131566689,2005.11.09,cn373,Nov,9,12:04:49,cn373/cn373,ntpd,10321,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
519,-,1131566689,2005.11.09,tbird-admin1,Nov,9,12:04:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,RRD_update (/var/lib/ganglia/rrds/D Nodes/dn731/pkts_out.rrd): illegal attempt to update using time 1131563089 when last update time is 1131563089 (minimum one second step),E111,RRD_update (/var/lib/ganglia/rrds/<*>.rrd): illegal attempt to update using time <*> when last update time is <*> (minimum one second step)
520,-,1131566689,2005.11.09,tbird-admin1,Nov,9,12:04:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
521,-,1131566689,2005.11.09,tbird-admin1,Nov,9,12:04:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
522,-,1131566690,2005.11.09,cn499,Nov,9,12:04:50,cn499/cn499,ntpd,15380,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
523,-,1131566690,2005.11.09,cn997,Nov,9,12:04:50,cn997/cn997,ntpd,19070,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
524,-,1131566691,2005.11.09,cn655,Nov,9,12:04:51,cn655/cn655,ntpd,18484,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
525,-,1131566691,2005.11.09,cn68,Nov,9,12:04:51,cn68/cn68,ntpd,14667,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
526,-,1131566691,2005.11.09,cn684,Nov,9,12:04:51,cn684/cn684,ntpd,19346,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
527,-,1131566691,2005.11.09,tbird-admin1,Nov,9,12:04:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
528,-,1131566692,2005.11.09,bn649,Nov,9,12:04:52,bn649/bn649,ntpd,3482,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
529,-,1131566692,2005.11.09,cn771,Nov,9,12:04:52,cn771/cn771,ntpd,27994,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
530,-,1131566692,2005.11.09,dn952,Nov,9,12:04:52,dn952/dn952,ntpd,1659,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
531,-,1131566692,2005.11.09,tbird-admin1,Nov,9,12:04:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
532,-,1131566692,2005.11.09,tbird-admin1,Nov,9,12:04:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
533,-,1131566693,2005.11.09,tbird-admin1,Nov,9,12:04:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
534,-,1131566694,2005.11.09,cn818,Nov,9,12:04:54,cn818/cn818,ntpd,28669,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
535,-,1131566694,2005.11.09,tbird-admin1,Nov,9,12:04:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
536,-,1131566694,2005.11.09,tbird-sm1,Nov,9,12:04:54,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
537,-,1131566695,2005.11.09,tbird-admin1,Nov,9,12:04:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
538,-,1131566695,2005.11.09,tbird-admin1,Nov,9,12:04:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
539,-,1131566696,2005.11.09,dn428,Nov,9,12:04:56,dn428/dn428,ntpd,32524,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
540,-,1131566697,2005.11.09,bn790,Nov,9,12:04:57,bn790/bn790,ntpd,24108,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
541,-,1131566697,2005.11.09,cn235,Nov,9,12:04:57,cn235/cn235,ntpd,10140,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
542,-,1131566697,2005.11.09,tbird-admin1,Nov,9,12:04:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
543,-,1131566698,2005.11.09,cn439,Nov,9,12:04:58,cn439/cn439,ntpd,13201,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
544,-,1131566698,2005.11.09,tbird-admin1,Nov,9,12:04:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
545,-,1131566698,2005.11.09,tbird-sm1,Nov,9,12:04:58,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
546,-,1131566698,2005.11.09,tbird-sm1,Nov,9,12:04:58,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
547,-,1131566700,2005.11.09,cn439,Nov,9,12:05:00,cn439/cn439,ntpd,13201,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
548,-,1131566700,2005.11.09,cn837,Nov,9,12:05:00,cn837/cn837,ntpd,27977,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
549,-,1131566701,2005.11.09,cn149,Nov,9,12:05:01,cn149/cn149,ntpd,10155,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
550,-,1131566701,2005.11.09,tbird-admin1,Nov,9,12:05:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
551,-,1131566701,2005.11.09,tbird-admin1,Nov,9,12:05:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
552,-,1131566702,2005.11.09,tbird-admin1,Nov,9,12:05:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
553,-,1131566704,2005.11.09,cn761,Nov,9,12:05:04,cn761/cn761,ntpd,27478,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
554,-,1131566704,2005.11.09,tbird-admin1,Nov,9,12:05:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
555,-,1131566705,2005.11.09,cn453,Nov,9,12:05:05,cn453/cn453,ntpd,11120,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
556,-,1131566705,2005.11.09,tbird-admin1,Nov,9,12:05:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
557,-,1131566705,2005.11.09,tbird-admin1,Nov,9,12:05:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
558,-,1131566705,2005.11.09,tbird-admin1,Nov,9,12:05:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
559,-,1131566706,2005.11.09,tbird-admin1,Nov,9,12:05:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
560,-,1131566707,2005.11.09,cn379,Nov,9,12:05:07,cn379/cn379,ntpd,10573,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
561,-,1131566708,2005.11.09,tbird-admin1,Nov,9,12:05:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
562,-,1131566708,2005.11.09,tbird-sm1,Nov,9,12:05:08,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
563,-,1131566709,2005.11.09,tbird-admin1,Nov,9,12:05:09,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
564,-,1131566711,2005.11.09,tbird-admin1,Nov,9,12:05:11,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
565,-,1131566711,2005.11.09,tbird-admin1,Nov,9,12:05:11,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
566,-,1131566712,2005.11.09,#32#,Nov,9,12:05:12,#32#/#32#,snmpd,1964,Received SNMP packet(s) from #34#,E98,Received SNMP packet(s) from #<*>#
567,-,1131566712,2005.11.09,dn386,Nov,9,12:05:12,dn386/dn386,ntpd,330,"synchronized to 10.100.30.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
568,-,1131566712,2005.11.09,tbird-sm1,Nov,9,12:05:12,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
569,-,1131566712,2005.11.09,tbird-sm1,Nov,9,12:05:12,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
570,-,1131566713,2005.11.09,cn375,Nov,9,12:05:13,cn375/cn375,ntpd,10237,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
571,-,1131566713,2005.11.09,dn354,Nov,9,12:05:13,dn354/dn354,ntpd,32234,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
572,-,1131566713,2005.11.09,tbird-admin1,Nov,9,12:05:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
573,-,1131566713,2005.11.09,tbird-admin1,Nov,9,12:05:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
574,-,1131566714,2005.11.09,bn703,Nov,9,12:05:14,bn703/bn703,ntpd,21338,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
575,-,1131566714,2005.11.09,tbird-admin1,Nov,9,12:05:14,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
576,-,1131566715,2005.11.09,tbird-admin1,Nov,9,12:05:15,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
577,-,1131566716,2005.11.09,cn622,Nov,9,12:05:16,cn622/cn622,ntpd,18517,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
578,-,1131566716,2005.11.09,dn406,Nov,9,12:05:16,dn406/dn406,ntpd,31933,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
579,-,1131566717,2005.11.09,tbird-admin1,Nov,9,12:05:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,RRD_update (/var/lib/ganglia/rrds/D Nodes/dn731/pkts_out.rrd): illegal attempt to update using time 1131563117 when last update time is 1131563117 (minimum one second step),E111,RRD_update (/var/lib/ganglia/rrds/<*>.rrd): illegal attempt to update using time <*> when last update time is <*> (minimum one second step)
580,-,1131566718,2005.11.09,cn838,Nov,9,12:05:18,cn838/cn838,ntpd,28059,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
581,-,1131566718,2005.11.09,tbird-admin1,Nov,9,12:05:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
582,-,1131566719,2005.11.09,tbird-admin1,Nov,9,12:05:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
583,-,1131566721,2005.11.09,tbird-admin1,Nov,9,12:05:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
584,-,1131566722,2005.11.09,cn327,Nov,9,12:05:22,cn327/cn327,ntpd,23021,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
585,-,1131566722,2005.11.09,tbird-sm1,Nov,9,12:05:22,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
586,-,1131566723,2005.11.09,cn665,Nov,9,12:05:23,cn665/cn665,ntpd,23982,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
587,-,1131566723,2005.11.09,tbird-admin1,Nov,9,12:05:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
588,-,1131566723,2005.11.09,tbird-admin1,Nov,9,12:05:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
589,-,1131566724,2005.11.09,tbird-admin1,Nov,9,12:05:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
590,-,1131566725,2005.11.09,tbird-admin1,Nov,9,12:05:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
591,-,1131566726,2005.11.09,tbird-admin1,Nov,9,12:05:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
592,-,1131566726,2005.11.09,tbird-sm1,Nov,9,12:05:26,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
593,-,1131566726,2005.11.09,tbird-sm1,Nov,9,12:05:26,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
594,-,1131566727,2005.11.09,cn269,Nov,9,12:05:27,cn269/cn269,ntpd,12178,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
595,-,1131566727,2005.11.09,cn290,Nov,9,12:05:27,cn290/cn290,ntpd,23984,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
596,-,1131566727,2005.11.09,cn92,Nov,9,12:05:27,cn92/cn92,ntpd,19774,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
597,-,1131566727,2005.11.09,dn948,Nov,9,12:05:27,dn948/dn948,ntpd,25162,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
598,-,1131566727,2005.11.09,tbird-admin1,Nov,9,12:05:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
599,-,1131566728,2005.11.09,tbird-admin1,Nov,9,12:05:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
600,-,1131566729,2005.11.09,tbird-admin1,Nov,9,12:05:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
601,-,1131566729,2005.11.09,tbird-admin1,Nov,9,12:05:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
602,-,1131566729,2005.11.09,tbird-admin1,Nov,9,12:05:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
603,-,1131566730,2005.11.09,cn92,Nov,9,12:05:30,cn92/cn92,ntpd,19774,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
604,-,1131566731,2005.11.09,tbird-admin1,Nov,9,12:05:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
605,-,1131566731,2005.11.09,tbird-admin1,Nov,9,12:05:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
606,-,1131566733,2005.11.09,cn16,Nov,9,12:05:33,cn16/cn16,ntpd,15426,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
607,-,1131566733,2005.11.09,cn315,Nov,9,12:05:33,cn315/cn315,ntpd,23358,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
608,-,1131566734,2005.11.09,cn670,Nov,9,12:05:34,cn670/cn670,ntpd,18560,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
609,-,1131566736,2005.11.09,bn263,Nov,9,12:05:36,bn263/bn263,ntpd,23720,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
610,-,1131566736,2005.11.09,tbird-admin1,Nov,9,12:05:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
611,-,1131566736,2005.11.09,tbird-admin1,Nov,9,12:05:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
612,-,1131566736,2005.11.09,tbird-sm1,Nov,9,12:05:36,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
613,-,1131566737,2005.11.09,tbird-admin1,Nov,9,12:05:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
614,-,1131566738,2005.11.09,tbird-admin1,Nov,9,12:05:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
615,-,1131566739,2005.11.09,tbird-admin1,Nov,9,12:05:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
616,-,1131566739,2005.11.09,tbird-admin1,Nov,9,12:05:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
617,-,1131566739,2005.11.09,tbird-admin1,Nov,9,12:05:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
618,-,1131566740,2005.11.09,dn393,Nov,9,12:05:40,dn393/dn393,ntpd,4696,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
619,-,1131566740,2005.11.09,tbird-sm1,Nov,9,12:05:40,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
620,-,1131566740,2005.11.09,tbird-sm1,Nov,9,12:05:40,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
621,-,1131566741,2005.11.09,bn285,Nov,9,12:05:41,bn285/bn285,ntpd,23597,"synchronized to 10.100.12.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
622,-,1131566741,2005.11.09,cn697,Nov,9,12:05:41,cn697/cn697,ntpd,19486,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
623,-,1131566742,2005.11.09,tbird-admin1,Nov,9,12:05:42,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
624,-,1131566742,2005.11.09,tbird-admin1,Nov,9,12:05:42,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
625,-,1131566743,2005.11.09,tbird-admin1,Nov,9,12:05:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
626,-,1131566744,2005.11.09,dn800,Nov,9,12:05:44,dn800/dn800,ntpd,542,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
627,-,1131566745,2005.11.09,bn174,Nov,9,12:05:45,bn174/bn174,ntpd,21683,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
628,-,1131566746,2005.11.09,cn826,Nov,9,12:05:46,cn826/cn826,ntpd,29220,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
629,-,1131566746,2005.11.09,tbird-admin1,Nov,9,12:05:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
630,-,1131566748,2005.11.09,tbird-admin1,Nov,9,12:05:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
631,-,1131566749,2005.11.09,tbird-admin1,Nov,9,12:05:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,RRD_update (/var/lib/ganglia/rrds/D Nodes/dn731/pkts_out.rrd): illegal attempt to update using time 1131563149 when last update time is 1131563149 (minimum one second step),E111,RRD_update (/var/lib/ganglia/rrds/<*>.rrd): illegal attempt to update using time <*> when last update time is <*> (minimum one second step)
632,-,1131566749,2005.11.09,tbird-admin1,Nov,9,12:05:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
633,-,1131566750,2005.11.09,tbird-admin1,Nov,9,12:05:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
634,-,1131566750,2005.11.09,tbird-sm1,Nov,9,12:05:50,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
635,-,1131566751,2005.11.09,tbird-admin1,Nov,9,12:05:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
636,-,1131566752,2005.11.09,tbird-admin1,Nov,9,12:05:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
637,-,1131566752,2005.11.09,tbird-admin1,Nov,9,12:05:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
638,-,1131566752,2005.11.09,tbird-admin1,Nov,9,12:05:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
639,-,1131566753,2005.11.09,dn789,Nov,9,12:05:53,dn789/dn789,ntpd,32333,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
640,-,1131566754,2005.11.09,tbird-admin1,Nov,9,12:05:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
641,-,1131566754,2005.11.09,tbird-sm1,Nov,9,12:05:54,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
642,-,1131566754,2005.11.09,tbird-sm1,Nov,9,12:05:54,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
643,-,1131566755,2005.11.09,bn154,Nov,9,12:05:55,bn154/bn154,ntpd,22847,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
644,-,1131566755,2005.11.09,tbird-admin1,Nov,9,12:05:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
645,-,1131566756,2005.11.09,bn361,Nov,9,12:05:56,bn361/bn361,ntpd,28875,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
646,-,1131566756,2005.11.09,cn408,Nov,9,12:05:56,cn408/cn408,ntpd,13232,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
647,-,1131566756,2005.11.09,tbird-admin1,Nov,9,12:05:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
648,-,1131566757,2005.11.09,tbird-admin1,Nov,9,12:05:57,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
649,-,1131566758,2005.11.09,cn278,Nov,9,12:05:58,cn278/cn278,ntpd,10806,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
650,-,1131566758,2005.11.09,cn770,Nov,9,12:05:58,cn770/cn770,ntpd,28162,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
651,-,1131566758,2005.11.09,tbird-admin1,Nov,9,12:05:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
652,-,1131566758,2005.11.09,tbird-admin1,Nov,9,12:05:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
653,-,1131566759,2005.11.09,cn25,Nov,9,12:05:59,cn25/cn25,ntpd,15539,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
654,-,1131566761,2005.11.09,bn19,Nov,9,12:06:01,bn19/bn19,ntpd,22830,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
655,-,1131566762,2005.11.09,cn488,Nov,9,12:06:02,cn488/cn488,ntpd,15809,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
656,-,1131566762,2005.11.09,tbird-admin1,Nov,9,12:06:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
657,-,1131566763,2005.11.09,bn148,Nov,9,12:06:03,bn148/bn148,ntpd,22814,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
658,-,1131566763,2005.11.09,cn880,Nov,9,12:06:03,cn880/cn880,ntpd,29120,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
659,-,1131566763,2005.11.09,tbird-admin1,Nov,9,12:06:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
660,-,1131566764,2005.11.09,bn325,Nov,9,12:06:04,bn325/bn325,ntpd,29392,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
661,-,1131566764,2005.11.09,tbird-admin1,Nov,9,12:06:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
662,-,1131566764,2005.11.09,tbird-sm1,Nov,9,12:06:04,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
663,-,1131566765,2005.11.09,tbird-admin1,Nov,9,12:06:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
664,-,1131566765,2005.11.09,tbird-admin1,Nov,9,12:06:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
665,-,1131566766,2005.11.09,cn370,Nov,9,12:06:06,cn370/cn370,ntpd,10288,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
666,-,1131566766,2005.11.09,tbird-admin1,Nov,9,12:06:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
667,-,1131566766,2005.11.09,tbird-admin1,Nov,9,12:06:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
668,-,1131566767,2005.11.09,cn346,Nov,9,12:06:07,cn346/cn346,ntpd,12656,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
669,-,1131566767,2005.11.09,cn542,Nov,9,12:06:07,cn542/cn542,ntpd,13781,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
670,-,1131566768,2005.11.09,dn42,Nov,9,12:06:08,dn42/dn42,ntpd,20828,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
671,-,1131566768,2005.11.09,tbird-admin1,Nov,9,12:06:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
672,-,1131566768,2005.11.09,tbird-admin1,Nov,9,12:06:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
673,-,1131566768,2005.11.09,tbird-admin1,Nov,9,12:06:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
674,-,1131566768,2005.11.09,tbird-sm1,Nov,9,12:06:08,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
675,-,1131566768,2005.11.09,tbird-sm1,Nov,9,12:06:08,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
676,-,1131566769,2005.11.09,tbird-admin1,Nov,9,12:06:09,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
677,-,1131566771,2005.11.09,cn234,Nov,9,12:06:11,cn234/cn234,ntpd,10674,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
678,-,1131566771,2005.11.09,cn864,Nov,9,12:06:11,cn864/cn864,ntpd,27499,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
679,-,1131566771,2005.11.09,tbird-admin1,Nov,9,12:06:11,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
680,-,1131566771,2005.11.09,tbird-admin1,Nov,9,12:06:11,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
681,-,1131566772,2005.11.09,cn224,Nov,9,12:06:12,cn224/cn224,ntpd,24739,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
682,-,1131566772,2005.11.09,tbird-admin1,Nov,9,12:06:12,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
683,-,1131566773,2005.11.09,bn89,Nov,9,12:06:13,bn89/bn89,ntpd,22496,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
684,-,1131566774,2005.11.09,cn717,Nov,9,12:06:14,cn717/cn717,ntpd,18846,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
685,-,1131566777,2005.11.09,cn318,Nov,9,12:06:17,cn318/cn318,ntpd,19988,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
686,-,1131566778,2005.11.09,tbird-admin1,Nov,9,12:06:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
687,-,1131566778,2005.11.09,tbird-sm1,Nov,9,12:06:18,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
688,-,1131566779,2005.11.09,cn183,Nov,9,12:06:19,cn183/cn183,ntpd,4314,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
689,-,1131566780,2005.11.09,tbird-admin1,Nov,9,12:06:20,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
690,-,1131566781,2005.11.09,bn914,Nov,9,12:06:21,bn914/bn914,ntpd,25026,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
691,-,1131566781,2005.11.09,cn884,Nov,9,12:06:21,cn884/cn884,ntpd,32661,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
692,-,1131566781,2005.11.09,tbird-admin1,Nov,9,12:06:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
693,-,1131566781,2005.11.09,tbird-admin1,Nov,9,12:06:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
694,-,1131566782,2005.11.09,cn274,Nov,9,12:06:22,cn274/cn274,ntpd,10560,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
695,-,1131566782,2005.11.09,tbird-admin1,Nov,9,12:06:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
696,-,1131566782,2005.11.09,tbird-admin1,Nov,9,12:06:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
697,-,1131566782,2005.11.09,tbird-sm1,Nov,9,12:06:22,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
698,-,1131566782,2005.11.09,tbird-sm1,Nov,9,12:06:22,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
699,-,1131566784,2005.11.09,dn909,Nov,9,12:06:24,dn909/dn909,ntpd,4222,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
700,-,1131566784,2005.11.09,tbird-admin1,Nov,9,12:06:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
701,-,1131566784,2005.11.09,tbird-admin1,Nov,9,12:06:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
702,-,1131566784,2005.11.09,tbird-admin1,Nov,9,12:06:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
703,-,1131566785,2005.11.09,cn213,Nov,9,12:06:25,cn213/cn213,ntpd,17513,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
704,-,1131566785,2005.11.09,dn926,Nov,9,12:06:25,dn926/dn926,ntpd,4254,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
705,-,1131566786,2005.11.09,tbird-admin1,Nov,9,12:06:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
706,-,1131566786,2005.11.09,tbird-admin1,Nov,9,12:06:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
707,-,1131566786,2005.11.09,tbird-admin1,Nov,9,12:06:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
708,-,1131566789,2005.11.09,tbird-admin1,Nov,9,12:06:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
709,-,1131566790,2005.11.09,tbird-admin1,Nov,9,12:06:30,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
710,-,1131566791,2005.11.09,cn846,Nov,9,12:06:31,cn846/cn846,ntpd,27289,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
711,-,1131566792,2005.11.09,bn19,Nov,9,12:06:32,bn19/bn19,ntpd,22830,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
712,-,1131566792,2005.11.09,tbird-sm1,Nov,9,12:06:32,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
713,-,1131566793,2005.11.09,cn907,Nov,9,12:06:33,cn907/cn907,ntpd,28086,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
714,-,1131566794,2005.11.09,tbird-admin1,Nov,9,12:06:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
715,-,1131566794,2005.11.09,tbird-admin1,Nov,9,12:06:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
716,-,1131566795,2005.11.09,cn256,Nov,9,12:06:35,cn256/cn256,ntpd,10351,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
717,-,1131566795,2005.11.09,tbird-admin1,Nov,9,12:06:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
718,-,1131566795,2005.11.09,tbird-admin1,Nov,9,12:06:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
719,-,1131566795,2005.11.09,tbird-admin1,Nov,9,12:06:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
720,-,1131566796,2005.11.09,cn814,Nov,9,12:06:36,cn814/cn814,ntpd,28198,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
721,-,1131566796,2005.11.09,tbird-admin1,Nov,9,12:06:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
722,-,1131566796,2005.11.09,tbird-sm1,Nov,9,12:06:36,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
723,-,1131566796,2005.11.09,tbird-sm1,Nov,9,12:06:36,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
724,-,1131566797,2005.11.09,tbird-admin1,Nov,9,12:06:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
725,-,1131566798,2005.11.09,bn493,Nov,9,12:06:38,bn493/bn493,ntpd,28388,"synchronized to 10.100.12.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
726,-,1131566798,2005.11.09,cn350,Nov,9,12:06:38,cn350/cn350,ntpd,12129,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
727,-,1131566798,2005.11.09,tbird-admin1,Nov,9,12:06:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
728,-,1131566799,2005.11.09,bn978,Nov,9,12:06:39,bn978/bn978,ntpd,14255,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
729,-,1131566800,2005.11.09,tbird-admin1,Nov,9,12:06:40,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
730,-,1131566800,2005.11.09,tbird-admin1,Nov,9,12:06:40,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
731,-,1131566800,2005.11.09,tbird-admin1,Nov,9,12:06:40,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
732,-,1131566801,2005.11.09,cn306,Nov,9,12:06:41,cn306/cn306,ntpd,23587,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
733,-,1131566803,2005.11.09,bn756,Nov,9,12:06:43,bn756/bn756,ntpd,22312,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
734,-,1131566803,2005.11.09,tbird-admin1,Nov,9,12:06:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
735,-,1131566804,2005.11.09,cn219,Nov,9,12:06:44,cn219/cn219,ntpd,10562,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
736,-,1131566804,2005.11.09,dn869,Nov,9,12:06:44,dn869/dn869,ntpd,3153,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
737,-,1131566804,2005.11.09,tbird-admin1,Nov,9,12:06:44,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
738,-,1131566805,2005.11.09,cn500,Nov,9,12:06:45,cn500/cn500,ntpd,15463,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
739,-,1131566805,2005.11.09,tbird-admin1,Nov,9,12:06:45,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
740,-,1131566806,2005.11.09,tbird-sm1,Nov,9,12:06:46,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
741,-,1131566808,2005.11.09,tbird-admin1,Nov,9,12:06:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
742,-,1131566809,2005.11.09,cn1002,Nov,9,12:06:49,cn1002/cn1002,ntpd,19253,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
743,-,1131566809,2005.11.09,tbird-admin1,Nov,9,12:06:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
744,-,1131566810,2005.11.09,cn115,Nov,9,12:06:50,cn115/cn115,ntpd,20377,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
745,-,1131566810,2005.11.09,tbird-sm1,Nov,9,12:06:50,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
746,-,1131566810,2005.11.09,tbird-sm1,Nov,9,12:06:50,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
747,-,1131566811,2005.11.09,tbird-admin1,Nov,9,12:06:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
748,-,1131566812,2005.11.09,tbird-admin1,Nov,9,12:06:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
749,-,1131566813,2005.11.09,cn473,Nov,9,12:06:53,cn473/cn473,ntpd,15482,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
750,-,1131566813,2005.11.09,tbird-admin1,Nov,9,12:06:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
751,-,1131566813,2005.11.09,tbird-admin1,Nov,9,12:06:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
752,-,1131566814,2005.11.09,bn165,Nov,9,12:06:54,bn165/bn165,ntpd,23331,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
753,-,1131566814,2005.11.09,bn321,Nov,9,12:06:54,bn321/bn321,ntpd,29422,"synchronized to 10.100.14.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
754,-,1131566814,2005.11.09,tbird-admin1,Nov,9,12:06:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
755,-,1131566814,2005.11.09,tbird-admin1,Nov,9,12:06:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
756,-,1131566814,2005.11.09,tbird-admin1,Nov,9,12:06:54,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
757,-,1131566815,2005.11.09,cn385,Nov,9,12:06:55,cn385/cn385,ntpd,5975,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
758,-,1131566815,2005.11.09,cn74,Nov,9,12:06:55,cn74/cn74,ntpd,17700,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
759,-,1131566816,2005.11.09,cn610,Nov,9,12:06:56,cn610/cn610,ntpd,19222,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
760,-,1131566816,2005.11.09,tbird-admin1,Nov,9,12:06:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
761,-,1131566817,2005.11.09,bn385,Nov,9,12:06:57,bn385/bn385,ntpd,29353,"synchronized to 10.100.12.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
762,-,1131566818,2005.11.09,cn328,Nov,9,12:06:58,cn328/cn328,ntpd,24363,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
763,-,1131566819,2005.11.09,cn232,Nov,9,12:06:59,cn232/cn232,ntpd,10673,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
764,-,1131566819,2005.11.09,tbird-admin1,Nov,9,12:06:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
765,-,1131566820,2005.11.09,cn481,Nov,9,12:07:00,cn481/cn481,ntpd,16002,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
766,-,1131566820,2005.11.09,cn77,Nov,9,12:07:00,cn77/cn77,ntpd,17747,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
767,-,1131566820,2005.11.09,tbird-admin1,Nov,9,12:07:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
768,-,1131566820,2005.11.09,tbird-admin1,Nov,9,12:07:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
769,-,1131566820,2005.11.09,tbird-sm1,Nov,9,12:07:00,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
770,-,1131566821,2005.11.09,bn721,Nov,9,12:07:01,bn721/bn721,ntpd,24136,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
771,-,1131566821,2005.11.09,cn681,Nov,9,12:07:01,cn681/cn681,ntpd,18283,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
772,-,1131566821,2005.11.09,tbird-admin1,Nov,9,12:07:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
773,-,1131566822,2005.11.09,cn610,Nov,9,12:07:02,cn610/cn610,ntpd,19222,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
774,-,1131566824,2005.11.09,tbird-admin1,Nov,9,12:07:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
775,-,1131566824,2005.11.09,tbird-admin1,Nov,9,12:07:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
776,-,1131566824,2005.11.09,tbird-sm1,Nov,9,12:07:04,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
777,-,1131566824,2005.11.09,tbird-sm1,Nov,9,12:07:04,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
778,-,1131566825,2005.11.09,cn936,Nov,9,12:07:05,cn936/cn936,ntpd,29168,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
779,-,1131566825,2005.11.09,tbird-admin1,Nov,9,12:07:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
780,-,1131566825,2005.11.09,tbird-admin1,Nov,9,12:07:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
781,-,1131566827,2005.11.09,tbird-admin1,Nov,9,12:07:07,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
782,-,1131566828,2005.11.09,tbird-admin1,Nov,9,12:07:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
783,-,1131566828,2005.11.09,tbird-admin1,Nov,9,12:07:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
784,-,1131566828,2005.11.09,tbird-admin1,Nov,9,12:07:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
785,-,1131566829,2005.11.09,bn515,Nov,9,12:07:09,bn515/bn515,ntpd,10009,"synchronized to 10.100.10.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
786,-,1131566829,2005.11.09,cn302,Nov,9,12:07:09,cn302/cn302,ntpd,23306,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
787,-,1131566829,2005.11.09,tbird-admin1,Nov,9,12:07:09,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
788,-,1131566832,2005.11.09,tbird-admin1,Nov,9,12:07:12,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
789,-,1131566833,2005.11.09,tbird-admin1,Nov,9,12:07:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
790,-,1131566834,2005.11.09,bn64,Nov,9,12:07:14,bn64/bn64,ntpd,22058,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
791,-,1131566834,2005.11.09,cn390,Nov,9,12:07:14,cn390/cn390,ntpd,10152,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
792,-,1131566834,2005.11.09,tbird-admin1,Nov,9,12:07:14,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
793,-,1131566834,2005.11.09,tbird-admin1,Nov,9,12:07:14,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
794,-,1131566834,2005.11.09,tbird-sm1,Nov,9,12:07:14,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
795,-,1131566835,2005.11.09,bn857,Nov,9,12:07:15,bn857/bn857,ntpd,31082,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
796,-,1131566835,2005.11.09,cn111,Nov,9,12:07:15,cn111/cn111,ntpd,19822,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
797,-,1131566836,2005.11.09,bn12,Nov,9,12:07:16,bn12/bn12,ntpd,22508,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
798,-,1131566836,2005.11.09,tbird-admin1,Nov,9,12:07:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
799,-,1131566838,2005.11.09,tbird-admin1,Nov,9,12:07:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
800,-,1131566838,2005.11.09,tbird-admin1,Nov,9,12:07:18,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
801,-,1131566838,2005.11.09,tbird-sm1,Nov,9,12:07:18,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
802,-,1131566838,2005.11.09,tbird-sm1,Nov,9,12:07:18,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
803,-,1131566839,2005.11.09,cn802,Nov,9,12:07:19,cn802/cn802,ntpd,28663,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
804,-,1131566839,2005.11.09,tbird-admin1,Nov,9,12:07:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
805,-,1131566840,2005.11.09,cn211,Nov,9,12:07:20,cn211/cn211,ntpd,20018,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
806,-,1131566841,2005.11.09,bn211,Nov,9,12:07:21,bn211/bn211,ntpd,22411,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
807,-,1131566842,2005.11.09,bn643,Nov,9,12:07:22,bn643/bn643,ntpd,22442,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
808,-,1131566842,2005.11.09,tbird-admin1,Nov,9,12:07:22,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
809,-,1131566843,2005.11.09,tbird-admin1,Nov,9,12:07:23,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
810,-,1131566844,2005.11.09,tbird-admin1,Nov,9,12:07:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
811,-,1131566845,2005.11.09,bn731,Nov,9,12:07:25,bn731/bn731,ntpd,23983,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
812,-,1131566846,2005.11.09,tbird-admin1,Nov,9,12:07:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
813,-,1131566847,2005.11.09,tbird-admin1,Nov,9,12:07:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
814,-,1131566847,2005.11.09,tbird-admin1,Nov,9,12:07:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
815,-,1131566847,2005.11.09,tbird-admin1,Nov,9,12:07:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
816,-,1131566848,2005.11.09,cn92,Nov,9,12:07:28,cn92/cn92,ntpd,19774,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
817,-,1131566848,2005.11.09,dn235,Nov,9,12:07:28,dn235/dn235,ntpd,11149,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
818,-,1131566848,2005.11.09,tbird-sm1,Nov,9,12:07:28,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
819,-,1131566849,2005.11.09,cn698,Nov,9,12:07:29,cn698/cn698,ntpd,22859,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
820,-,1131566849,2005.11.09,tbird-admin1,Nov,9,12:07:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
821,-,1131566851,2005.11.09,tbird-admin1,Nov,9,12:07:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
822,-,1131566851,2005.11.09,tbird-admin1,Nov,9,12:07:31,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
823,-,1131566852,2005.11.09,tbird-admin1,Nov,9,12:07:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
824,-,1131566852,2005.11.09,tbird-sm1,Nov,9,12:07:32,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
825,-,1131566852,2005.11.09,tbird-sm1,Nov,9,12:07:32,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
826,-,1131566853,2005.11.09,cn834,Nov,9,12:07:33,cn834/cn834,ntpd,28063,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
827,-,1131566853,2005.11.09,cn849,Nov,9,12:07:33,cn849/cn849,ntpd,28038,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
828,-,1131566853,2005.11.09,tbird-admin1,Nov,9,12:07:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
829,-,1131566854,2005.11.09,cn73,Nov,9,12:07:34,cn73/cn73,ntpd,14737,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
830,-,1131566854,2005.11.09,tbird-admin1,Nov,9,12:07:34,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
831,-,1131566855,2005.11.09,cn199,Nov,9,12:07:35,cn199/cn199,ntpd,20202,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
832,-,1131566855,2005.11.09,cn495,Nov,9,12:07:35,cn495/cn495,ntpd,15499,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
833,-,1131566855,2005.11.09,tbird-admin1,Nov,9,12:07:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
834,-,1131566857,2005.11.09,tbird-admin1,Nov,9,12:07:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
835,-,1131566857,2005.11.09,tbird-admin1,Nov,9,12:07:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
836,-,1131566858,2005.11.09,bn513,Nov,9,12:07:38,bn513/bn513,ntpd,12964,"synchronized to 10.100.10.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
837,-,1131566858,2005.11.09,cn318,Nov,9,12:07:38,cn318/cn318,ntpd,19988,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
838,-,1131566858,2005.11.09,tbird-admin1,Nov,9,12:07:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
839,-,1131566858,2005.11.09,tbird-admin1,Nov,9,12:07:38,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
840,-,1131566859,2005.11.09,tbird-admin1,Nov,9,12:07:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
841,-,1131566860,2005.11.09,tbird-admin1,Nov,9,12:07:40,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
842,-,1131566861,2005.11.09,cn538,Nov,9,12:07:41,cn538/cn538,ntpd,7709,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
843,-,1131566862,2005.11.09,tbird-admin1,Nov,9,12:07:42,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
844,-,1131566862,2005.11.09,tbird-sm1,Nov,9,12:07:42,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
845,-,1131566863,2005.11.09,cn666,Nov,9,12:07:43,cn666/cn666,ntpd,18497,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
846,-,1131566863,2005.11.09,cn913,Nov,9,12:07:43,cn913/cn913,ntpd,23974,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
847,-,1131566864,2005.11.09,bn676,Nov,9,12:07:44,bn676/bn676,ntpd,27517,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
848,-,1131566864,2005.11.09,tbird-admin1,Nov,9,12:07:44,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
849,-,1131566866,2005.11.09,cn844,Nov,9,12:07:46,cn844/cn844,ntpd,28132,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
850,-,1131566866,2005.11.09,tbird-admin1,Nov,9,12:07:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
851,-,1131566866,2005.11.09,tbird-sm1,Nov,9,12:07:46,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
852,-,1131566866,2005.11.09,tbird-sm1,Nov,9,12:07:46,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
853,-,1131566869,2005.11.09,tbird-admin1,Nov,9,12:07:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
854,-,1131566869,2005.11.09,tbird-admin1,Nov,9,12:07:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
855,-,1131566869,2005.11.09,tbird-admin1,Nov,9,12:07:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
856,-,1131566871,2005.11.09,dn846,Nov,9,12:07:51,dn846/dn846,ntpd,3473,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
857,-,1131566871,2005.11.09,tbird-admin1,Nov,9,12:07:51,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
858,-,1131566872,2005.11.09,tbird-admin1,Nov,9,12:07:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
859,-,1131566872,2005.11.09,tbird-admin1,Nov,9,12:07:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
860,-,1131566872,2005.11.09,tbird-admin1,Nov,9,12:07:52,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
861,-,1131566873,2005.11.09,bn760,Nov,9,12:07:53,bn760/bn760,ntpd,22562,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
862,-,1131566873,2005.11.09,cn540,Nov,9,12:07:53,cn540/cn540,ntpd,15654,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
863,-,1131566875,2005.11.09,bn764,Nov,9,12:07:55,bn764/bn764,ntpd,23121,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
864,-,1131566875,2005.11.09,cn874,Nov,9,12:07:55,cn874/cn874,ntpd,29629,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
865,-,1131566876,2005.11.09,bn138,Nov,9,12:07:56,bn138/bn138,ntpd,10870,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
866,-,1131566876,2005.11.09,tbird-sm1,Nov,9,12:07:56,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
867,-,1131566878,2005.11.09,tbird-admin1,Nov,9,12:07:58,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
868,-,1131566879,2005.11.09,tbird-admin1,Nov,9,12:07:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
869,-,1131566879,2005.11.09,tbird-admin1,Nov,9,12:07:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
870,-,1131566880,2005.11.09,tbird-admin1,Nov,9,12:08:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
871,-,1131566880,2005.11.09,tbird-sm1,Nov,9,12:08:00,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
872,-,1131566880,2005.11.09,tbird-sm1,Nov,9,12:08:00,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
873,-,1131566881,2005.11.09,bn822,Nov,9,12:08:01,bn822/bn822,ntpd,24887,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
874,-,1131566881,2005.11.09,tbird-admin1,Nov,9,12:08:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
875,-,1131566881,2005.11.09,tbird-admin1,Nov,9,12:08:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
876,-,1131566882,2005.11.09,tbird-admin1,Nov,9,12:08:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
877,-,1131566883,2005.11.09,bn834,Nov,9,12:08:03,bn834/bn834,ntpd,21716,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
878,-,1131566883,2005.11.09,cn544,Nov,9,12:08:03,cn544/cn544,ntpd,15964,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
879,-,1131566883,2005.11.09,tbird-admin1,Nov,9,12:08:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
880,-,1131566884,2005.11.09,tbird-admin1,Nov,9,12:08:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
881,-,1131566884,2005.11.09,tbird-admin1,Nov,9,12:08:04,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
882,-,1131566885,2005.11.09,bn316,Nov,9,12:08:05,bn316/bn316,ntpd,29439,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
883,-,1131566885,2005.11.09,cn591,Nov,9,12:08:05,cn591/cn591,ntpd,17957,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
884,-,1131566885,2005.11.09,tbird-admin1,Nov,9,12:08:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
885,-,1131566885,2005.11.09,tbird-admin1,Nov,9,12:08:05,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
886,-,1131566886,2005.11.09,tbird-admin1,Nov,9,12:08:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
887,-,1131566886,2005.11.09,tbird-admin1,Nov,9,12:08:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
888,-,1131566887,2005.11.09,dn926,Nov,9,12:08:07,dn926/dn926,ntpd,4254,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
889,-,1131566888,2005.11.09,cn202,Nov,9,12:08:08,cn202/cn202,ntpd,19825,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
890,-,1131566888,2005.11.09,tbird-admin1,Nov,9,12:08:08,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
891,-,1131566889,2005.11.09,cn113,Nov,9,12:08:09,cn113/cn113,ntpd,26144,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
892,-,1131566890,2005.11.09,tbird-admin1,Nov,9,12:08:10,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
893,-,1131566890,2005.11.09,tbird-sm1,Nov,9,12:08:10,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
894,-,1131566891,2005.11.09,cn18,Nov,9,12:08:11,cn18/cn18,ntpd,25277,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
895,-,1131566891,2005.11.09,tbird-admin1,Nov,9,12:08:11,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
896,-,1131566893,2005.11.09,tbird-admin1,Nov,9,12:08:13,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
897,-,1131566894,2005.11.09,tbird-sm1,Nov,9,12:08:14,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
898,-,1131566894,2005.11.09,tbird-sm1,Nov,9,12:08:14,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
899,-,1131566896,2005.11.09,tbird-admin1,Nov,9,12:08:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
900,-,1131566896,2005.11.09,tbird-admin1,Nov,9,12:08:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
901,-,1131566896,2005.11.09,tbird-admin1,Nov,9,12:08:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
902,-,1131566896,2005.11.09,tbird-admin1,Nov,9,12:08:16,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
903,-,1131566897,2005.11.09,cn277,Nov,9,12:08:17,cn277/cn277,ntpd,12185,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
904,-,1131566897,2005.11.09,cn91,Nov,9,12:08:17,cn91/cn91,ntpd,19566,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
905,-,1131566897,2005.11.09,tbird-admin1,Nov,9,12:08:17,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
906,-,1131566899,2005.11.09,cn420,Nov,9,12:08:19,cn420/cn420,ntpd,12970,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
907,-,1131566899,2005.11.09,tbird-admin1,Nov,9,12:08:19,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
908,-,1131566901,2005.11.09,bn567,Nov,9,12:08:21,bn567/bn567,ntpd,30178,"synchronized to 10.100.14.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
909,-,1131566901,2005.11.09,cn204,Nov,9,12:08:21,cn204/cn204,ntpd,25330,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
910,-,1131566901,2005.11.09,tbird-admin1,Nov,9,12:08:21,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
911,-,1131566902,2005.11.09,cn936,Nov,9,12:08:22,cn936/cn936,ntpd,29168,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
912,-,1131566903,2005.11.09,cn336,Nov,9,12:08:23,cn336/cn336,ntpd,28515,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
913,-,1131566904,2005.11.09,dn809,Nov,9,12:08:24,dn809/dn809,ntpd,599,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
914,-,1131566904,2005.11.09,tbird-admin1,Nov,9,12:08:24,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
915,-,1131566904,2005.11.09,tbird-sm1,Nov,9,12:08:24,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
916,-,1131566905,2005.11.09,tbird-admin1,Nov,9,12:08:25,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
917,-,1131566906,2005.11.09,cn215,Nov,9,12:08:26,cn215/cn215,ntpd,10640,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
918,-,1131566906,2005.11.09,dn637,Nov,9,12:08:26,dn637/dn637,ntpd,1218,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
919,-,1131566906,2005.11.09,tbird-admin1,Nov,9,12:08:26,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
920,-,1131566907,2005.11.09,tbird-admin1,Nov,9,12:08:27,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
921,-,1131566908,2005.11.09,cn167,Nov,9,12:08:28,cn167/cn167,ntpd,10064,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
922,-,1131566908,2005.11.09,tbird-admin1,Nov,9,12:08:28,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
923,-,1131566908,2005.11.09,tbird-sm1,Nov,9,12:08:28,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
924,-,1131566908,2005.11.09,tbird-sm1,Nov,9,12:08:28,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
925,-,1131566909,2005.11.09,tbird-admin1,Nov,9,12:08:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
926,-,1131566909,2005.11.09,tbird-admin1,Nov,9,12:08:29,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
927,-,1131566910,2005.11.09,tbird-admin1,Nov,9,12:08:30,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
928,-,1131566912,2005.11.09,bn115,Nov,9,12:08:32,bn115/bn115,ntpd,22400,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
929,-,1131566912,2005.11.09,cn132,Nov,9,12:08:32,cn132/cn132,ntpd,29020,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
930,-,1131566912,2005.11.09,tbird-admin1,Nov,9,12:08:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
931,-,1131566912,2005.11.09,tbird-admin1,Nov,9,12:08:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
932,-,1131566912,2005.11.09,tbird-admin1,Nov,9,12:08:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
933,-,1131566912,2005.11.09,tbird-admin1,Nov,9,12:08:32,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
934,-,1131566913,2005.11.09,tbird-admin1,Nov,9,12:08:33,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
935,-,1131566914,2005.11.09,bn889,Nov,9,12:08:34,bn889/bn889,ntpd,24455,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
936,-,1131566915,2005.11.09,tbird-admin1,Nov,9,12:08:35,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
937,-,1131566916,2005.11.09,tbird-admin1,Nov,9,12:08:36,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
938,-,1131566917,2005.11.09,bn138,Nov,9,12:08:37,bn138/bn138,ntpd,10870,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
939,-,1131566917,2005.11.09,cn226,Nov,9,12:08:37,cn226/cn226,ntpd,7473,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
940,-,1131566917,2005.11.09,tbird-admin1,Nov,9,12:08:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
941,-,1131566917,2005.11.09,tbird-admin1,Nov,9,12:08:37,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
942,-,1131566918,2005.11.09,tbird-sm1,Nov,9,12:08:38,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
943,-,1131566919,2005.11.09,tbird-admin1,Nov,9,12:08:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,RRD_update (/var/lib/ganglia/rrds/D Nodes/dn731/pkts_out.rrd): illegal attempt to update using time 1131563319 when last update time is 1131563319 (minimum one second step),E111,RRD_update (/var/lib/ganglia/rrds/<*>.rrd): illegal attempt to update using time <*> when last update time is <*> (minimum one second step)
944,-,1131566919,2005.11.09,tbird-admin1,Nov,9,12:08:39,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
945,-,1131566920,2005.11.09,bn338,Nov,9,12:08:40,bn338/bn338,ntpd,29108,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
946,-,1131566920,2005.11.09,cn193,Nov,9,12:08:40,cn193/cn193,ntpd,20725,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
947,-,1131566922,2005.11.09,tbird-sm1,Nov,9,12:08:42,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
948,-,1131566922,2005.11.09,tbird-sm1,Nov,9,12:08:42,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
949,-,1131566923,2005.11.09,cn562,Nov,9,12:08:43,cn562/cn562,ntpd,17910,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
950,-,1131566923,2005.11.09,tbird-admin1,Nov,9,12:08:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
951,-,1131566923,2005.11.09,tbird-admin1,Nov,9,12:08:43,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
952,-,1131566924,2005.11.09,bn831,Nov,9,12:08:44,bn831/bn831,ntpd,21860,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
953,-,1131566924,2005.11.09,cn517,Nov,9,12:08:44,cn517/cn517,ntpd,15846,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
954,-,1131566924,2005.11.09,tbird-admin1,Nov,9,12:08:44,local@tbird-admin1,ntpd,1815,"synchronized to LOCAL(0), stratum 10",E125,"synchronized to <*>, stratum <*>"
955,-,1131566925,2005.11.09,bn115,Nov,9,12:08:45,bn115/bn115,ntpd,22400,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
956,-,1131566925,2005.11.09,tbird-admin1,Nov,9,12:08:45,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
957,-,1131566925,2005.11.09,tbird-admin1,Nov,9,12:08:45,local@tbird-admin1,ntpd,1815,kernel time sync enabled 0001,E62,kernel time sync enabled <*>
958,-,1131566925,2005.11.09,tbird-admin1,Nov,9,12:08:45,local@tbird-admin1,ntpd,1815,"synchronized to #3#, stratum 1",E125,"synchronized to <*>, stratum <*>"
959,-,1131566926,2005.11.09,bn71,Nov,9,12:08:46,bn71/bn71,ntpd,22508,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
960,-,1131566926,2005.11.09,cn548,Nov,9,12:08:46,cn548/cn548,ntpd,14756,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
961,-,1131566926,2005.11.09,tbird-admin1,Nov,9,12:08:46,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
962,-,1131566927,2005.11.09,cn15,Nov,9,12:08:47,cn15/cn15,ntpd,15650,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
963,-,1131566927,2005.11.09,tbird-admin1,Nov,9,12:08:47,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
964,-,1131566928,2005.11.09,tbird-admin1,Nov,9,12:08:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
965,-,1131566928,2005.11.09,tbird-admin1,Nov,9,12:08:48,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
966,-,1131566929,2005.11.09,tbird-admin1,Nov,9,12:08:49,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
967,-,1131566930,2005.11.09,tbird-admin1,Nov,9,12:08:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
968,-,1131566930,2005.11.09,tbird-admin1,Nov,9,12:08:50,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
969,-,1131566931,2005.11.09,bn138,Nov,9,12:08:51,bn138/bn138,ntpd,10870,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
970,-,1131566931,2005.11.09,bn85,Nov,9,12:08:51,bn85/bn85,ntpd,23096,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
971,-,1131566931,2005.11.09,dn345,Nov,9,12:08:51,dn345/dn345,ntpd,32322,"synchronized to 10.100.26.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
972,-,1131566932,2005.11.09,tbird-sm1,Nov,9,12:08:52,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
973,-,1131566933,2005.11.09,tbird-admin1,Nov,9,12:08:53,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A2] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
974,-,1131566934,2005.11.09,cn407,Nov,9,12:08:54,cn407/cn407,ntpd,12879,"synchronized to 10.100.18.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
975,-,1131566934,2005.11.09,dn755,Nov,9,12:08:54,dn755/dn755,ntpd,32153,"synchronized to 10.100.28.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
976,-,1131566935,2005.11.09,tbird-admin1,Nov,9,12:08:55,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
977,-,1131566936,2005.11.09,tbird-admin1,Nov,9,12:08:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
978,-,1131566936,2005.11.09,tbird-admin1,Nov,9,12:08:56,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
979,-,1131566936,2005.11.09,tbird-sm1,Nov,9,12:08:56,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1455]: No topology change,E6,[ib_sm_sweep.c:1455]: No topology change
980,-,1131566936,2005.11.09,tbird-sm1,Nov,9,12:08:56,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1482]: No configuration change required,E7,[ib_sm_sweep.c:1482]: No configuration change required
981,-,1131566937,2005.11.09,cn853,Nov,9,12:08:57,cn853/cn853,ntpd,27979,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
982,-,1131566939,2005.11.09,tbird-admin1,Nov,9,12:08:59,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C6] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
983,-,1131566940,2005.11.09,bn85,Nov,9,12:09:00,bn85/bn85,ntpd,23096,"synchronized to 10.100.22.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
984,-,1131566940,2005.11.09,cn225,Nov,9,12:09:00,cn225/cn225,ntpd,10661,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
985,-,1131566940,2005.11.09,tbird-admin1,Nov,9,12:09:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
986,-,1131566940,2005.11.09,tbird-admin1,Nov,9,12:09:00,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
987,-,1131566941,2005.11.09,cn204,Nov,9,12:09:01,cn204/cn204,ntpd,25330,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
988,-,1131566941,2005.11.09,tbird-admin1,Nov,9,12:09:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A1] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
989,-,1131566941,2005.11.09,tbird-admin1,Nov,9,12:09:01,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_C5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
990,-,1131566942,2005.11.09,dn210,Nov,9,12:09:02,dn210/dn210,ntpd,11163,"synchronized to 10.100.24.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
991,-,1131566942,2005.11.09,tbird-admin1,Nov,9,12:09:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B4] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
992,-,1131566942,2005.11.09,tbird-admin1,Nov,9,12:09:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D5] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
993,-,1131566942,2005.11.09,tbird-admin1,Nov,9,12:09:02,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_D8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
994,-,1131566943,2005.11.09,tbird-admin1,Nov,9,12:09:03,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_A8] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
995,-,1131566946,2005.11.09,cn387,Nov,9,12:09:06,cn387/cn387,ntpd,10199,"synchronized to 10.100.20.250, stratum 3",E125,"synchronized to <*>, stratum <*>"
996,-,1131566946,2005.11.09,tbird-admin1,Nov,9,12:09:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B3] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
997,-,1131566946,2005.11.09,tbird-admin1,Nov,9,12:09:06,local@tbird-admin1,/apps/x86_64/system/ganglia-3.0.1/sbin/gmetad,1682,data_thread() got not answer from any [Thunderbird_B7] datasource,E32,data_thread() got not answer from any [Thunderbird_<*>] datasource
998,-,1131566946,2005.11.09,tbird-sm1,Nov,9,12:09:06,src@tbird-sm1,ib_sm.x,24904,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************,E8,[ib_sm_sweep.c:1831]: ********************** NEW SWEEP ********************
999,-,1131566947,2005.11.09,cn959,Nov,9,12:09:07,cn959/cn959,ntpd,19944,"synchronized to 10.100.16.250, stratum 3",E125,"synchronized to <*>, stratum <*>"