-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcacti_host_template_brocade_fc_switch.xml
More file actions
6412 lines (6412 loc) · 268 KB
/
cacti_host_template_brocade_fc_switch.xml
File metadata and controls
6412 lines (6412 loc) · 268 KB
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
<cacti>
<hash_020025f541060d4bd610cc1bea3008c36f6711>
<name>Brocade FC Switch</name>
<graph_templates>hash_0000252b4f16586fceac10d49f17ddeb38aa5d|hash_000025a4cef33184c8cf6ba372396d1acb6c8d</graph_templates>
<data_queries>hash_040025d75e406fdeca4fcef45b8be3a9a63cbc|hash_04002561504b56766a56c866e1f37f756ffb1f</data_queries>
</hash_020025f541060d4bd610cc1bea3008c36f6711>
<hash_0000252b4f16586fceac10d49f17ddeb38aa5d>
<name>Brocade FC Switch - Temp</name>
<graph>
<t_title></t_title>
<title>|host_description| - Temperature</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>120</height>
<t_width></t_width>
<width>500</width>
<t_slope_mode>0</t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units>0</t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid></auto_scale_rigid>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_export></t_export>
<export>on</export>
<t_upper_limit></t_upper_limit>
<upper_limit>1000000000000</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value></unit_exponent_value>
<t_vertical_label></t_vertical_label>
<vertical_label>degree</vertical_label>
</graph>
<items>
<hash_100025b8e24f9243a500e92d425c96e53edec9>
<task_item_id>hash_0800253d687305ca08109a097f7d4c79902ea9</task_item_id>
<color_id>FFAB00</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Temp 1</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100025b8e24f9243a500e92d425c96e53edec9>
<hash_1000259ed929ea9a2efdc10bb721906c9416e9>
<task_item_id>hash_0800253d687305ca08109a097f7d4c79902ea9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000259ed929ea9a2efdc10bb721906c9416e9>
<hash_100025ae09e02d43328c5f827e340ba74a82e8>
<task_item_id>hash_0800253d687305ca08109a097f7d4c79902ea9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100025ae09e02d43328c5f827e340ba74a82e8>
<hash_100025a2e9f8586c603b36a2a22bf29d371e14>
<task_item_id>hash_0800253d687305ca08109a097f7d4c79902ea9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100025a2e9f8586c603b36a2a22bf29d371e14>
<hash_1000257ef41d942c81d2ad5711e87f59021b47>
<task_item_id>hash_0800259966e6af4c84bd59da82d50fc670c055</task_item_id>
<color_id>55009D</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Temp 2</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000257ef41d942c81d2ad5711e87f59021b47>
<hash_100025676a8960bd2d2d79a14b94270bac6883>
<task_item_id>hash_0800259966e6af4c84bd59da82d50fc670c055</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100025676a8960bd2d2d79a14b94270bac6883>
<hash_1000256c25696ffc39d5ea0f67b21515609981>
<task_item_id>hash_0800259966e6af4c84bd59da82d50fc670c055</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000256c25696ffc39d5ea0f67b21515609981>
<hash_1000259e767388003a56d1d89049c0961ef468>
<task_item_id>hash_0800259966e6af4c84bd59da82d50fc670c055</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_1000259e767388003a56d1d89049c0961ef468>
<hash_100025364572f25841d00e59ccf8d60fb11dd0>
<task_item_id>hash_0800254c5d5dc944a76e8ea665ae285a9dff8e</task_item_id>
<color_id>157419</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Temp 3</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_100025364572f25841d00e59ccf8d60fb11dd0>
<hash_1000259f410bee3cc35783aff09cda3caffce3>
<task_item_id>hash_0800254c5d5dc944a76e8ea665ae285a9dff8e</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_1000259f410bee3cc35783aff09cda3caffce3>
<hash_1000254e2f85204f8f0823ec155fb726c18e40>
<task_item_id>hash_0800254c5d5dc944a76e8ea665ae285a9dff8e</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_1000254e2f85204f8f0823ec155fb726c18e40>
<hash_100025f0a2e5674d42c99c695e479dc227a151>
<task_item_id>hash_0800254c5d5dc944a76e8ea665ae285a9dff8e</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_100025f0a2e5674d42c99c695e479dc227a151>
</items>
<inputs>
<hash_090025740dd7ca0e5b2434e5849b2722164838>
<name>Data Source [bro_fc_temp1]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025b8e24f9243a500e92d425c96e53edec9|hash_0000259ed929ea9a2efdc10bb721906c9416e9|hash_000025ae09e02d43328c5f827e340ba74a82e8|hash_000025a2e9f8586c603b36a2a22bf29d371e14</items>
</hash_090025740dd7ca0e5b2434e5849b2722164838>
<hash_090025b6e7ba874aaa5b76b6decea6bda42cdd>
<name>Data Source [bro_fc_temp2]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000257ef41d942c81d2ad5711e87f59021b47|hash_000025676a8960bd2d2d79a14b94270bac6883|hash_0000256c25696ffc39d5ea0f67b21515609981|hash_0000259e767388003a56d1d89049c0961ef468</items>
</hash_090025b6e7ba874aaa5b76b6decea6bda42cdd>
<hash_0900258a7267943c3d3546b6a5d35352cfeab4>
<name>Data Source [bro_fc_temp3]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025364572f25841d00e59ccf8d60fb11dd0|hash_0000259f410bee3cc35783aff09cda3caffce3|hash_0000254e2f85204f8f0823ec155fb726c18e40|hash_000025f0a2e5674d42c99c695e479dc227a151</items>
</hash_0900258a7267943c3d3546b6a5d35352cfeab4>
</inputs>
</hash_0000252b4f16586fceac10d49f17ddeb38aa5d>
<hash_000025a4cef33184c8cf6ba372396d1acb6c8d>
<name>Brocade FC Switch - Fan</name>
<graph>
<t_title></t_title>
<title>|host_description| - Fan</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>120</height>
<t_width></t_width>
<width>500</width>
<t_slope_mode>0</t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units>0</t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid></auto_scale_rigid>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_export></t_export>
<export>on</export>
<t_upper_limit></t_upper_limit>
<upper_limit>1000000000000</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value></unit_exponent_value>
<t_vertical_label></t_vertical_label>
<vertical_label>RPM</vertical_label>
</graph>
<items>
<hash_10002549bf91970e50abf9666d260075bcebf0>
<task_item_id>hash_080025ff61488517cf58d3a79ceef1ba559950</task_item_id>
<color_id>FF0000</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Fan 1</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_10002549bf91970e50abf9666d260075bcebf0>
<hash_1000254b26d8a99df8965c1ac243b771604be5>
<task_item_id>hash_080025ff61488517cf58d3a79ceef1ba559950</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000254b26d8a99df8965c1ac243b771604be5>
<hash_10002502b6fde13f24ecc0c547845352635ce2>
<task_item_id>hash_080025ff61488517cf58d3a79ceef1ba559950</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_10002502b6fde13f24ecc0c547845352635ce2>
<hash_1000253e708c28848a99a67dd5b729115bbd81>
<task_item_id>hash_080025ff61488517cf58d3a79ceef1ba559950</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_1000253e708c28848a99a67dd5b729115bbd81>
<hash_1000256ba4acc540738984b45e2c759389deba>
<task_item_id>hash_0800253a3d85b7077b23d434a13adad4ee7ac6</task_item_id>
<color_id>35962B</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Fan 2</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000256ba4acc540738984b45e2c759389deba>
<hash_100025b22887398725f59f1aeb998d25ea2f95>
<task_item_id>hash_0800253a3d85b7077b23d434a13adad4ee7ac6</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100025b22887398725f59f1aeb998d25ea2f95>
<hash_1000251020541b2b4b187bb63af6aa3baca538>
<task_item_id>hash_0800253a3d85b7077b23d434a13adad4ee7ac6</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000251020541b2b4b187bb63af6aa3baca538>
<hash_100025ba0852fb69e59b2e2a5f5b2c71b7f30e>
<task_item_id>hash_0800253a3d85b7077b23d434a13adad4ee7ac6</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100025ba0852fb69e59b2e2a5f5b2c71b7f30e>
<hash_100025710a0a6738ed45ef00e6a2e94654940d>
<task_item_id>hash_080025af4267a6b0d1d73eafa3d0705c76621f</task_item_id>
<color_id>6557D0</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Fan 3</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_100025710a0a6738ed45ef00e6a2e94654940d>
<hash_100025c6cac9c4a113b51853f2c3fa3f00e888>
<task_item_id>hash_080025af4267a6b0d1d73eafa3d0705c76621f</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_100025c6cac9c4a113b51853f2c3fa3f00e888>
<hash_10002543e5227a80ca528087d6e64fc3e9bdaf>
<task_item_id>hash_080025af4267a6b0d1d73eafa3d0705c76621f</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_10002543e5227a80ca528087d6e64fc3e9bdaf>
<hash_10002528c98e50fcbd00f53302808e0b4086fd>
<task_item_id>hash_080025af4267a6b0d1d73eafa3d0705c76621f</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_10002528c98e50fcbd00f53302808e0b4086fd>
<hash_10002580dec38f5cd90fdaa5a57bf7bb6441c4>
<task_item_id>hash_080025a53084bba4c73d4ebf37f1af32da6a62</task_item_id>
<color_id>FF7D00</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Fan 4</text_format>
<hard_return></hard_return>
<sequence>13</sequence>
</hash_10002580dec38f5cd90fdaa5a57bf7bb6441c4>
<hash_10002501d70f7c90d034b839cc7607f2656131>
<task_item_id>hash_080025a53084bba4c73d4ebf37f1af32da6a62</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>14</sequence>
</hash_10002501d70f7c90d034b839cc7607f2656131>
<hash_1000254c51ad91fc8fed78d418c04eb148216a>
<task_item_id>hash_080025a53084bba4c73d4ebf37f1af32da6a62</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>15</sequence>
</hash_1000254c51ad91fc8fed78d418c04eb148216a>
<hash_1000250d27be582675555cc10d1e85ef9bf3fb>
<task_item_id>hash_080025a53084bba4c73d4ebf37f1af32da6a62</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>16</sequence>
</hash_1000250d27be582675555cc10d1e85ef9bf3fb>
<hash_100025a6054eb0abe7acd6987dda0ffacb7e61>
<task_item_id>hash_080025b5718964f83c0649ca33289a8df737c9</task_item_id>
<color_id>00004D</color_id>
<alpha>FF</alpha>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Fan 5</text_format>
<hard_return></hard_return>
<sequence>17</sequence>
</hash_100025a6054eb0abe7acd6987dda0ffacb7e61>
<hash_10002528f8803b0a5bd3ed52ec90264d46248d>
<task_item_id>hash_080025b5718964f83c0649ca33289a8df737c9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>18</sequence>
</hash_10002528f8803b0a5bd3ed52ec90264d46248d>
<hash_1000254fd316e0f870afa3e224a28371be8d58>
<task_item_id>hash_080025b5718964f83c0649ca33289a8df737c9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>19</sequence>
</hash_1000254fd316e0f870afa3e224a28371be8d58>
<hash_1000255ca1d5d7fd9b86706c5fd2d94fe31ca2>
<task_item_id>hash_080025b5718964f83c0649ca33289a8df737c9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>20</sequence>
</hash_1000255ca1d5d7fd9b86706c5fd2d94fe31ca2>
</items>
<inputs>
<hash_090025d3865d2e7800d624cf0a6998da01767d>
<name>Data Source [bro_fc_fan1]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002549bf91970e50abf9666d260075bcebf0|hash_0000254b26d8a99df8965c1ac243b771604be5|hash_00002502b6fde13f24ecc0c547845352635ce2|hash_0000253e708c28848a99a67dd5b729115bbd81</items>
</hash_090025d3865d2e7800d624cf0a6998da01767d>
<hash_090025666d8fdcd05c288a3ef7c752e26bebf7>
<name>Data Source [bro_fc_fan2]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000256ba4acc540738984b45e2c759389deba|hash_000025b22887398725f59f1aeb998d25ea2f95|hash_0000251020541b2b4b187bb63af6aa3baca538|hash_000025ba0852fb69e59b2e2a5f5b2c71b7f30e</items>
</hash_090025666d8fdcd05c288a3ef7c752e26bebf7>
<hash_09002583f9dea106ba54aeb82b22fd68bd784a>
<name>Data Source [bro_fc_fan3]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025710a0a6738ed45ef00e6a2e94654940d|hash_000025c6cac9c4a113b51853f2c3fa3f00e888|hash_00002543e5227a80ca528087d6e64fc3e9bdaf|hash_00002528c98e50fcbd00f53302808e0b4086fd</items>
</hash_09002583f9dea106ba54aeb82b22fd68bd784a>
<hash_090025643bae6d5ec2a907688090da2cdfdce5>
<name>Data Source [bro_fc_fan4]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002580dec38f5cd90fdaa5a57bf7bb6441c4|hash_00002501d70f7c90d034b839cc7607f2656131|hash_0000254c51ad91fc8fed78d418c04eb148216a|hash_0000250d27be582675555cc10d1e85ef9bf3fb</items>
</hash_090025643bae6d5ec2a907688090da2cdfdce5>
<hash_090025a29c616547277e02a94024047bf856d6>
<name>Data Source [bro_fc_fan5]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025a6054eb0abe7acd6987dda0ffacb7e61|hash_00002528f8803b0a5bd3ed52ec90264d46248d|hash_0000254fd316e0f870afa3e224a28371be8d58|hash_0000255ca1d5d7fd9b86706c5fd2d94fe31ca2</items>
</hash_090025a29c616547277e02a94024047bf856d6>
</inputs>
</hash_000025a4cef33184c8cf6ba372396d1acb6c8d>
<hash_0000255deb0d66c81262843dce5f3861be9966>
<name>Interface - Traffic (bits/sec)</name>
<graph>
<t_title></t_title>
<title>|host_description| - Traffic |query_ifName|</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>150</height>
<t_width></t_width>
<width>800</width>
<t_slope_mode></t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units></t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid>on</auto_scale_rigid>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_export></t_export>
<export>on</export>
<t_upper_limit></t_upper_limit>
<upper_limit>1000</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value></unit_exponent_value>
<t_vertical_label></t_vertical_label>
<vertical_label>bits per second</vertical_label>
</graph>
<items>
<hash_1000250470b2427dbfadb6b8346e10a71268fa>
<task_item_id>hash_0800252df25c57022b0c7e7d0be4c035ada1a0</task_item_id>
<color_id>00CF00</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Inbound</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000250470b2427dbfadb6b8346e10a71268fa>
<hash_10002584a5fe0db518550266309823f994ce9c>
<task_item_id>hash_0800252df25c57022b0c7e7d0be4c035ada1a0</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_10002584a5fe0db518550266309823f994ce9c>
<hash_1000252f222f28084085cd06a1f46e4449c793>
<task_item_id>hash_0800252df25c57022b0c7e7d0be4c035ada1a0</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000252f222f28084085cd06a1f46e4449c793>
<hash_10002555acbcc33f46ee6d754e8e81d1b54808>
<task_item_id>hash_0800252df25c57022b0c7e7d0be4c035ada1a0</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_10002555acbcc33f46ee6d754e8e81d1b54808>
<hash_100025fdaf2321fc890e355711c2bffc07d036>
<task_item_id>hash_080025721c0794526d1ac1c359f27dc56faa49</task_item_id>
<color_id>002A97</color_id>
<alpha>FF</alpha>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Outbound</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_100025fdaf2321fc890e355711c2bffc07d036>
<hash_100025768318f42819217ed81196d2179d3e1b>
<task_item_id>hash_080025721c0794526d1ac1c359f27dc56faa49</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100025768318f42819217ed81196d2179d3e1b>
<hash_100025cb3aa6256dcb3acd50d4517b77a1a5c3>
<task_item_id>hash_080025721c0794526d1ac1c359f27dc56faa49</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100025cb3aa6256dcb3acd50d4517b77a1a5c3>
<hash_100025671e989be7cbf12c623b4e79d91c7bed>
<task_item_id>hash_080025721c0794526d1ac1c359f27dc56faa49</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>hash_05002573f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return></hard_return>
<sequence>8</sequence>
</hash_100025671e989be7cbf12c623b4e79d91c7bed>
</items>
<inputs>
<hash_090025e9d4191277fdfd7d54171f153da57fb0>
<name>Inbound Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000250470b2427dbfadb6b8346e10a71268fa|hash_00002584a5fe0db518550266309823f994ce9c|hash_0000252f222f28084085cd06a1f46e4449c793|hash_00002555acbcc33f46ee6d754e8e81d1b54808</items>
</hash_090025e9d4191277fdfd7d54171f153da57fb0>
<hash_0900257b361722a11a03238ee8ab7ce44a1037>
<name>Outbound Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025fdaf2321fc890e355711c2bffc07d036|hash_000025768318f42819217ed81196d2179d3e1b|hash_000025cb3aa6256dcb3acd50d4517b77a1a5c3|hash_000025671e989be7cbf12c623b4e79d91c7bed</items>
</hash_0900257b361722a11a03238ee8ab7ce44a1037>
</inputs>
</hash_0000255deb0d66c81262843dce5f3861be9966>
<hash_00002506621cd4a9289417cadcb8f9b5cfba80>
<name>Interface - Errors/Discards</name>
<graph>
<t_title>on</t_title>
<title>|host_description| - Errors/Discards</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>120</height>
<t_width></t_width>
<width>500</width>
<t_slope_mode></t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units></t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid>on</auto_scale_rigid>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_export></t_export>
<export>on</export>
<t_upper_limit></t_upper_limit>
<upper_limit>100</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value></unit_exponent_value>
<t_vertical_label></t_vertical_label>
<vertical_label>errors/sec</vertical_label>
</graph>
<items>
<hash_1000257e04a041721df1f8828381a9ea2f2154>
<task_item_id>hash_0800254e2a72240955380dc8ffacfcc8c09874</task_item_id>
<color_id>FFAB00</color_id>
<alpha>FF</alpha>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Discards In</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000257e04a041721df1f8828381a9ea2f2154>
<hash_100025afc8bca6b1b3030a6d71818272336c6c>
<task_item_id>hash_0800254e2a72240955380dc8ffacfcc8c09874</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100025afc8bca6b1b3030a6d71818272336c6c>
<hash_1000256ac169785f5aeaf1cc5cdfd38dfcfb6c>
<task_item_id>hash_0800254e2a72240955380dc8ffacfcc8c09874</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000256ac169785f5aeaf1cc5cdfd38dfcfb6c>
<hash_100025178c0a0ce001d36a663ff6f213c07505>
<task_item_id>hash_0800254e2a72240955380dc8ffacfcc8c09874</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100025178c0a0ce001d36a663ff6f213c07505>
<hash_1000258e3268c0abde7550616bff719f10ee2f>
<task_item_id>hash_080025c802e2fd77f5b0a4c4298951bf65957c</task_item_id>
<color_id>F51D30</color_id>
<alpha>FF</alpha>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Errors In</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000258e3268c0abde7550616bff719f10ee2f>
<hash_10002518891392b149de63b62c4258a68d75f8>
<task_item_id>hash_080025c802e2fd77f5b0a4c4298951bf65957c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_10002518891392b149de63b62c4258a68d75f8>
<hash_100025dfc9d23de0182c9967ae3dabdfa55a16>
<task_item_id>hash_080025c802e2fd77f5b0a4c4298951bf65957c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100025dfc9d23de0182c9967ae3dabdfa55a16>
<hash_100025c47ba64e2e5ea8bf84aceec644513176>
<task_item_id>hash_080025c802e2fd77f5b0a4c4298951bf65957c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100025c47ba64e2e5ea8bf84aceec644513176>
<hash_100025617d10dff9bbc3edd9d733d9c254da76>
<task_item_id>hash_08002513ebb33f9cbccfcba828db1075a8167c</task_item_id>
<color_id>C4FD3D</color_id>
<alpha>FF</alpha>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Discards Out</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_100025617d10dff9bbc3edd9d733d9c254da76>
<hash_1000259269a66502c34d00ac3c8b1fcc329ac6>
<task_item_id>hash_08002513ebb33f9cbccfcba828db1075a8167c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_1000259269a66502c34d00ac3c8b1fcc329ac6>
<hash_100025d45deed7e1ad8350f3b46b537ae0a933>
<task_item_id>hash_08002513ebb33f9cbccfcba828db1075a8167c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_100025d45deed7e1ad8350f3b46b537ae0a933>
<hash_1000252f64cf47dc156e8c800ae03c3b893e3c>
<task_item_id>hash_08002513ebb33f9cbccfcba828db1075a8167c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_1000252f64cf47dc156e8c800ae03c3b893e3c>
<hash_10002557434bef8cb21283c1a73f055b0ada19>
<task_item_id>hash_08002531399c3725bee7e09ec04049e3d5cd17</task_item_id>
<color_id>00694A</color_id>
<alpha>FF</alpha>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Errors Out</text_format>
<hard_return></hard_return>
<sequence>13</sequence>
</hash_10002557434bef8cb21283c1a73f055b0ada19>
<hash_100025660a1b9365ccbba356fd142faaec9f04>
<task_item_id>hash_08002531399c3725bee7e09ec04049e3d5cd17</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>14</sequence>
</hash_100025660a1b9365ccbba356fd142faaec9f04>
<hash_10002528c5297bdaedcca29acf245ef4bbed9e>
<task_item_id>hash_08002531399c3725bee7e09ec04049e3d5cd17</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>15</sequence>
</hash_10002528c5297bdaedcca29acf245ef4bbed9e>
<hash_10002599098604fd0c78fd7dabac8f40f1fb29>
<task_item_id>hash_08002531399c3725bee7e09ec04049e3d5cd17</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>16</sequence>
</hash_10002599098604fd0c78fd7dabac8f40f1fb29>
</items>
<inputs>
<hash_090025fa83cd3a3b4271b644cb6459ea8c35dc>
<name>Discards In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000257e04a041721df1f8828381a9ea2f2154|hash_000025afc8bca6b1b3030a6d71818272336c6c|hash_0000256ac169785f5aeaf1cc5cdfd38dfcfb6c|hash_000025178c0a0ce001d36a663ff6f213c07505</items>
</hash_090025fa83cd3a3b4271b644cb6459ea8c35dc>
<hash_0900257946e8ee1e38a65462b85e31a15e35e5>
<name>Errors In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000258e3268c0abde7550616bff719f10ee2f|hash_00002518891392b149de63b62c4258a68d75f8|hash_000025dfc9d23de0182c9967ae3dabdfa55a16|hash_000025c47ba64e2e5ea8bf84aceec644513176</items>
</hash_0900257946e8ee1e38a65462b85e31a15e35e5>
<hash_090025e5acdd5368137c408d56ecf55b0e077c>
<name>Discards Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025617d10dff9bbc3edd9d733d9c254da76|hash_0000259269a66502c34d00ac3c8b1fcc329ac6|hash_000025d45deed7e1ad8350f3b46b537ae0a933|hash_0000252f64cf47dc156e8c800ae03c3b893e3c</items>
</hash_090025e5acdd5368137c408d56ecf55b0e077c>
<hash_090025a028e586e5fae667127c655fe0ac67f0>
<name>Errors Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002557434bef8cb21283c1a73f055b0ada19|hash_000025660a1b9365ccbba356fd142faaec9f04|hash_00002528c5297bdaedcca29acf245ef4bbed9e|hash_00002599098604fd0c78fd7dabac8f40f1fb29</items>
</hash_090025a028e586e5fae667127c655fe0ac67f0>
</inputs>
</hash_00002506621cd4a9289417cadcb8f9b5cfba80>
<hash_000025e0d1625a1f4776a5294583659d5cee15>
<name>Interface - Unicast Packets</name>