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,LogId,Node,Component,State,Time,Flag,Content,EventId,EventTemplate
1,134681,node-246,unix.hw,state_change.unavailable,1077804742,1,Component State Change: Component \042SCSI-WWID:01000010:6005-08b4-0001-00c6-0006-3000-003d-0000\042 is in the unavailable state (HWID=1973),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
2,350766,node-109,unix.hw,state_change.unavailable,1084680778,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=3180),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
3,344518,node-246,unix.hw,state_change.unavailable,1084270955,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=5089),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
4,344448,node-153,unix.hw,state_change.unavailable,1084270952,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=4088),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
5,366633,node-200,unix.hw,state_change.unavailable,1085100843,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=2538),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
6,366463,node-122,unix.hw,state_change.unavailable,1085084674,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=2480),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
7,438190,node-228,unix.hw,state_change.unavailable,1097194780,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=3713),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
8,225111,node-10,unix.hw,state_change.unavailable,1117296789,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=3891),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
9,360778,node-130,unix.hw,state_change.unavailable,1141108031,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=2478),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
10,401569,node-169,unix.hw,state_change.unavailable,1142550406,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=2969),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
11,401855,node-187,unix.hw,state_change.unavailable,1142553646,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=4159),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
12,460773,node-199,unix.hw,state_change.unavailable,1145552100,1,Component State Change: Component \042alt0\042 is in the unavailable state (HWID=2608),E13,Component State Change: Component <*> is in the unavailable state (HWID=<*>)
13,2568643,node-70,action,start,1074119817,1,clusterAddMember (command 1902),E8,clusterAddMember (command <*>)
14,2570772,node-124,action,start,1074123150,1,clusterAddMember (command 1900),E8,clusterAddMember (command <*>)
15,2571927,node-28,action,start,1074125371,1,risBoot (command 1903),E36,risBoot (command <*>)
16,2572286,node-17,action,start,1074126278,1,bootGenvmunix (command 1903),E6,bootGenvmunix (command <*>)
17,2575909,node-162,action,start,1074178193,1,boot (command 1911),E4,boot (command <*>)
18,2576195,node-181,action,start,1074178628,1,boot (command 1910),E4,boot (command <*>)
19,2599298,node-198,action,start,1074297419,1,boot (command 1978),E4,boot (command <*>)
20,2600743,node-57,action,start,1074298084,1,boot (command 1967),E4,boot (command <*>)
21,2601401,node-184,action,start,1074298390,1,wait (command 1975),E45,wait (command <*>)
22,2612635,node-88,action,start,1074535847,1,boot (command 1999),E4,boot (command <*>)
23,2608062,node-238,action,start,1074461014,1,halt (command 1982),E19,halt (command <*>)
24,2607813,node-243,action,start,1074459063,1,boot (command 1981),E4,boot (command <*>)
25,2600616,node-152,action,start,1074298056,1,boot (command 1973),E4,boot (command <*>)
26,2601430,node-159,action,start,1074298398,1,wait (command 1973),E45,wait (command <*>)
27,3515,node-216,action,start,1075629790,1,wait (command 2057),E45,wait (command <*>)
28,41108,node-93,action,start,1076538873,1,boot (command 2152),E4,boot (command <*>)
29,39962,node-134,action,start,1076538533,1,wait (command 2154),E45,wait (command <*>)
30,38426,node-17,action,start,1076537141,1,boot (command 2141),E4,boot (command <*>)
31,33697,node-251,action,start,1076435713,1,boot (command 2110),E4,boot (command <*>)
32,46302,node-114,action,start,1076546290,1,boot (command 2160),E4,boot (command <*>)
33,76306,node-57,action,start,1077204892,1,halt (command 2221),E19,halt (command <*>)
34,75035,node-116,action,start,1077172847,1,wait (command 2217),E45,wait (command <*>)
35,75026,node-119,action,start,1077172842,1,wait (command 2217),E45,wait (command <*>)
36,66410,node-226,action,start,1076874863,1,wait (command 2201),E45,wait (command <*>)
37,64231,node-224,action,start,1076871482,1,wait (command 2199),E45,wait (command <*>)
38,61193,node-25,action,start,1076865929,1,boot (command 2183),E4,boot (command <*>)
39,59888,node-105,action,start,1076865608,1,wait (command 2189),E45,wait (command <*>)
40,106268,node-178,action,start,1077739942,1,wait (command 2302),E45,wait (command <*>)
41,95046,node-118,action,start,1077647123,1,wait (command 2270),E45,wait (command <*>)
42,93084,node-239,action,start,1077645240,1,wait (command 2257),E45,wait (command <*>)
43,93083,node-242,action,start,1077645240,1,boot (command 2257),E4,boot (command <*>)
44,137423,node-28,action,start,1077809713,1,boot (command 2316),E4,boot (command <*>)
45,138728,node-25,action,start,1077810165,1,boot (command 2316),E4,boot (command <*>)
46,139640,node-120,action,start,1077810494,1,wait (command 2322),E45,wait (command <*>)
47,143923,node-195,action,start,1077816813,1,wait (command 2354),E45,wait (command <*>)
48,146443,node-123,action,start,1077817656,1,wait (command 2347),E45,wait (command <*>)
49,157583,node-196,action,start,1077873102,1,boot (command 2368),E4,boot (command <*>)
50,160960,node-3,action,start,1077875823,1,boot (command 2392),E4,boot (command <*>)
51,162927,node-2,action,start,1077877886,1,boot (command 2406),E4,boot (command <*>)
52,163146,node-206,action,start,1077878060,1,boot (command 2417),E4,boot (command <*>)
53,164418,node-45,action,start,1077881141,1,boot (command 2423),E4,boot (command <*>)
54,165793,node-89,action,start,1077881713,1,wait (command 2424),E45,wait (command <*>)
55,177730,node-200,action,start,1077894469,1,wait (command 2449),E45,wait (command <*>)
56,185712,node-60,action,start,1077902963,1,boot (command 2464),E4,boot (command <*>)
57,186693,node-125,action,start,1077903223,1,wait (command 2468),E45,wait (command <*>)
58,222526,node-206,action,start,1078490898,1,boot (command 2520),E4,boot (command <*>)
59,217214,node-241,action,start,1078468230,1,wait (command 2517),E45,wait (command <*>)
60,217168,node-248,action,start,1078468218,1,boot (command 2517),E4,boot (command <*>)
61,217100,node-148,action,start,1078468203,1,wait (command 2511),E45,wait (command <*>)
62,217007,node-179,action,start,1078468187,1,wait (command 2513),E45,wait (command <*>)
63,214978,node-161,action,start,1078467481,1,boot (command 2514),E4,boot (command <*>)
64,201811,node-76,action,start,1078162366,1,wait (command 2484),E45,wait (command <*>)
65,264003,node-176,action,start,1079249218,1,boot (command 2625),E4,boot (command <*>)
66,256981,node-58,action,start,1079070194,1,wait (command 2607),E45,wait (command <*>)
67,256874,node-90,action,start,1079070177,1,boot (command 2616),E4,boot (command <*>)
68,256848,node-185,action,start,1079070175,1,boot (command 2619),E4,boot (command <*>)
69,256223,node-82,action,start,1079070000,1,boot (command 2616),E4,boot (command <*>)
70,256162,node-80,action,start,1079069993,1,boot (command 2616),E4,boot (command <*>)
71,254534,node-129,action,start,1079069377,1,boot (command 2602),E4,boot (command <*>)
72,247848,node-157,action,start,1079049069,1,wait (command 2582),E45,wait (command <*>)
73,245027,node-175,action,start,1079048210,1,boot (command 2584),E4,boot (command <*>)
74,236520,node-43,action,start,1079015170,1,wait (command 2549),E45,wait (command <*>)
75,235608,node-34,action,start,1079014799,1,boot (command 2550),E4,boot (command <*>)
76,235599,node-2,action,start,1079014796,1,boot (command 2548),E4,boot (command <*>)
77,233507,node-227,action,start,1079012648,1,boot (command 2538),E4,boot (command <*>)
78,274455,node-100,action,start,1079616550,1,wait (command 2683),E45,wait (command <*>)
79,276059,node-190,action,start,1079617054,1,boot (command 2686),E4,boot (command <*>)
80,276581,node-120,action,start,1079617260,1,wait (command 2682),E45,wait (command <*>)
81,294548,node-216,action,start,1081392152,1,wait (command 2763),E45,wait (command <*>)
82,301979,node-1,action,start,1081998493,1,wait (command 2800),E45,wait (command <*>)
83,300380,node-109,action,start,1081880821,1,boot (command 2790),E4,boot (command <*>)
84,307531,node-9,action,start,1082038490,1,wait (command 2817),E45,wait (command <*>)
85,307999,node-112,action,start,1082038630,1,wait (command 2823),E45,wait (command <*>)
86,309387,node-27,action,start,1082039069,1,wait (command 2817),E45,wait (command <*>)
87,326403,node-150,action,start,1083202417,1,wait (command 2900),E45,wait (command <*>)
88,324109,node-232,action,start,1083200791,1,wait (command 2885),E45,wait (command <*>)
89,338620,node-237,action,start,1083304818,1,wait (command 2909),E45,wait (command <*>)
90,362348,node-220,action,start,1085071596,1,boot (command 2960),E4,boot (command <*>)
91,360562,node-229,action,start,1085071024,1,wait (command 2963),E45,wait (command <*>)
92,374171,node-26,action,start,1086022370,1,boot (command 2999),E4,boot (command <*>)
93,373784,node-147,action,start,1085979758,1,halt (command 2992),E19,halt (command <*>)
94,402485,node-205,action,start,1089897107,1,wait (command 3087),E45,wait (command <*>)
95,402097,node-73,action,start,1089897051,1,wait (command 3079),E45,wait (command <*>)
96,401359,node-34,action,start,1089896823,1,wait (command 3078),E45,wait (command <*>)
97,429535,node-124,action,start,1095347018,1,wait (command 3141),E45,wait (command <*>)
98,426656,node-33,action,start,1095346191,1,boot (command 3138),E4,boot (command <*>)
99,437355,node-19,action,start,1096995511,1,boot (command 3169),E4,boot (command <*>)
100,437261,node-10,action,start,1096995263,1,boot (command 3169),E4,boot (command <*>)
101,443445,node-80,action,start,1098389763,1,boot (command 3194),E4,boot (command <*>)
102,19244,node-194,action,start,1100785255,1,boot (command 3320),E4,boot (command <*>)
103,19258,node-167,action,start,1100785255,1,boot (command 3318),E4,boot (command <*>)
104,20797,node-188,action,start,1100785975,1,boot (command 3317),E4,boot (command <*>)
105,21457,node-216,action,start,1100786301,1,wait (command 3319),E45,wait (command <*>)
106,32761,node-17,action,start,1102475613,1,wait (command 3334),E45,wait (command <*>)
107,32609,node-10,action,start,1102475187,1,boot (command 3334),E4,boot (command <*>)
108,70287,node-70,action,start,1108647096,1,wait (command 3412),E45,wait (command <*>)
109,70708,node-115,action,start,1108647304,1,boot (command 3413),E4,boot (command <*>)
110,112147,node-82,action,start,1111072078,1,boot (command 3473),E4,boot (command <*>)
111,136495,node-150,action,start,1111865182,1,wait (command 3523),E45,wait (command <*>)
112,136459,node-208,action,start,1111865169,1,wait (command 3525),E45,wait (command <*>)
113,134514,node-254,action,start,1111862672,1,wait (command 3519),E45,wait (command <*>)
114,134299,node-251,action,start,1111862280,1,boot (command 3519),E4,boot (command <*>)
115,128650,node-231,action,start,1111855559,1,boot (command 3512),E4,boot (command <*>)
116,163965,node-195,action,start,1114095465,1,boot (command 3579),E4,boot (command <*>)
117,164990,node-114,action,start,1114095917,1,boot (command 3572),E4,boot (command <*>)
118,165357,node-246,action,start,1114095982,1,boot (command 3580),E4,boot (command <*>)
119,208690,node-65,action,start,1116601343,1,wait (command 3612),E45,wait (command <*>)
120,208761,node-147,action,start,1116601359,1,boot (command 3615),E4,boot (command <*>)
121,210411,node-40,action,start,1116601982,1,wait (command 3609),E45,wait (command <*>)
122,211063,node-18,action,start,1116604606,1,boot (command 3624),E4,boot (command <*>)
123,212813,node-239,action,start,1116611765,1,wait (command 3649),E45,wait (command <*>)
124,213303,node-83,action,start,1116611976,1,boot (command 3639),E4,boot (command <*>)
125,252407,node-46,action,start,1118929077,1,wait (command 3690),E45,wait (command <*>)
126,252602,node-145,action,start,1118929116,1,boot (command 3696),E4,boot (command <*>)
127,252613,node-174,action,start,1118929118,1,wait (command 3698),E45,wait (command <*>)
128,276418,node-84,action,start,1119845504,1,wait (command 3709),E45,wait (command <*>)
129,55715,node-89,action,start,1126813838,1,wait (command 3837),E45,wait (command <*>)
130,55940,node-255,action,start,1126814027,1,wait (command 3847),E45,wait (command <*>)
131,173915,node-59,action,start,1131220838,1,boot (command 3951),E4,boot (command <*>)
132,172312,node-27,action,start,1131216880,1,boot (command 3928),E4,boot (command <*>)
133,170334,node-161,action,start,1131215738,1,boot (command 3939),E4,boot (command <*>)
134,191604,node-13,action,start,1131239917,1,boot (command 3964),E4,boot (command <*>)
135,193032,node-46,action,start,1131241563,1,wait (command 3973),E45,wait (command <*>)
136,194265,node-186,action,start,1131242308,1,wait (command 3981),E45,wait (command <*>)
137,194301,node-185,action,start,1131242355,1,wait (command 3981),E45,wait (command <*>)
138,220288,node-194,action,start,1132159257,1,boot (command 4024),E4,boot (command <*>)
139,288620,node-150,action,start,1134671414,1,wait (command 4061),E45,wait (command <*>)
140,329026,node-111,action,start,1140100216,1,wait (command 4110),E45,wait (command <*>)
141,328665,node-234,action,start,1140100074,1,boot (command 4118),E4,boot (command <*>)
142,328498,node-218,action,start,1140099980,1,wait (command 4116),E45,wait (command <*>)
143,328095,node-194,action,start,1140099718,1,wait (command 4117),E45,wait (command <*>)
144,328040,node-67,action,start,1140099563,1,boot (command 4109),E4,boot (command <*>)
145,374387,node-116,action,start,1141676760,1,wait (command 4145),E45,wait (command <*>)
146,397088,node-148,action,start,1142527921,1,boot (command 4176),E4,boot (command <*>)
147,397742,node-56,action,start,1142528184,1,boot (command 4170),E4,boot (command <*>)
148,397899,node-150,action,start,1142528212,1,wait (command 4176),E45,wait (command <*>)
149,398541,node-154,action,start,1142528540,1,wait (command 4176),E45,wait (command <*>)
150,401417,node-129,action,start,1142537875,1,bootGenvmunix (command 4185),E6,bootGenvmunix (command <*>)
151,460486,node-181,action,start,1145552039,1,boot (command 4223),E4,boot (command <*>)
152,460596,node-143,action,start,1145552056,1,wait (command 4221),E45,wait (command <*>)
153,461572,node-116,action,start,1145552379,1,wait (command 4219),E45,wait (command <*>)
154,2566692,1897,boot_cmd,success,1073991950,1,Command has completed successfully,E12,Command has completed successfully
155,2614626,2001,boot_cmd,success,1074752045,1,Command has completed successfully,E12,Command has completed successfully
156,178176,2428,boot_cmd,success,1077894737,1,Command has completed successfully,E12,Command has completed successfully
157,247935,2568,boot_cmd,success,1079049124,1,Command has completed successfully,E12,Command has completed successfully
158,274749,2685,boot_cmd,success,1079616724,1,Command has completed successfully,E12,Command has completed successfully
159,301526,2797,boot_cmd,success,1081993794,1,Command has completed successfully,E12,Command has completed successfully
160,427258,3142,boot_cmd,success,1095346421,1,Command has completed successfully,E12,Command has completed successfully
161,91679,3440,boot_cmd,success,1109728975,1,Command has completed successfully,E12,Command has completed successfully
162,130127,3501,boot_cmd,success,1111856688,1,Command has completed successfully,E12,Command has completed successfully
163,240717,3664,boot_cmd,success,1118282468,1,Command has completed successfully,E12,Command has completed successfully
164,2599204,1971,boot_cmd,new,1074297378,1,Targeting domains:node-D3 and nodes:node-[104-127] child of command 1963,E42,Targeting domains:node-D<*> and nodes:node-[<*>-<*>] child of command <*>
165,2599217,1973,boot_cmd,new,1074297389,1,Targeting domains:node-D4 and nodes:node-[136-159] child of command 1964,E42,Targeting domains:node-D<*> and nodes:node-[<*>-<*>] child of command <*>
166,70088,2206,shutdown_cmd,new,1077059790,1,Targeting domains:node-D7 and nodes:node-[224\ 228\ 232],E43,Targeting domains:node-D<*>and nodes:node-<*>
167,162883,2414,boot_cmd,new,1077877853,1,Targeting domains:node-D4 and nodes:node-[128-135] child of command 2401,E42,Targeting domains:node-D<*> and nodes:node-[<*>-<*>] child of command <*>
168,210240,2490,boot_cmd,new,1078453922,1,Targeting domains:node-D0 and nodes:node-[8-31] child of command 2489,E42,Targeting domains:node-D<*> and nodes:node-[<*>-<*>] child of command <*>
169,451683,3223,boot_cmd,new,1098825780,1,Targeting domains:node-D0 and nodes:node-0,E43,Targeting domains:node-D<*>and nodes:node-<*>
170,38390,3344,boot_cmd,new,1104070308,1,Targeting domains:node-D[0\ 5] and nodes:node-[27\ 191],E43,Targeting domains:node-D<*>and nodes:node-<*>
171,128520,3491,boot_cmd,new,1111855423,1,Targeting domains:node-D2 and nodes:node-[64-95] child of command 3488,E42,Targeting domains:node-D<*> and nodes:node-[<*>-<*>] child of command <*>
172,276415,3709,boot_cmd,new,1119845316,1,Targeting domains:node-D2 and nodes:node-84,E43,Targeting domains:node-D<*>and nodes:node-<*>
173,51338,node-3,node,psu,1106496000,1,psu failure\ ambient=28,E35,psu failure\ ambient=<*>
174,191898,node-238,node,psu,1131240275,1,psu failure\ ambient=28,E35,psu failure\ ambient=<*>
175,236618,node-104,node,psu,1132434391,1,psu failure\ ambient=28,E35,psu failure\ ambient=<*>
176,341834,node-118,node,psu,1140312091,1,psu failure\ ambient=28,E35,psu failure\ ambient=<*>
177,347972,node-118,node,psu,1140430530,1,psu failure\ ambient=31,E35,psu failure\ ambient=<*>
178,147394,Interconnect-0N00,switch_module,temphigh,1129812510,1,Temperature (41C) exceeds warning threshold,E44,Temperature (<*>C) exceeds warning threshold
179,147494,Interconnect-0N00,switch_module,temphigh,1129813980,1,Temperature (41C) exceeds warning threshold,E44,Temperature (<*>C) exceeds warning threshold
180,2594656,node-D0,clusterfilesystem,clusterfilesystem.no_server,1074279038,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage234,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
181,2609055,node-D7,clusterfilesystem,clusterfilesystem.no_server,1074464654,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1412,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
182,2608601,node-D7,clusterfilesystem,clusterfilesystem.no_server,1074462833,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1024,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
183,2608475,node-D7,clusterfilesystem,clusterfilesystem.no_server,1074462062,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1534,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
184,2596321,node-D7,clusterfilesystem,clusterfilesystem.no_server,1074289164,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1231,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
185,32255,node-D7,clusterfilesystem,clusterfilesystem.no_server,1076398960,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage934,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
186,58466,node-D0,clusterfilesystem,clusterfilesystem.no_server,1076864677,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage131,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
187,57981,node-D7,clusterfilesystem,clusterfilesystem.no_server,1076864401,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1144,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
188,57709,node-D0,clusterfilesystem,clusterfilesystem.no_server,1076864348,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage444,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
189,171644,node-D0,clusterfilesystem,clusterfilesystem.no_server,1077889836,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage141,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
190,172740,node-D7,clusterfilesystem,clusterfilesystem.no_server,1077891659,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1622,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
191,172788,node-D7,clusterfilesystem,clusterfilesystem.no_server,1077891661,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1612,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
192,183109,node-D7,clusterfilesystem,clusterfilesystem.no_server,1077901705,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1622,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
193,213053,node-D7,clusterfilesystem,clusterfilesystem.no_server,1078465745,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1542,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
194,213050,node-D7,clusterfilesystem,clusterfilesystem.no_server,1078465745,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1644,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
195,229271,node-D0,clusterfilesystem,clusterfilesystem.no_server,1078963582,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage242,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
196,311726,node-D7,clusterfilesystem,clusterfilesystem.no_server,1082041350,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1031,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
197,400170,node-D7,clusterfilesystem,clusterfilesystem.no_server,1089893907,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1331,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
198,399288,node-D0,clusterfilesystem,clusterfilesystem.no_server,1089893729,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage742,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
199,399278,node-D0,clusterfilesystem,clusterfilesystem.no_server,1089893727,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage221,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
200,417925,node-D0,clusterfilesystem,clusterfilesystem.no_server,1093627911,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage622,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
201,420807,node-D0,clusterfilesystem,clusterfilesystem.no_server,1094568654,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage112,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
202,442349,node-D7,clusterfilesystem,clusterfilesystem.no_server,1098365526,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1432,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
203,51652,node-D0,clusterfilesystem,clusterfilesystem.no_server,1106588485,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage142,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
204,68757,node-D0,clusterfilesystem,clusterfilesystem.no_server,1108645899,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage742,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
205,69243,node-D7,clusterfilesystem,clusterfilesystem.no_server,1108646021,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1231,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
206,110887,node-D7,clusterfilesystem,clusterfilesystem.no_server,1111067897,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage1311,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
207,256889,node-D0,clusterfilesystem,clusterfilesystem.no_server,1118940596,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage411,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
208,220014,node-D0,clusterfilesystem,clusterfilesystem.no_server,1132158358,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage132,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
209,286137,node-D0,clusterfilesystem,clusterfilesystem.no_server,1134669644,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage832,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
210,286151,node-D0,clusterfilesystem,clusterfilesystem.no_server,1134669644,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage531,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
211,327002,node-D0,clusterfilesystem,clusterfilesystem.no_server,1140098601,1,ClusterFileSystem: There is no server for ServerFileSystem domain storage321,E10,ClusterFileSystem: There is no server for ServerFileSystem domain storage<*>
212,365140,node-69,unix.hw,net.niff.down,1085075228,1,NIFF: node node-69 detected a failed network connection on network 5.5.224.0 via interface alt0,E27,NIFF: node node-<*> detected a failed network connection on network <*> via interface alt0
213,401608,node-162,unix.hw,net.niff.down,1142550442,1,NIFF: node node-162 detected a failed network connection on network 5.5.224.0 via interface alt0,E27,NIFF: node node-<*> detected a failed network connection on network <*> via interface alt0
214,180537,node-D0,clusterfilesystem,fdmn.panic,1131228351,1,ServerFileSystem: An ServerFileSystem domain panic has occurred on storage442,E39,ServerFileSystem: An ServerFileSystem domain panic has occurred on <*>
215,268543,Interconnect-0N00,switch_module,fan,1119372267,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
216,268265,Interconnect-0N00,switch_module,fan,1119290224,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
217,292663,Interconnect-0N00,switch_module,fan,1121581239,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
218,291810,Interconnect-0N00,switch_module,fan,1121525534,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
219,289739,Interconnect-0N00,switch_module,fan,1121303273,1,Fan speeds ( 3552 3534 3375 4245 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
220,327293,Interconnect-0N00,switch_module,fan,1123408044,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
221,26132,Interconnect-0N00,switch_module,fan,1124831967,1,Fan speeds ( 3552 3534 3375 11637 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
222,37743,Interconnect-0N00,switch_module,fan,1125827345,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
223,37524,Interconnect-0N00,switch_module,fan,1125819002,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
224,36180,Interconnect-0N00,switch_module,fan,1125718237,1,Fan speeds ( 3552 3534 3375 4245 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
225,35581,Interconnect-0N00,switch_module,fan,1125706262,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
226,35374,Interconnect-0N00,switch_module,fan,1125677285,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
227,34697,Interconnect-0N00,switch_module,fan,1125668027,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
228,34204,Interconnect-0N00,switch_module,fan,1125664672,1,Fan speeds ( 3552 3534 3375 4470 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
229,34116,Interconnect-0N00,switch_module,fan,1125660960,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
230,33940,Interconnect-0N00,switch_module,fan,1125651957,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
231,33385,Interconnect-0N00,switch_module,fan,1125557358,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
232,33086,Interconnect-0N00,switch_module,fan,1125545019,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
233,45567,Interconnect-0N00,switch_module,fan,1126010536,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
234,45526,Interconnect-0N00,switch_module,fan,1126010284,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
235,45496,Interconnect-0N00,switch_module,fan,1126001523,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
236,45232,Interconnect-0N00,switch_module,fan,1125974682,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
237,44885,Interconnect-0N00,switch_module,fan,1125968635,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
238,44792,Interconnect-0N00,switch_module,fan,1125967289,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
239,44437,Interconnect-0N00,switch_module,fan,1125958618,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
240,44077,Interconnect-0N00,switch_module,fan,1125942184,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
241,43807,Interconnect-0N00,switch_module,fan,1125941020,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
242,43763,Interconnect-0N00,switch_module,fan,1125940778,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
243,43379,Interconnect-0N00,switch_module,fan,1125938946,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
244,43219,Interconnect-0N00,switch_module,fan,1125938127,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
245,42827,Interconnect-0N00,switch_module,fan,1125936247,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
246,42774,Interconnect-0N00,switch_module,fan,1125935993,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
247,42301,Interconnect-0N00,switch_module,fan,1125933864,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
248,42057,Interconnect-0N00,switch_module,fan,1125932744,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
249,41384,Interconnect-0N00,switch_module,fan,1125929387,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
250,41142,Interconnect-0N00,switch_module,fan,1125922192,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
251,41066,Interconnect-0N00,switch_module,fan,1125920701,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
252,40628,Interconnect-0N00,switch_module,fan,1125915215,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
253,40627,Interconnect-0N00,switch_module,fan,1125915213,1,Fan speeds ( 3552 3534 3375 4166 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
254,40365,Interconnect-0N00,switch_module,fan,1125913604,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
255,40096,Interconnect-0N00,switch_module,fan,1125911516,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
256,39347,Interconnect-0N00,switch_module,fan,1125873598,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
257,104906,Interconnect-0N00,switch_module,fan,1128271361,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
258,104883,Interconnect-0N00,switch_module,fan,1128271267,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
259,121157,Interconnect-0N00,switch_module,fan,1129314010,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
260,120901,Interconnect-0N00,switch_module,fan,1129307838,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
261,120373,Interconnect-0N00,switch_module,fan,1129295995,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
262,120348,Interconnect-0N00,switch_module,fan,1129295109,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
263,119419,Interconnect-0N00,switch_module,fan,1129159678,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
264,119213,Interconnect-0N00,switch_module,fan,1129157128,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
265,119202,Interconnect-0N00,switch_module,fan,1129156854,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
266,119142,Interconnect-0N00,switch_module,fan,1129155779,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
267,119082,Interconnect-0N00,switch_module,fan,1129155045,1,Fan speeds ( 3552 3534 3375 4530 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
268,118806,Interconnect-0N00,switch_module,fan,1129150679,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
269,117431,Interconnect-0N00,switch_module,fan,1128907389,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
270,117146,Interconnect-0N00,switch_module,fan,1128901378,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
271,116927,Interconnect-0N00,switch_module,fan,1128899272,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
272,116705,Interconnect-0N00,switch_module,fan,1128888604,1,Fan speeds ( 3552 3534 3375 4192 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
273,116664,Interconnect-0N00,switch_module,fan,1128887986,1,Fan speeds ( 3552 3534 3375 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
274,236285,Interconnect-0N00,switch_module,fan,1132421073,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
275,243687,Interconnect-0N00,switch_module,fan,1132558950,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
276,260011,Interconnect-0N00,switch_module,fan,1133183830,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
277,259847,Interconnect-0N00,switch_module,fan,1133182195,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
278,259763,Interconnect-0N00,switch_module,fan,1133181426,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
279,259536,Interconnect-0N00,switch_module,fan,1133178458,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
280,259457,Interconnect-0N00,switch_module,fan,1133177775,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
281,259180,Interconnect-0N00,switch_module,fan,1133174442,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
282,259133,Interconnect-0N00,switch_module,fan,1133174185,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
283,259101,Interconnect-0N00,switch_module,fan,1133174025,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
284,258955,Interconnect-0N00,switch_module,fan,1133173381,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
285,258413,Interconnect-0N00,switch_module,fan,1133169111,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
286,258185,Interconnect-0N00,switch_module,fan,1133168036,1,Fan speeds ( 3552 3534 3391 4299 3515 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
287,257965,Interconnect-0N00,switch_module,fan,1133166706,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
288,257953,Interconnect-0N00,switch_module,fan,1133166616,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
289,257691,Interconnect-0N00,switch_module,fan,1133165477,1,Fan speeds ( 3552 3534 3391 **** 3515 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
290,349086,Interconnect-0N00,switch_module,fan,1140616724,1,Fan speeds ( 3552 3552 3391 **** 3515 3497 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
291,349016,Interconnect-0N00,switch_module,fan,1140616395,1,Fan speeds ( 3552 3552 3391 **** 3515 3497 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
292,380336,Interconnect-0N00,switch_module,fan,1141884709,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
293,379923,Interconnect-0N00,switch_module,fan,1141832424,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
294,379647,Interconnect-0N00,switch_module,fan,1141828356,1,Fan speeds ( 3534 3534 3375 4272 3497 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
295,379641,Interconnect-0N00,switch_module,fan,1141828195,1,Fan speeds ( 3534 3534 3375 4470 3497 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
296,445104,Interconnect-0N00,switch_module,fan,1144366153,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
297,442494,Interconnect-0N00,switch_module,fan,1143993115,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
298,442338,Interconnect-0N00,switch_module,fan,1143991258,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
299,442189,Interconnect-0N00,switch_module,fan,1143988225,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
300,442187,Interconnect-0N00,switch_module,fan,1143988205,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
301,441407,Interconnect-0N00,switch_module,fan,1143980889,1,Fan speeds ( 3534 3534 3375 4115 3497 3479 ),E18,Fan speeds ( <*> <*> <*> <*> <*> <*> )
302,441258,Interconnect-0N00,switch_module,fan,1143979891,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
303,441254,Interconnect-0N00,switch_module,fan,1143979871,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
304,441208,Interconnect-0N00,switch_module,fan,1143979502,1,Fan speeds ( 3534 3534 3375 **** 3497 3479 ),E17,Fan speeds ( <*> <*> <*> **** <*> <*> )
305,130987,3504,boot_cmd,abort,1111858191,1,Command has been aborted,E11,Command has been aborted
306,27385,Interconnect-0N02,switch_module,control,1101771720,1,power/control problem,E34,power/control problem
307,30700,Interconnect-1T00,switch_module,bcast-error,1076189965,1,Link error,E21,Link error
308,115576,Interconnect-1T00,switch_module,bcast-error,1077793578,1,Link error,E21,Link error
309,115153,Interconnect-0T00,switch_module,bcast-error,1077757190,1,Link error,E21,Link error
310,259323,Interconnect-1T00,switch_module,bcast-error,1079076297,1,Link error,E21,Link error
311,285855,Interconnect-1T00,switch_module,bcast-error,1080298218,1,Link in reset,E24,Link in reset
312,285823,Interconnect-0T00,switch_module,bcast-error,1080292236,1,Link error,E21,Link error
313,289491,Interconnect-0T00,switch_module,bcast-error,1080825593,1,Link error,E21,Link error
314,288385,Interconnect-0T00,switch_module,bcast-error,1080668603,1,Link error,E21,Link error
315,295965,Interconnect-1T00,switch_module,bcast-error,1081534663,1,Link error,E21,Link error
316,293098,Interconnect-1T00,switch_module,bcast-error,1081296321,1,Link error,E21,Link error
317,303852,Interconnect-1T00,switch_module,bcast-error,1082033409,1,Link in reset,E24,Link in reset
318,323647,Interconnect-1T00,switch_module,bcast-error,1083198788,1,Link ok,E25,Link ok
319,26281,Interconnect-0T00,switch_module,bcast-error,1124878893,1,Link error on broadcast tree Interconnect-0T00:00:2:1,E22,Link error on broadcast tree Interconnect-<*>:<*>:<*>:<*>
320,407973,Interconnect-1T00,switch_module,bcast-error,1142703109,1,Link error on broadcast tree Interconnect-1T00:00:3:6,E22,Link error on broadcast tree Interconnect-<*>:<*>:<*>:<*>
321,408176,Interconnect-1T00,switch_module,bcast-error,1142743438,1,Link error on broadcast tree Interconnect-1T00:00:2:0,E22,Link error on broadcast tree Interconnect-<*>:<*>:<*>:<*>
322,408221,Interconnect-1T00,switch_module,bcast-error,1142752287,1,Link error on broadcast tree Interconnect-1T00:00:2:0,E22,Link error on broadcast tree Interconnect-<*>:<*>:<*>:<*>
323,191911,node-D4,clusterfilesystem,fdmn.full,1077949575,1,ServerFileSystem: ServerFileSystem domain root14_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
324,280513,node-D0,clusterfilesystem,fdmn.full,1079715693,1,ServerFileSystem: ServerFileSystem domain root10_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
325,284487,node-D3,clusterfilesystem,fdmn.full,1080155118,1,ServerFileSystem: ServerFileSystem domain root22_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
326,289398,node-D5,clusterfilesystem,fdmn.full,1080811198,1,ServerFileSystem: ServerFileSystem domain root13_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
327,383570,node-D7,clusterfilesystem,fdmn.full,1086596948,1,ServerFileSystem: ServerFileSystem domain root26_tmp is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
328,389984,node-D3,clusterfilesystem,fdmn.full,1087531181,1,ServerFileSystem: ServerFileSystem domain root7_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
329,178949,node-D2,clusterfilesystem,fdmn.full,1114672353,1,ServerFileSystem: ServerFileSystem domain root1_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
330,178450,node-D4,clusterfilesystem,fdmn.full,1114553373,1,ServerFileSystem: ServerFileSystem domain root22_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
331,177934,node-D3,clusterfilesystem,fdmn.full,1114546822,1,ServerFileSystem: ServerFileSystem domain root3_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
332,218553,node-D4,clusterfilesystem,fdmn.full,1117133933,1,ServerFileSystem: ServerFileSystem domain root25_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
333,218536,node-D1,clusterfilesystem,fdmn.full,1117131308,1,ServerFileSystem: ServerFileSystem domain root26_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
334,218505,node-D3,clusterfilesystem,fdmn.full,1117130918,1,ServerFileSystem: ServerFileSystem domain root22_local is full,E40,ServerFileSystem: ServerFileSystem domain <*> is full
335,2558879,node-D3,clusterfilesystem,clusterfilesystem.not_served,1073126274,1,ClusterFileSystem: ServerFileSystem domain cluster_root_backup is no longer served by node node-96,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
336,2567825,node-D5,clusterfilesystem,clusterfilesystem.not_served,1074100162,1,ClusterFileSystem: ServerFileSystem domain root_domain is no longer served by node node-160,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
337,2568742,node-D4,clusterfilesystem,clusterfilesystem.not_served,1074120046,1,ClusterFileSystem: ServerFileSystem domain root3_domain is no longer served by node node-128,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
338,2569870,node-D7,clusterfilesystem,clusterfilesystem.not_served,1074121737,1,ClusterFileSystem: ServerFileSystem domain root9_domain is no longer served by node node-224,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
339,2570007,node-D7,clusterfilesystem,clusterfilesystem.not_served,1074121911,1,ClusterFileSystem: ServerFileSystem domain root10_domain is no longer served by node node-224,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
340,2571489,node-D3,clusterfilesystem,clusterfilesystem.not_served,1074124407,1,ClusterFileSystem: ServerFileSystem domain root28_domain is no longer served by node node-96,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
341,2572034,node-D0,clusterfilesystem,clusterfilesystem.not_served,1074125608,1,ClusterFileSystem: ServerFileSystem domain root30_domain is no longer served by node node-0,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
342,2572991,node-D1,clusterfilesystem,clusterfilesystem.not_served,1074129956,1,ClusterFileSystem: ServerFileSystem domain root26_domain is no longer served by node node-57,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
343,2589848,node-D0,clusterfilesystem,clusterfilesystem.not_served,1074257445,1,ClusterFileSystem: ServerFileSystem domain root29_local is no longer served by node node-28,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
344,2589995,node-D0,clusterfilesystem,clusterfilesystem.not_served,1074257629,1,ClusterFileSystem: ServerFileSystem domain root12_domain is no longer served by node node-11,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
345,37555,node-D6,clusterfilesystem,clusterfilesystem.not_served,1076533718,1,ClusterFileSystem: ServerFileSystem domain root5_domain is no longer served by node node-196,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
346,36350,node-D5,clusterfilesystem,clusterfilesystem.not_served,1076533356,1,ClusterFileSystem: ServerFileSystem domain root28_domain is no longer served by node node-187,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
347,69304,node-D7,clusterfilesystem,clusterfilesystem.not_served,1076959081,1,ClusterFileSystem: ServerFileSystem domain root5_tmp is no longer served by node node-228,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
348,156291,node-D7,clusterfilesystem,clusterfilesystem.not_served,1077864767,1,ClusterFileSystem: ServerFileSystem domain storage1422 is no longer served by node node-245,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
349,156587,node-D0,clusterfilesystem,clusterfilesystem.not_served,1077865593,1,ClusterFileSystem: ServerFileSystem domain storage343 is no longer served by node node-11,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
350,159914,node-D3,clusterfilesystem,clusterfilesystem.not_served,1077875435,1,ClusterFileSystem: ServerFileSystem domain root19_domain is no longer served by node node-114,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
351,160172,node-D2,clusterfilesystem,clusterfilesystem.not_served,1077875490,1,ClusterFileSystem: ServerFileSystem domain root14_local is no longer served by node node-77,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
352,160413,node-D1,clusterfilesystem,clusterfilesystem.not_served,1077875542,1,ClusterFileSystem: ServerFileSystem domain root6_domain is no longer served by node node-37,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
353,209092,node-D0,clusterfilesystem,clusterfilesystem.not_served,1078438019,1,ClusterFileSystem: ServerFileSystem domain storage534 is no longer served by node node-18,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
354,253842,node-D0,clusterfilesystem,clusterfilesystem.not_served,1079069186,1,ClusterFileSystem: ServerFileSystem domain root12_tmp is no longer served by node node-11,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
355,253687,node-D5,clusterfilesystem,clusterfilesystem.not_served,1079069131,1,ClusterFileSystem: ServerFileSystem domain root23_local is no longer served by node node-182,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
356,254062,node-D1,clusterfilesystem,clusterfilesystem.not_served,1079069211,1,ClusterFileSystem: ServerFileSystem domain root14_tmp is no longer served by node node-45,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
357,252335,node-D0,clusterfilesystem,clusterfilesystem.not_served,1079068559,1,ClusterFileSystem: ServerFileSystem domain storage211 is no longer served by node node-4,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
358,305331,node-D5,clusterfilesystem,clusterfilesystem.not_served,1082036035,1,ClusterFileSystem: ServerFileSystem domain root8_domain is no longer served by node node-167,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
359,304677,node-D6,clusterfilesystem,clusterfilesystem.not_served,1082035793,1,ClusterFileSystem: ServerFileSystem domain root25_local is no longer served by node node-216,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
360,182781,node-D5,clusterfilesystem,clusterfilesystem.not_served,1114854715,1,ClusterFileSystem: ServerFileSystem domain cluster_usr_backup is no longer served by node node-160,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
361,190287,node-D4,clusterfilesystem,clusterfilesystem.not_served,1115830055,1,ClusterFileSystem: ServerFileSystem domain root_domain is no longer served by node node-128,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
362,203954,node-D7,clusterfilesystem,clusterfilesystem.not_served,1116530480,1,ClusterFileSystem: ServerFileSystem domain root24_local is no longer served by node node-247,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
363,203956,node-D7,clusterfilesystem,clusterfilesystem.not_served,1116530480,1,ClusterFileSystem: ServerFileSystem domain root18_tmp is no longer served by node node-241,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
364,204008,node-D7,clusterfilesystem,clusterfilesystem.not_served,1116530487,1,ClusterFileSystem: ServerFileSystem domain root17_domain is no longer served by node node-240,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
365,218198,node-D0,clusterfilesystem,clusterfilesystem.not_served,1117056658,1,ClusterFileSystem: ServerFileSystem domain sc_cluster_backup is no longer served by node node-0,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
366,280288,node-D6,clusterfilesystem,clusterfilesystem.not_served,1120297769,1,ClusterFileSystem: ServerFileSystem domain cluster_usr_backup is no longer served by node node-192,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
367,19318,node-D7,clusterfilesystem,clusterfilesystem.not_served,1124532600,1,ClusterFileSystem: ServerFileSystem domain cluster_var_backup is no longer served by node node-224,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
368,72165,node-D3,clusterfilesystem,clusterfilesystem.not_served,1127045031,1,ClusterFileSystem: ServerFileSystem domain root1_tmp_backup is no longer served by node node-96,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
369,197958,node-D3,clusterfilesystem,clusterfilesystem.not_served,1131282056,1,ClusterFileSystem: ServerFileSystem domain root1_domain_backup is no longer served by node node-96,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
370,226890,node-D6,clusterfilesystem,clusterfilesystem.not_served,1132171167,1,ClusterFileSystem: ServerFileSystem domain root28_domain is no longer served by node node-219,E9,ClusterFileSystem: ServerFileSystem domain <*> is no longer served by node node-<*>
371,2286759,full,partition,status,1061219795,-1,running,E38,running
372,2274013,full,partition,status,1060340885,-1,running,E38,running
373,2556866,full,partition,status,1072881064,1,running,E38,running
374,2279427,full,partition,status,1060773635,-1,running,E38,running
375,2279283,full,partition,status,1060744865,-1,running,E38,running
376,2273811,full,partition,status,1060324505,-1,running,E38,running
377,2272849,full,partition,status,1060239078,-1,running,E38,running
378,2561542,full,partition,status,1073427660,1,blocked,E3,blocked
379,2561161,full,partition,status,1073359530,1,blocked,E3,blocked
380,2313012,full,partition,status,1061552195,-1,running,E38,running
381,2277349,full,partition,status,1060507389,-1,running,E38,running
382,2567354,node-147,node,status,1074098611,1,not responding,E32,not responding
383,2567461,node-C0,domain,status,1074098612,1,not responding,E32,not responding
384,2567534,node-97,node,status,1074098640,1,configured out,E14,configured out
385,2579921,node-140,node,status,1074216940,1,running,E38,running
386,2579951,node-170,node,status,1074216940,1,running,E38,running
387,2580020,node-239,node,status,1074216940,1,running,E38,running
388,2580712,node-100,node,status,1074217199,1,not responding,E32,not responding
389,2581412,node-211,node,status,1074217360,1,not responding,E32,not responding
390,2590658,node-123,node,status,1074262967,1,running,E38,running
391,2595860,node-46,node,status,1074288846,1,not responding,E32,not responding
392,2596116,node-185,node,status,1074289057,1,not responding,E32,not responding
393,2596202,node-216,node,status,1074289110,1,configured out,E14,configured out
394,2596232,node-239,node,status,1074289147,1,not responding,E32,not responding
395,2287804,full,partition,status,1061267556,-1,running,E38,running
396,2271403,full,partition,status,1060163570,-1,running,E38,running
397,2608517,full,partition,status,1074462770,1,running,E38,running
398,2590751,node-216,node,status,1074262967,1,running,E38,running
399,2595682,node-12,node,status,1074288817,1,not responding,E32,not responding
400,2596033,node-131,node,status,1074288991,1,not responding,E32,not responding
401,2596168,node-211,node,status,1074289105,1,not responding,E32,not responding
402,2599698,node-D5,domain,status,1074297720,1,inconsistent nodesets node-160 0x0001edfe <ok> node-161 0x1001fdfe <ok> node-162 0x1001fdfe <ok> node-163 0x1001fdfe <ok>,E20,inconsistent nodesets node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok><*>
403,2601823,node-49,node,status,1074298784,1,running,E38,running
404,2601830,node-56,node,status,1074298784,1,running,E38,running
405,2601896,node-122,node,status,1074298784,0,running,E38,running
406,2601953,node-144,node,status,1074299123,1,running,E38,running
407,2602004,node-195,node,status,1074299123,1,running,E38,running
408,41982,node-202,node,status,1076539387,1,running,E38,running
409,41798,node-17,node,status,1076539387,1,running,E38,running
410,35712,node-71,node,status,1076533037,1,configured out,E14,configured out
411,44677,node-112,node,status,1076542145,1,running,E38,running
412,45685,node-109,node,status,1076544000,1,active,E1,active
413,47692,node-161,node,status,1076615678,1,configured out,E14,configured out
414,47913,node-163,node,status,1076619203,1,running,E38,running
415,47952,node-202,node,status,1076619203,1,running,E38,running
416,54740,node-238,node,status,1076837827,1,configured out,E14,configured out
417,80830,node-65,node,status,1077321390,1,configured out,E14,configured out
418,77067,node-35,node,status,1077215250,1,configured out,E14,configured out
419,76769,node-61,node,status,1077207138,1,running,E38,running
420,76110,node-37,node,status,1077204510,1,configured out,E14,configured out
421,57489,node-27,node,status,1076864329,1,not responding,E32,not responding
422,114954,node-206,node,status,1077744705,1,running,E38,running
423,114862,node-114,node,status,1077744705,1,running,E38,running
424,100995,node-22,node,status,1077723931,1,configured out,E14,configured out
425,100947,node-87,node,status,1077723931,1,not responding,E32,not responding
426,100048,node-215,node,status,1077649605,1,running,E38,running
427,90661,node-61,node,status,1077630630,1,configured out,E14,configured out
428,135341,node-225,node,status,1077805320,1,not responding,E32,not responding
429,160937,node-D1,domain,status,1077875820,1,inconsistent nodesets node-32 0x00000002 <ok> node-34 0x000001fe <ok> node-33 0x000001fe <ok> node-35 0x000001fe <ok>,E20,inconsistent nodesets node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok><*>
430,172472,node-100,node,status,1077891510,1,configured out,E14,configured out
431,172572,node-168,node,status,1077891560,1,not responding,E32,not responding
432,178780,node-147,node,status,1077897241,0,running,E38,running
433,182635,node-44,node,status,1077901440,1,configured out,E14,configured out
434,182754,node-109,node,status,1077901531,1,configured out,E14,configured out
435,182817,node-143,node,status,1077901590,1,configured out,E14,configured out
436,182920,node-218,node,status,1077901649,1,not responding,E32,not responding
437,182943,node-212,node,status,1077901650,0,configured out,E14,configured out
438,222217,node-204,node,status,1078490191,1,configured out,E14,configured out
439,178781,node-148,node,status,1077897241,1,running,E38,running
440,219135,node-99,node,status,1078470966,1,running,E38,running
441,219117,node-81,node,status,1078470966,1,running,E38,running
442,212764,node-120,node,status,1078465560,1,configured out,E14,configured out
443,212647,node-60,node,status,1078465470,1,configured out,E14,configured out
444,212610,node-49,node,status,1078465457,1,not responding,E32,not responding
445,212601,node-40,node,status,1078465457,1,not responding,E32,not responding
446,205653,node-175,node,status,1078406503,1,configured out,E14,configured out
447,200920,node-165,node,status,1078122733,1,running,E38,running
448,199728,node-186,node,status,1078118432,1,configured out,E14,configured out
449,199720,node-178,node,status,1078118432,1,configured out,E14,configured out
450,264741,node-209,node,status,1079261513,0,running,E38,running
451,264527,node-159,node,status,1079259783,1,not responding,E32,not responding
452,264395,node-196,node,status,1079255686,1,active,E1,active
453,264038,full,partition,status,1079249252,1,running,E38,running
454,263641,full,partition,status,1079248586,1,running,E38,running
455,263520,node-170,node,status,1079248515,1,configured out,E14,configured out
456,263068,node-173,node,status,1079245564,1,running,E38,running
457,262672,node-36,node,status,1079243476,1,configured out,E14,configured out
458,262650,node-139,node,status,1079243475,1,running,E38,running
459,262432,full,partition,status,1079241153,1,running,E38,running
460,261973,full,partition,status,1079220450,1,blocked,E3,blocked
461,261817,node-89,node,status,1079218683,1,not responding,E32,not responding
462,261699,node-230,node,status,1079218682,1,not responding,E32,not responding
463,261582,node-161,node,status,1079216417,1,running,E38,running
464,261427,node-233,node,status,1079216415,1,not responding,E32,not responding
465,261004,node-25,node,status,1079190995,1,not responding,E32,not responding
466,260472,node-13,node,status,1079143598,1,not responding,E32,not responding
467,260233,node-166,node,status,1079127020,1,running,E38,running
468,260225,node-254,node,status,1079127019,1,running,E38,running
469,260158,node-155,node,status,1079127017,1,running,E38,running
470,260078,node-11,node,status,1079127017,1,not responding,E32,not responding
471,259819,node-212,node,status,1079111625,1,running,E38,running
472,259458,node-30,node,status,1079081093,1,running,E38,running
473,252790,node-229,node,status,1079068924,1,configured out,E14,configured out
474,252605,node-44,node,status,1079068924,1,configured out,E14,configured out
475,250426,node-250,node,status,1079054309,1,running,E38,running
476,250337,node-161,node,status,1079054308,1,running,E38,running
477,244332,node-34,node,status,1079047060,1,not responding,E32,not responding
478,239558,node-164,node,status,1079019273,1,running,E38,running
479,239458,node-64,node,status,1079019273,1,running,E38,running
480,235493,node-D6,domain,status,1079014470,1,not responding,E32,not responding
481,234468,node-203,node,status,1079013901,1,configured out,E14,configured out
482,234328,node-61,node,status,1079013840,1,configured out,E14,configured out
483,234321,node-54,node,status,1079013840,1,configured out,E14,configured out
484,232876,node-144,node,status,1079011232,1,configured out,E14,configured out
485,229430,node-6,node,status,1078970342,1,configured out,E14,configured out
486,272707,node-169,node,status,1079615369,1,not responding,E32,not responding
487,272591,node-153,node,status,1079615344,0,not responding,E32,not responding
488,272170,node-62,node,status,1079615293,1,not responding,E32,not responding
489,277642,node-165,node,status,1079618688,1,running,E38,running
490,277686,node-209,node,status,1079618688,1,running,E38,running
491,273131,node-253,node,status,1079615432,0,configured out,E14,configured out
492,273112,node-234,node,status,1079615432,0,configured out,E14,configured out
493,272780,node-174,node,status,1079615371,0,configured out,E14,configured out
494,272777,node-171,node,status,1079615371,0,configured out,E14,configured out
495,284353,node-23,node,status,1080145602,1,running,E38,running
496,284195,full,partition,status,1080133799,1,running,E38,running
497,273098,node-217,node,status,1079615432,0,configured out,E14,configured out
498,277540,node-119,node,status,1079618410,0,running,E38,running
499,272731,node-185,node,status,1079615370,0,not responding,E32,not responding
500,272589,node-151,node,status,1079615344,0,not responding,E32,not responding
501,296297,node-225,node,status,1081571034,1,not responding,E32,not responding
502,277540,node-119,node,status,1079618410,0,running,E38,running
503,277545,node-124,node,status,1079618410,0,running,E38,running
504,272769,node-163,node,status,1079615371,1,configured out,E14,configured out
505,296384,node-77,node,status,1081571037,1,not responding,E32,not responding
506,300968,full,partition,status,1081932726,1,running,E38,running
507,300890,node-220,node,status,1081931335,1,not responding,E32,not responding
508,310009,node-13,node,status,1082040658,1,running,E38,running
509,315748,node-19,node,status,1082665230,1,configured out,E14,configured out
510,329774,node-235,node,status,1083207608,0,running,E38,running
511,329596,node-57,node,status,1083207607,1,running,E38,running
512,323276,node-189,node,status,1083197700,1,not responding,E32,not responding
513,323246,node-170,node,status,1083197700,1,not responding,E32,not responding
514,321846,node-91,node,status,1083195752,1,configured out,E14,configured out
515,321826,node-65,node,status,1083195751,1,configured out,E14,configured out
516,316706,node-90,node,status,1082894753,1,running,E38,running
517,340207,node-245,node,status,1083317700,0,running,E38,running
518,329646,node-107,node,status,1083207607,0,running,E38,running
519,339296,node-125,node,status,1083307405,0,configured out,E14,configured out
520,340120,node-158,node,status,1083317700,0,running,E38,running
521,340209,node-247,node,status,1083317700,0,running,E38,running
522,344357,node-88,node,status,1084269621,0,configured out,E14,configured out
523,344301,node-52,node,status,1084269345,0,configured out,E14,configured out
524,343802,node-52,node,status,1084264230,1,configured out,E14,configured out
525,366141,node-95,node,status,1085078720,1,running,E38,running
526,366113,node-67,node,status,1085078720,1,running,E38,running
527,371329,full,partition,status,1085797473,1,running,E38,running
528,370250,full,partition,status,1085689890,1,blocked,E3,blocked
529,369970,full,partition,status,1085682780,1,blocked,E3,blocked
530,369548,node-112,node,status,1085659157,1,not responding,E32,not responding
531,369300,node-79,node,status,1085569402,1,running,E38,running
532,369186,node-168,node,status,1085568282,0,running,E38,running
533,368987,node-95,node,status,1085567825,1,configured out,E14,configured out
534,379999,node-231,node,status,1086028827,0,running,E38,running
535,379995,node-227,node,status,1086028827,0,running,E38,running
536,379993,node-225,node,status,1086028827,0,running,E38,running
537,379872,node-103,node,status,1086028827,0,running,E38,running
538,379859,node-90,node,status,1086028826,1,running,E38,running
539,372036,node-219,node,status,1085921340,1,configured out,E14,configured out
540,371847,node-49,node,status,1085921312,1,configured out,E14,configured out
541,371602,node--tc6,tserver,status,1085921002,1,not-responding,E33,not-responding
542,379912,node-144,node,status,1086028827,0,running,E38,running
543,386689,full,partition,status,1087478923,1,running,E38,running
544,386783,node-224,node,status,1087499940,1,active,E1,active
545,392804,node-41,node,status,1088023736,0,running,E38,running
546,392696,node-126,node,status,1088023734,0,running,E38,running
547,392653,node-51,node,status,1088023733,1,running,E38,running
548,392736,node-198,node,status,1088023734,0,running,E38,running
549,392729,node-159,node,status,1088023734,0,running,E38,running
550,392693,node-123,node,status,1088023734,0,running,E38,running
551,399657,node-155,node,status,1089893790,1,not responding,E32,not responding
552,399519,node-85,node,status,1089893761,1,configured out,E14,configured out
553,399366,node-39,node,status,1089893731,1,configured out,E14,configured out
554,399176,node-54,node,status,1089893717,1,not responding,E32,not responding
555,398501,node-235,node,status,1089811825,1,running,E38,running
556,410509,node-221,node,status,1091255504,1,running,E38,running
557,409269,node-195,node,status,1091248620,1,configured out,E14,configured out
558,371878,node-64,node,status,1085921340,-1,configured out,E14,configured out
559,413605,node-154,node,status,1092321126,1,running,E38,running
560,413350,node-41,node,status,1092320602,1,running,E38,running
561,416005,full,partition,status,1092949734,1,running,E38,running
562,368988,node-96,node,status,1085567825,-1,configured out,E14,configured out
563,418211,node-D0,domain,status,1093628640,1,inconsistent nodesets node-1 0x000001fc <ok> node-2 0x000001fc <ok> node-7 0x000001fc <ok> node-4 0x000001fc <ok> node-6 0x000001fc <ok> node-5 0x000001fc <ok> node-3 0x000001fc <ok> node-14 0x0003fdfc <ok> node-13 0x0003fdfc <ok> node-12 0x0003fdfc <ok> node-10 0x0003fdfc <ok> node-16 0x0003fdfc <ok> node-15 0x0003fdfc <ok>,E20,inconsistent nodesets node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok><*>
564,413243,node-191,node,status,1092320499,0,configured out,E14,configured out
565,417113,full,partition,status,1093473150,1,blocked,E3,blocked
566,413275,node-222,node,status,1092320499,0,configured out,E14,configured out
567,421363,full,partition,status,1094571984,1,running,E38,running
568,421349,node-18,node,status,1094571950,1,running,E38,running
569,432939,node-254,node,status,1095349520,0,running,E38,running
570,413246,node-193,node,status,1092320499,1,configured out,E14,configured out
571,425784,node-186,node,status,1095342830,1,not responding,E32,not responding
572,425734,node-133,node,status,1095342780,1,configured out,E14,configured out
573,425522,node-37,node,status,1095342574,1,not responding,E32,not responding
574,425174,node-109,node,status,1095341304,1,running,E38,running
575,425071,node-174,node,status,1095341277,1,active,E1,active
576,424807,node-53,node,status,1095339932,1,not responding,E32,not responding
577,424635,node-211,node,status,1095338588,1,configured out,E14,configured out
578,424634,node-210,node,status,1095338588,1,configured out,E14,configured out
579,432838,node-153,node,status,1095349520,0,running,E38,running
580,432843,node-158,node,status,1095349520,1,running,E38,running
581,371910,node-96,node,status,1085921340,-1,configured out,E14,configured out
582,442459,node-42,node,status,1098366960,1,not responding,E32,not responding
583,448690,node-48,node,status,1098394861,1,running,E38,running
584,448947,node-66,node,status,1098395762,1,configured out,E14,configured out
585,449708,full,partition,status,1098490050,1,blocked,E3,blocked
586,453178,full,partition,status,1098987334,1,running,E38,running
587,451647,node-9,node,status,1098825692,1,configured out,E14,configured out
588,450090,node-14,node,status,1098716306,1,not responding,E32,not responding
589,360067,node-96,node,status,1085056650,-1,configured out,E14,configured out
590,369020,node-160,node,status,1085567825,-1,configured out,E14,configured out
591,382264,node-0,node,status,1086300660,-1,configured out,E14,configured out
592,457562,node-238,node,status,1100413674,1,configured out,E14,configured out
593,448744,node-102,node,status,1098394861,0,running,E38,running
594,18624,node-205,node,status,1100784210,1,configured out,E14,configured out
595,18387,node-184,node,status,1100784181,1,configured out,E14,configured out
596,24011,node-77,node,status,1100788549,1,running,E38,running
597,24024,node-90,node,status,1100788549,1,running,E38,running
598,24139,node-205,node,status,1100788549,0,running,E38,running
599,30351,full,partition,status,1102218393,1,running,E38,running
600,24181,node-247,node,status,1100788549,1,running,E38,running
601,27536,node-0,node,status,1101792840,1,configured out,E14,configured out
602,33966,node-16,node,status,1102693232,1,configured out,E14,configured out
603,32980,node-26,node,status,1102476182,1,running,E38,running
604,41359,full,partition,status,1104950640,1,blocked,E3,blocked
605,53241,node-175,node,status,1107152281,1,configured out,E14,configured out
606,56392,node-224,node,status,1107904598,1,running,E38,running
607,73494,node-29,node,status,1108652943,1,running,E38,running
608,73690,node-165,node,status,1108653007,1,running,E38,running
609,77384,node-233,node,status,1108744158,1,running,E38,running
610,84322,full,partition,status,1109007900,1,blocked,E3,blocked
611,91139,node-172,node,status,1109725656,1,configured out,E14,configured out
612,97235,full,partition,status,1110138244,1,running,E38,running
613,110520,node-73,node,status,1111066002,1,not responding,E32,not responding
614,117663,node-151,node,status,1111074926,0,running,E38,running
615,117632,node-120,node,status,1111074926,0,running,E38,running
616,117588,node-76,node,status,1111074926,1,running,E38,running
617,117564,node-52,node,status,1111074926,1,running,E38,running
618,111216,node-192,node,status,1111071420,1,configured out,E14,configured out
619,110959,node-252,node,status,1111068030,1,configured out,E14,configured out
620,110554,node-174,node,status,1111067067,1,not responding,E32,not responding
621,138134,node-73,node,status,1111869296,1,running,E38,running
622,117751,node-239,node,status,1111074926,1,running,E38,running
623,117724,node-212,node,status,1111074926,1,running,E38,running
624,126627,node-160,node,status,1111828200,1,not responding,E32,not responding
625,141504,node-104,node,status,1112420952,1,running,E38,running
626,140900,node-239,node,status,1112389915,0,running,E38,running
627,140782,node-220,node,status,1112389862,1,not responding,E32,not responding
628,140676,full,partition,status,1112346856,1,starting,E41,starting
629,139541,node-231,node,status,1112055605,1,configured out,E14,configured out
630,139404,node-242,node,status,1112054374,1,configured out,E14,configured out
631,139086,node-228,node,status,1112051942,1,configured out,E14,configured out
632,154699,node-86,node,status,1113371286,1,configured out,E14,configured out
633,169348,node-35,node,status,1114098974,1,running,E38,running
634,176994,node-218,node,status,1114435800,1,configured out,E14,configured out
635,202074,node-210,node,status,1116448620,1,not responding,E32,not responding
636,202181,node-34,node,status,1116448621,1,not responding,E32,not responding
637,202342,node-165,node,status,1116448650,1,configured out,E14,configured out
638,216915,node-113,node,status,1116619994,1,running,E38,running
639,216956,node-154,node,status,1116619994,1,running,E38,running
640,251283,node-200,node,status,1118926110,1,configured out,E14,configured out
641,251334,node-254,node,status,1118926152,1,not responding,E32,not responding
642,277298,full,partition,status,1120076193,1,running,E38,running
643,251065,node-92,node,status,1118925810,0,configured out,E14,configured out
644,284996,node-191,node,status,1120682568,1,running,E38,running
645,284693,node-184,node,status,1120680817,1,configured out,E14,configured out
646,284668,full,partition,status,1120680810,1,blocked,E3,blocked
647,846,node-95,node,status,1123709833,1,running,E38,running
648,923,node-172,node,status,1123709833,1,running,E38,running
649,1004,node-253,node,status,1123709833,1,running,E38,running
650,14730,node-172,node,status,1124378018,1,running,E38,running
651,26628,full,partition,status,1124999460,1,blocked,E3,blocked
652,46680,node-126,node,status,1126168979,1,running,E38,running
653,46615,node-181,node,status,1126168951,1,running,E38,running
654,56225,node-74,node,status,1126814969,1,running,E38,running
655,56504,node-55,node,status,1126815181,1,configured out,E14,configured out
656,58843,full,partition,status,1126818053,1,closing,E7,closing
657,56256,node-105,node,status,1126814969,0,running,E38,running
658,56261,node-110,node,status,1126814969,0,running,E38,running
659,56327,node-175,node,status,1126814970,0,running,E38,running
660,89931,full,partition,status,1128014704,1,running,E38,running
661,98836,node-83,node,status,1128237754,1,running,E38,running
662,56298,node-146,node,status,1126814970,0,running,E38,running
663,56335,node-183,node,status,1126814970,0,running,E38,running
664,56329,node-177,node,status,1126814970,0,running,E38,running
665,56404,node-254,node,status,1126814970,0,running,E38,running
666,116947,node-202,node,status,1128899526,1,running,E38,running
667,56349,node-198,node,status,1126814970,1,running,E38,running
668,46114,node-182,node,status,1126165404,-1,configured out,E14,configured out
669,169688,node-44,node,status,1131210631,1,not responding,E32,not responding
670,169664,node-40,node,status,1131210631,1,not responding,E32,not responding
671,168084,full,partition,status,1131032850,1,blocked,E3,blocked
672,197110,node-253,node,status,1131247704,1,running,E38,running
673,205176,node-15,node,status,1131532770,1,not responding,E32,not responding
674,205095,full,partition,status,1131530296,1,running,E38,running
675,204732,node-44,node,status,1131527920,1,active,E1,active
676,203294,node-215,node,status,1131298338,1,not responding,E32,not responding
677,219581,node-76,node,status,1132157850,1,configured out,E14,configured out
678,220122,node-D3,domain,status,1132158690,1,not responding,E32,not responding
679,260401,full,partition,status,1133290901,1,running,E38,running
680,46105,full,partition,status,1126164412,-1,running,E38,running
681,274783,full,partition,status,1133702160,1,blocked,E3,blocked
682,285000,node-11,node,status,1134656644,1,running,E38,running
683,286085,node-4,node,status,1134669635,1,not responding,E32,not responding
684,286957,node-162,node,status,1134670027,1,not responding,E32,not responding
685,290042,node-183,node,status,1134672259,1,running,E38,running
686,289977,node-127,node,status,1134672205,0,running,E38,running
687,309872,full,partition,status,1135802130,1,blocked,E3,blocked
688,323320,node-255,node,status,1139735822,1,not responding,E32,not responding
689,327050,node-7,node,status,1140098610,1,configured out,E14,configured out
690,366404,node-237,node,status,1141512720,1,configured out,E14,configured out
691,378400,node-232,node,status,1141679919,0,running,E38,running
692,378260,node-92,node,status,1141679919,1,running,E38,running
693,378195,node-27,node,status,1141679919,1,running,E38,running
694,372004,node-90,node,status,1141671840,0,configured out,E14,configured out
695,371954,node-40,node,status,1141671840,1,configured out,E14,configured out
696,371941,node-27,node,status,1141671840,1,configured out,E14,configured out
697,401242,node-145,node,status,1142533309,0,running,E38,running
698,401248,node-151,node,status,1142533309,0,running,E38,running
699,401202,node-104,node,status,1142533309,0,running,E38,running
700,415345,node-D0,domain,status,1142942280,1,inconsistent nodesets node-31 0x1fffffffe <ok> node-0 0xfffffffe <ok> node-1 0xfffffffe <ok> node-2 0xfffffffe <ok> node-30 0xfffffffe <ok>,E20,inconsistent nodesets node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok> node-<*> <*> <ok><*>
701,414885,node-225,node,status,1142872170,1,configured out,E14,configured out
702,401232,node-135,node,status,1142533309,1,running,E38,running
703,454307,full,partition,status,1145174910,1,blocked,E3,blocked
704,451133,node-130,node,status,1144858896,1,running,E38,running
705,459286,node-208,node,status,1145542009,1,not responding,E32,not responding
706,459133,node-108,node,status,1145541960,1,configured out,E14,configured out
707,463655,node-135,node,status,1145554526,0,running,E38,running
708,463680,node-160,node,status,1145554526,0,running,E38,running
709,463769,node-249,node,status,1145554526,0,running,E38,running
710,463684,node-164,node,status,1145554526,0,running,E38,running
711,2559971,gige7,gige,temperature,1073151998,1,normal,E31,normal
712,2552510,gige7,gige,temperature,1072553474,1,normal,E31,normal
713,2556843,gige5,gige,temperature,1072878243,1,warning,E46,warning
714,2555058,gige7,gige,temperature,1072734978,1,normal,E31,normal
715,2554674,gige7,gige,temperature,1072671675,1,normal,E31,normal
716,2554666,gige5,gige,temperature,1072670036,1,warning,E46,warning
717,2552992,node-212,node,temperature,1072633140,1,ambient=30,E2,ambient=<*>
718,2563073,gige7,gige,temperature,1073610711,1,normal,E31,normal
719,2562762,node-232,node,temperature,1073579610,1,ambient=30,E2,ambient=<*>
720,2562656,gige7,gige,temperature,1073561505,1,normal,E31,normal
721,2561340,gige7,gige,temperature,1073394404,1,normal,E31,normal
722,2561239,gige4,gige,temperature,1073375350,1,critical,E15,critical
723,2566893,gige7,gige,temperature,1074020818,1,normal,E31,normal
724,2565183,gige7,gige,temperature,1073933218,1,normal,E31,normal
725,2585341,gige7,gige,temperature,1074234092,1,critical,E15,critical
726,2615431,gige7,gige,temperature,1074848953,1,normal,E31,normal
727,2614737,node-166,node,temperature,1074776943,1,ambient=31,E2,ambient=<*>
728,2614640,gige7,gige,temperature,1074755051,1,normal,E31,normal
729,2613815,gige5,gige,temperature,1074625028,1,normal,E31,normal
730,2594414,node-239,node,temperature,1074274436,1,ambient=30,E2,ambient=<*>
731,2594419,node-235,node,temperature,1074274436,1,ambient=29,E2,ambient=<*>
732,19801,gige7,gige,temperature,1076047551,1,normal,E31,normal
733,40754,node-172,node,temperature,1076538724,1,ambient=26,E2,ambient=<*>
734,35006,node-238,node,temperature,1076506869,1,ambient=30,E2,ambient=<*>
735,34905,gige7,gige,temperature,1076493252,1,warning,E46,warning
736,31923,gige4,gige,temperature,1076386562,1,critical,E15,critical
737,31128,gige7,gige,temperature,1076272557,1,normal,E31,normal
738,46581,node-117,node,temperature,1076546891,1,ambient=32,E2,ambient=<*>
739,48065,node-41,node,temperature,1076619404,1,ambient=29,E2,ambient=<*>
740,48312,gige7,gige,temperature,1076650230,1,normal,E31,normal
741,80683,node-198,node,temperature,1077307801,1,ambient=33,E2,ambient=<*>
742,80531,node-174,node,temperature,1077300930,1,ambient=28,E2,ambient=<*>
743,77270,node-166,node,temperature,1077215565,1,ambient=31,E2,ambient=<*>
744,76723,node-55,node,temperature,1077205904,1,ambient=33,E2,ambient=<*>
745,74418,gige7,gige,temperature,1077159058,1,normal,E31,normal
746,69858,gige7,gige,temperature,1077042957,1,warning,E46,warning
747,69672,gige7,gige,temperature,1077015055,1,warning,E46,warning
748,69378,gige7,gige,temperature,1076961352,1,warning,E46,warning
749,61851,node-60,node,temperature,1076866153,1,ambient=31,E2,ambient=<*>
750,86744,gige7,gige,temperature,1077371471,1,warning,E46,warning
751,87515,gige7,gige,temperature,1077440772,1,normal,E31,normal
752,94825,node-45,node,temperature,1077647048,1,ambient=30,E2,ambient=<*>
753,90542,node-157,node,temperature,1077630300,1,ambient=30,E2,ambient=<*>
754,88946,gige7,gige,temperature,1077576377,1,normal,E31,normal
755,88671,node-148,node,temperature,1077556261,1,ambient=31,E2,ambient=<*>
756,87831,gige2,gige,temperature,1077480553,1,warning,E46,warning
757,87693,gige4,gige,temperature,1077462433,1,warning,E46,warning
758,198942,gige5,gige,temperature,1078030594,1,normal,E31,normal
759,225213,gige7,gige,temperature,1078547960,1,warning,E46,warning
760,225104,gige7,gige,temperature,1078536860,1,normal,E31,normal
761,224786,node-158,node,temperature,1078514733,1,ambient=31,E2,ambient=<*>
762,224581,gige7,gige,temperature,1078508057,1,warning,E46,warning
763,217618,node-20,node,temperature,1078468448,1,ambient=26,E2,ambient=<*>
764,217370,node-54,node,temperature,1078468284,1,ambient=31,E2,ambient=<*>
765,206594,gige7,gige,temperature,1078407820,1,normal,E31,normal
766,204767,gige7,gige,temperature,1078361621,1,warning,E46,warning
767,203383,gige6,gige,temperature,1078197816,1,normal,E31,normal
768,201365,node-74,node,temperature,1078160650,1,ambient=29,E2,ambient=<*>
769,199616,gige5,gige,temperature,1078110095,1,warning,E46,warning
770,199198,gige7,gige,temperature,1078057114,1,warning,E46,warning
771,261378,gige7,gige,temperature,1079210977,1,warning,E46,warning
772,239708,node-14,node,temperature,1079019604,1,ambient=27,E2,ambient=<*>
773,234084,node-240,node,temperature,1079013507,1,ambient=30,E2,ambient=<*>
774,229917,node-20,node,temperature,1078979550,1,ambient=26,E2,ambient=<*>
775,227358,gige7,gige,temperature,1078816469,1,warning,E46,warning
776,226272,gige7,gige,temperature,1078672165,1,warning,E46,warning
777,285818,gige7,gige,temperature,1080291435,1,normal,E31,normal
778,284101,gige7,gige,temperature,1080110219,1,warning,E46,warning
779,283501,gige6,gige,temperature,1080058332,1,normal,E31,normal
780,289816,gige7,gige,temperature,1080845907,1,normal,E31,normal
781,287985,gige7,gige,temperature,1080628083,1,normal,E31,normal
782,287951,gige7,gige,temperature,1080622682,1,normal,E31,normal
783,287022,gige7,gige,temperature,1080493066,1,warning,E46,warning
784,295921,gige7,gige,temperature,1081524579,1,warning,E46,warning
785,295528,gige7,gige,temperature,1081463375,1,normal,E31,normal
786,301157,gige7,gige,temperature,1081959922,1,warning,E46,warning
787,300050,gige7,gige,temperature,1081830909,1,normal,E31,normal
788,298512,gige7,gige,temperature,1081791006,1,normal,E31,normal
789,297326,gige7,gige,temperature,1081684787,1,normal,E31,normal
790,309472,node-30,node,temperature,1082039149,1,ambient=34,E2,ambient=<*>
791,314590,gige7,gige,temperature,1082202403,1,warning,E46,warning
792,316541,gige7,gige,temperature,1082824335,1,warning,E46,warning
793,316533,gige7,gige,temperature,1082819535,1,normal,E31,normal
794,316105,gige7,gige,temperature,1082742429,1,warning,E46,warning
795,315684,gige7,gige,temperature,1082629326,1,normal,E31,normal
796,330049,gige7,gige,temperature,1083231744,1,warning,E46,warning
797,329889,node-217,node,temperature,1083208215,1,ambient=31,E2,ambient=<*>
798,316991,gige7,gige,temperature,1083025647,1,normal,E31,normal
799,340621,gige7,gige,temperature,1083424951,1,warning,E46,warning
800,342541,gige7,gige,temperature,1083973367,1,warning,E46,warning
801,342400,gige7,gige,temperature,1083930762,1,warning,E46,warning
802,342193,node-244,node,temperature,1083879601,1,ambient=32,E2,ambient=<*>
803,341967,gige7,gige,temperature,1083844658,1,normal,E31,normal
804,341924,node-237,node,temperature,1083831510,1,ambient=33,E2,ambient=<*>
805,341629,gige7,gige,temperature,1083744155,1,warning,E46,warning
806,341358,gige7,gige,temperature,1083688955,1,warning,E46,warning
807,341168,gige7,gige,temperature,1083639753,1,warning,E46,warning
808,340799,gige7,gige,temperature,1083522751,1,warning,E46,warning
809,350670,node-240,node,temperature,1084653390,1,ambient=35,E2,ambient=<*>
810,350386,node-234,node,temperature,1084631343,1,ambient=31,E2,ambient=<*>
811,350295,node-239,node,temperature,1084629363,1,ambient=31,E2,ambient=<*>
812,350242,node-108,node,temperature,1084626810,1,ambient=31,E2,ambient=<*>
813,350134,node-109,node,temperature,1084621410,1,ambient=30,E2,ambient=<*>
814,349094,node-111,node,temperature,1084529940,1,ambient=31,E2,ambient=<*>
815,348979,node-112,node,temperature,1084518061,1,ambient=29,E2,ambient=<*>
816,348683,gige7,gige,temperature,1084476183,1,warning,E46,warning
817,346095,gige7,gige,temperature,1084427882,1,normal,E31,normal
818,346052,node-137,node,temperature,1084418581,1,ambient=26,E2,ambient=<*>
819,346034,gige7,gige,temperature,1084413482,1,normal,E31,normal
820,345974,gige6,gige,temperature,1084380782,1,warning,E46,warning
821,345944,gige6,gige,temperature,1084370883,1,normal,E31,normal
822,345634,node-237,node,temperature,1084314360,1,ambient=33,E2,ambient=<*>
823,367104,gige7,gige,temperature,1085206086,1,normal,E31,normal
824,371489,node-237,node,temperature,1085883660,1,ambient=31,E2,ambient=<*>
825,371437,gige7,gige,temperature,1085855902,1,warning,E46,warning
826,369384,gige4,gige,temperature,1085598845,1,critical,E15,critical
827,383080,node-239,node,temperature,1086491940,1,ambient=34,E2,ambient=<*>
828,382894,node-238,node,temperature,1086438690,1,ambient=35,E2,ambient=<*>
829,381787,node-111,node,temperature,1086206761,1,ambient=30,E2,ambient=<*>
830,381569,gige4,gige,temperature,1086197563,1,warning,E46,warning
831,381210,node-166,node,temperature,1086194970,1,ambient=35,E2,ambient=<*>
832,381139,node-16,node,temperature,1086194820,1,ambient=33,E2,ambient=<*>
833,380887,node-247,node,temperature,1086178590,1,ambient=33,E2,ambient=<*>
834,380233,gige7,gige,temperature,1086096701,1,normal,E31,normal
835,376418,node-47,node,temperature,1086025702,1,ambient=30,E2,ambient=<*>
836,376386,node-105,node,temperature,1086025689,1,ambient=28,E2,ambient=<*>
837,375624,node-194,node,temperature,1086025505,1,ambient=27,E2,ambient=<*>
838,374004,gige4,gige,temperature,1085997759,1,warning,E46,warning
839,372299,gige6,gige,temperature,1085939607,1,warning,E46,warning
840,385237,gige3,gige,temperature,1086927360,1,normal,E31,normal
841,385089,gige3,gige,temperature,1086882060,1,normal,E31,normal
842,384693,gige7,gige,temperature,1086805621,1,warning,E46,warning
843,384641,node-225,node,temperature,1086794700,1,ambient=32,E2,ambient=<*>
844,384130,node-239,node,temperature,1086699270,1,ambient=31,E2,ambient=<*>
845,383593,node-238,node,temperature,1086602640,1,ambient=35,E2,ambient=<*>
846,383318,node-108,node,temperature,1086543570,1,ambient=32,E2,ambient=<*>
847,386596,node-20,node,temperature,1087478914,1,ambient=28,E2,ambient=<*>
848,386775,gige7,gige,temperature,1087499233,1,warning,E46,warning
849,387324,node-225,node,temperature,1087501911,1,ambient=30,E2,ambient=<*>
850,391092,gige7,gige,temperature,1087643842,1,normal,E31,normal
851,391300,gige6,gige,temperature,1087728445,1,warning,E46,warning
852,393242,gige7,gige,temperature,1088265456,1,normal,E31,normal
853,392859,gige7,gige,temperature,1088038353,1,normal,E31,normal
854,392847,gige7,gige,temperature,1088034153,1,normal,E31,normal
855,391811,gige7,gige,temperature,1087867648,1,normal,E31,normal
856,391646,node-234,node,temperature,1087853310,1,ambient=31,E2,ambient=<*>
857,395148,gige7,gige,temperature,1088937476,1,normal,E31,normal
858,394089,node-188,node,temperature,1088608620,1,ambient=31,E2,ambient=<*>
859,393440,gige7,gige,temperature,1088371359,1,warning,E46,warning
860,396477,gige7,gige,temperature,1089388091,1,normal,E31,normal
861,395945,gige5,gige,temperature,1089210393,1,warning,E46,warning
862,395216,gige5,gige,temperature,1088965285,1,warning,E46,warning
863,395178,gige6,gige,temperature,1088948576,1,warning,E46,warning
864,407464,gige7,gige,temperature,1090176813,1,warning,E46,warning
865,409366,node-212,node,temperature,1091251446,1,ambient=29,E2,ambient=<*>
866,409190,gige7,gige,temperature,1091231048,1,warning,E46,warning
867,409063,gige6,gige,temperature,1091154558,1,normal,E31,normal
868,408905,gige7,gige,temperature,1091074742,1,warning,E46,warning
869,408669,gige6,gige,temperature,1090924449,1,warning,E46,warning
870,411736,gige7,gige,temperature,1091851474,1,normal,E31,normal
871,410909,gige7,gige,temperature,1091423054,1,normal,E31,normal
872,415132,gige7,gige,temperature,1092507298,1,warning,E46,warning
873,416347,gige6,gige,temperature,1093125020,1,normal,E31,normal
874,416032,gige7,gige,temperature,1092958814,1,warning,E46,warning
875,415725,gige7,gige,temperature,1092870612,1,normal,E31,normal
876,415585,gige7,gige,temperature,1092794408,1,normal,E31,normal
877,415440,gige7,gige,temperature,1092718806,1,normal,E31,normal
878,415407,gige7,gige,temperature,1092699905,1,warning,E46,warning
879,415297,gige7,gige,temperature,1092632401,1,warning,E46,warning
880,415274,gige7,gige,temperature,1092610501,1,normal,E31,normal
881,417446,gige7,gige,temperature,1093560329,1,normal,E31,normal
882,417398,gige7,gige,temperature,1093553730,1,warning,E46,warning
883,417284,gige7,gige,temperature,1093529428,1,warning,E46,warning
884,419465,gige7,gige,temperature,1093902333,1,warning,E46,warning
885,419403,gige7,gige,temperature,1093856733,1,warning,E46,warning
886,422863,node-11,node,temperature,1094755801,1,ambient=29,E2,ambient=<*>
887,421827,gige7,gige,temperature,1094640341,1,normal,E31,normal
888,420523,gige7,gige,temperature,1094479239,1,normal,E31,normal
889,431406,node-108,node,temperature,1095349170,1,ambient=30,E2,ambient=<*>
890,429727,node-153,node,temperature,1095347103,1,ambient=30,E2,ambient=<*>
891,425381,node-154,node,temperature,1095341774,1,ambient=33,E2,ambient=<*>
892,433158,node-132,node,temperature,1095352261,1,ambient=32,E2,ambient=<*>
893,433405,gige7,gige,temperature,1095412800,1,normal,E31,normal
894,433626,node-167,node,temperature,1095486301,1,ambient=27,E2,ambient=<*>
895,433841,gige7,gige,temperature,1095539107,1,warning,E46,warning
896,435317,gige7,gige,temperature,1096178141,1,normal,E31,normal
897,435259,gige7,gige,temperature,1096137336,1,normal,E31,normal
898,435206,node-41,node,temperature,1096130881,1,ambient=32,E2,ambient=<*>
899,434839,gige5,gige,temperature,1095964227,1,normal,E31,normal
900,434251,gige7,gige,temperature,1095742219,1,warning,E46,warning
901,434198,node-93,node,temperature,1095712050,1,ambient=33,E2,ambient=<*>
902,434077,gige7,gige,temperature,1095656714,1,warning,E46,warning
903,434057,gige7,gige,temperature,1095644114,1,normal,E31,normal
904,436643,gige6,gige,temperature,1096581363,1,normal,E31,normal
905,436603,gige7,gige,temperature,1096548961,1,normal,E31,normal
906,436574,gige7,gige,temperature,1096527660,1,warning,E46,warning
907,436113,node-22,node,temperature,1096388010,1,ambient=29,E2,ambient=<*>
908,440293,gige7,gige,temperature,1098009695,1,warning,E46,warning
909,439731,gige7,gige,temperature,1097861497,1,warning,E46,warning
910,439698,gige4,gige,temperature,1097832089,1,normal,E31,normal
911,439070,gige7,gige,temperature,1097642792,1,warning,E46,warning
912,453662,node-127,node,temperature,1099084141,1,ambient=32,E2,ambient=<*>
913,453378,node-111,node,temperature,1099068271,1,ambient=29,E2,ambient=<*>
914,453317,gige7,gige,temperature,1099041896,1,normal,E31,normal
915,453176,node-53,node,temperature,1098987302,1,ambient=36,E2,ambient=<*>
916,452826,node-206,node,temperature,1098903930,1,ambient=29,E2,ambient=<*>
917,452434,node-203,node,temperature,1098866010,1,ambient=30,E2,ambient=<*>
918,451528,gige7,gige,temperature,1098821990,1,warning,E46,warning
919,451472,node-246,node,temperature,1098818850,1,ambient=29,E2,ambient=<*>
920,456184,gige7,gige,temperature,1099776905,1,normal,E31,normal
921,455679,node-122,node,temperature,1099504413,1,ambient=32,E2,ambient=<*>
922,455240,node-10,node,temperature,1099408230,1,ambient=30,E2,ambient=<*>
923,455088,node-111,node,temperature,1099356810,1,ambient=32,E2,ambient=<*>
924,455065,node-113,node,temperature,1099355101,1,ambient=30,E2,ambient=<*>
925,455027,node-93,node,temperature,1099354051,1,ambient=33,E2,ambient=<*>
926,455001,node-107,node,temperature,1099351950,1,ambient=31,E2,ambient=<*>
927,454698,gige5,gige,temperature,1099335170,1,normal,E31,normal
928,454690,node-153,node,temperature,1099334221,1,ambient=33,E2,ambient=<*>
929,457137,gige7,gige,temperature,1100184616,1,normal,E31,normal
930,456744,node-133,node,temperature,1100077083,1,ambient=33,E2,ambient=<*>
931,24290,node-213,node,temperature,1100796480,1,ambient=31,E2,ambient=<*>
932,24877,node-255,node,temperature,1100880930,1,ambient=33,E2,ambient=<*>
933,25358,gige4,gige,temperature,1100910194,1,critical,E15,critical
934,25493,gige6,gige,temperature,1100956034,1,normal,E31,normal
935,26895,node-36,node,temperature,1101549755,1,ambient=27,E2,ambient=<*>
936,26727,gige7,gige,temperature,1101454038,1,normal,E31,normal
937,26462,node-255,node,temperature,1101295260,1,ambient=33,E2,ambient=<*>
938,26313,gige3,gige,temperature,1101216972,1,normal,E31,normal
939,26135,node-43,node,temperature,1101154260,1,ambient=33,E2,ambient=<*>
940,28128,gige7,gige,temperature,1102067235,1,normal,E31,normal
941,27901,gige7,gige,temperature,1101934034,1,warning,E46,warning
942,27802,gige7,gige,temperature,1101859333,1,normal,E31,normal
943,27654,gige6,gige,temperature,1101803531,1,warning,E46,warning
944,27294,gige5,gige,temperature,1101737723,1,normal,E31,normal
945,34281,node-115,node,temperature,1102771261,1,ambient=29,E2,ambient=<*>
946,33709,node-255,node,temperature,1102628970,1,ambient=33,E2,ambient=<*>
947,33505,node-255,node,temperature,1102575540,1,ambient=36,E2,ambient=<*>
948,33189,node-244,node,temperature,1102493340,1,ambient=30,E2,ambient=<*>
949,33160,gige7,gige,temperature,1102486347,1,normal,E31,normal
950,33137,gige6,gige,temperature,1102480648,1,warning,E46,warning
951,31458,gige7,gige,temperature,1102388245,1,warning,E46,warning
952,31380,node-230,node,temperature,1102354830,1,ambient=28,E2,ambient=<*>
953,31352,node-235,node,temperature,1102353540,1,ambient=26,E2,ambient=<*>
954,30505,gige3,gige,temperature,1102334781,1,warning,E46,warning
955,30504,gige5,gige,temperature,1102331115,1,normal,E31,normal
956,35981,node-10,node,temperature,1103220120,1,ambient=29,E2,ambient=<*>
957,36262,gige4,gige,temperature,1103307514,1,normal,E31,normal
958,37165,node-86,node,temperature,1103662741,1,ambient=25,E2,ambient=<*>
959,37077,node-35,node,temperature,1103654431,1,ambient=29,E2,ambient=<*>
960,36752,gige6,gige,temperature,1103575367,1,warning,E46,warning
961,36566,gige6,gige,temperature,1103486264,1,warning,E46,warning
962,37260,gige3,gige,temperature,1103681506,1,warning,E46,warning
963,37291,gige7,gige,temperature,1103691161,1,warning,E46,warning
964,37307,gige3,gige,temperature,1103694707,1,warning,E46,warning
965,37322,gige4,gige,temperature,1103700221,1,normal,E31,normal
966,37628,gige4,gige,temperature,1103811222,1,warning,E46,warning
967,37715,node-187,node,temperature,1103815680,1,ambient=34,E2,ambient=<*>
968,37818,node-163,node,temperature,1103824141,1,ambient=28,E2,ambient=<*>
969,37868,node-197,node,temperature,1103826540,1,ambient=27,E2,ambient=<*>
970,38135,gige6,gige,temperature,1103925772,1,normal,E31,normal
971,39618,gige3,gige,temperature,1104640924,1,warning,E46,warning
972,39589,gige6,gige,temperature,1104627481,1,normal,E31,normal
973,39407,gige7,gige,temperature,1104551270,1,warning,E46,warning
974,39391,gige7,gige,temperature,1104545871,1,warning,E46,warning
975,39355,gige3,gige,temperature,1104532022,1,normal,E31,normal
976,39302,gige6,gige,temperature,1104505981,1,warning,E46,warning
977,39219,gige6,gige,temperature,1104471779,1,normal,E31,normal
978,39036,gige7,gige,temperature,1104388669,1,warning,E46,warning
979,38659,gige6,gige,temperature,1104182576,1,warning,E46,warning
980,38486,gige6,gige,temperature,1104108775,1,normal,E31,normal
981,41132,gige7,gige,temperature,1104916076,1,warning,E46,warning
982,41131,gige7,gige,temperature,1104915777,1,normal,E31,normal
983,40791,node-71,node,temperature,1104864150,1,ambient=27,E2,ambient=<*>
984,40790,gige7,gige,temperature,1104863876,1,normal,E31,normal
985,40785,node-208,node,temperature,1104861840,1,ambient=33,E2,ambient=<*>
986,40769,node-39,node,temperature,1104858241,1,ambient=27,E2,ambient=<*>
987,40766,gige7,gige,temperature,1104857875,1,warning,E46,warning
988,40705,node-169,node,temperature,1104854462,1,ambient=30,E2,ambient=<*>
989,40636,node-80,node,temperature,1104852811,1,ambient=33,E2,ambient=<*>
990,40559,node-174,node,temperature,1104852241,1,ambient=27,E2,ambient=<*>
991,40385,gige3,gige,temperature,1104800827,1,normal,E31,normal
992,39995,node-15,node,temperature,1104762876,1,ambient=27,E2,ambient=<*>
993,39888,gige7,gige,temperature,1104751375,1,normal,E31,normal
994,42364,gige7,gige,temperature,1105072680,1,normal,E31,normal
995,42511,gige7,gige,temperature,1105117680,1,warning,E46,warning
996,43144,gige3,gige,temperature,1105251135,1,warning,E46,warning
997,45189,gige3,gige,temperature,1105867047,1,normal,E31,normal
998,45076,gige4,gige,temperature,1105824253,1,normal,E31,normal
999,45043,gige6,gige,temperature,1105811893,1,normal,E31,normal