-
Notifications
You must be signed in to change notification settings - Fork 0
/
cacti_host_template_ericsson.xml
2944 lines (2944 loc) · 123 KB
/
cacti_host_template_ericsson.xml
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_02002337617184aab9353bcb96c7931046c510>
<name>Ericsson</name>
<graph_templates>hash_000023b5f0fd2233028d507b22c043c7e7991d</graph_templates>
<data_queries>hash_040023d75e406fdeca4fcef45b8be3a9a63cbc</data_queries>
</hash_02002337617184aab9353bcb96c7931046c510>
<hash_000023b5f0fd2233028d507b22c043c7e7991d>
<name>Ericsson - Signal</name>
<graph>
<t_title></t_title>
<title>|host_description| - Signal</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></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>-50</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></vertical_label>
</graph>
<items>
<hash_1000239f0d3dd659f2ee7675bc78325d3a317c>
<task_item_id>hash_0800232b487d25f37e3e58983f4c2078ab23c0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format></text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000239f0d3dd659f2ee7675bc78325d3a317c>
<hash_100023ec28b292056801bf1a58bf51ac1c194b>
<task_item_id>hash_0800232b487d25f37e3e58983f4c2078ab23c0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100023ec28b292056801bf1a58bf51ac1c194b>
<hash_1000238039bb6943fa04f7a98a6f553e3149ef>
<task_item_id>hash_0800232b487d25f37e3e58983f4c2078ab23c0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000238039bb6943fa04f7a98a6f553e3149ef>
<hash_1000238f458a33db14607e30de033d2ffb1152>
<task_item_id>hash_0800232b487d25f37e3e58983f4c2078ab23c0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_1000238f458a33db14607e30de033d2ffb1152>
</items>
<inputs>
<hash_09002398cc9e3449aff97d5a382ec811eb622d>
<name>Data Source [signal]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000239f0d3dd659f2ee7675bc78325d3a317c|hash_000023ec28b292056801bf1a58bf51ac1c194b|hash_0000238039bb6943fa04f7a98a6f553e3149ef|hash_0000238f458a33db14607e30de033d2ffb1152</items>
</hash_09002398cc9e3449aff97d5a382ec811eb622d>
</inputs>
</hash_000023b5f0fd2233028d507b22c043c7e7991d>
<hash_0000235deb0d66c81262843dce5f3861be9966>
<name>Interface - Traffic (bits/sec)</name>
<graph>
<t_title></t_title>
<title>|host_description|-Traf-|query_ifName|-|query_ifAlias|</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>bits per second</vertical_label>
</graph>
<items>
<hash_1000230470b2427dbfadb6b8346e10a71268fa>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Inbound</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000230470b2427dbfadb6b8346e10a71268fa>
<hash_10002384a5fe0db518550266309823f994ce9c>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_10002384a5fe0db518550266309823f994ce9c>
<hash_1000232f222f28084085cd06a1f46e4449c793>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000232f222f28084085cd06a1f46e4449c793>
<hash_10002355acbcc33f46ee6d754e8e81d1b54808>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_10002355acbcc33f46ee6d754e8e81d1b54808>
<hash_100023fdaf2321fc890e355711c2bffc07d036>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Outbound</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_100023fdaf2321fc890e355711c2bffc07d036>
<hash_100023768318f42819217ed81196d2179d3e1b>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100023768318f42819217ed81196d2179d3e1b>
<hash_100023cb3aa6256dcb3acd50d4517b77a1a5c3>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100023cb3aa6256dcb3acd50d4517b77a1a5c3>
<hash_100023671e989be7cbf12c623b4e79d91c7bed>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_05002373f95f8b77b5508157d64047342c421e</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100023671e989be7cbf12c623b4e79d91c7bed>
</items>
<inputs>
<hash_090023e9d4191277fdfd7d54171f153da57fb0>
<name>Inbound Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000230470b2427dbfadb6b8346e10a71268fa|hash_00002384a5fe0db518550266309823f994ce9c|hash_0000232f222f28084085cd06a1f46e4449c793|hash_00002355acbcc33f46ee6d754e8e81d1b54808</items>
</hash_090023e9d4191277fdfd7d54171f153da57fb0>
<hash_0900237b361722a11a03238ee8ab7ce44a1037>
<name>Outbound Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023fdaf2321fc890e355711c2bffc07d036|hash_000023768318f42819217ed81196d2179d3e1b|hash_000023cb3aa6256dcb3acd50d4517b77a1a5c3|hash_000023671e989be7cbf12c623b4e79d91c7bed</items>
</hash_0900237b361722a11a03238ee8ab7ce44a1037>
</inputs>
</hash_0000235deb0d66c81262843dce5f3861be9966>
<hash_00002306621cd4a9289417cadcb8f9b5cfba80>
<name>Interface - Errors/Discards</name>
<graph>
<t_title></t_title>
<title>|host_description|-Err-|query_ifName|-|query_ifAlias|</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_1000237e04a041721df1f8828381a9ea2f2154>
<task_item_id>hash_0800234e2a72240955380dc8ffacfcc8c09874</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Discards In</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000237e04a041721df1f8828381a9ea2f2154>
<hash_100023afc8bca6b1b3030a6d71818272336c6c>
<task_item_id>hash_0800234e2a72240955380dc8ffacfcc8c09874</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100023afc8bca6b1b3030a6d71818272336c6c>
<hash_1000236ac169785f5aeaf1cc5cdfd38dfcfb6c>
<task_item_id>hash_0800234e2a72240955380dc8ffacfcc8c09874</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000236ac169785f5aeaf1cc5cdfd38dfcfb6c>
<hash_100023178c0a0ce001d36a663ff6f213c07505>
<task_item_id>hash_0800234e2a72240955380dc8ffacfcc8c09874</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100023178c0a0ce001d36a663ff6f213c07505>
<hash_1000238e3268c0abde7550616bff719f10ee2f>
<task_item_id>hash_080023c802e2fd77f5b0a4c4298951bf65957c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Errors In</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000238e3268c0abde7550616bff719f10ee2f>
<hash_10002318891392b149de63b62c4258a68d75f8>
<task_item_id>hash_080023c802e2fd77f5b0a4c4298951bf65957c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_10002318891392b149de63b62c4258a68d75f8>
<hash_100023dfc9d23de0182c9967ae3dabdfa55a16>
<task_item_id>hash_080023c802e2fd77f5b0a4c4298951bf65957c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100023dfc9d23de0182c9967ae3dabdfa55a16>
<hash_100023c47ba64e2e5ea8bf84aceec644513176>
<task_item_id>hash_080023c802e2fd77f5b0a4c4298951bf65957c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100023c47ba64e2e5ea8bf84aceec644513176>
<hash_100023617d10dff9bbc3edd9d733d9c254da76>
<task_item_id>hash_08002313ebb33f9cbccfcba828db1075a8167c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Discards Out</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_100023617d10dff9bbc3edd9d733d9c254da76>
<hash_1000239269a66502c34d00ac3c8b1fcc329ac6>
<task_item_id>hash_08002313ebb33f9cbccfcba828db1075a8167c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_1000239269a66502c34d00ac3c8b1fcc329ac6>
<hash_100023d45deed7e1ad8350f3b46b537ae0a933>
<task_item_id>hash_08002313ebb33f9cbccfcba828db1075a8167c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_100023d45deed7e1ad8350f3b46b537ae0a933>
<hash_1000232f64cf47dc156e8c800ae03c3b893e3c>
<task_item_id>hash_08002313ebb33f9cbccfcba828db1075a8167c</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_1000232f64cf47dc156e8c800ae03c3b893e3c>
<hash_10002357434bef8cb21283c1a73f055b0ada19>
<task_item_id>hash_08002331399c3725bee7e09ec04049e3d5cd17</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Errors Out</text_format>
<hard_return></hard_return>
<sequence>13</sequence>
</hash_10002357434bef8cb21283c1a73f055b0ada19>
<hash_100023660a1b9365ccbba356fd142faaec9f04>
<task_item_id>hash_08002331399c3725bee7e09ec04049e3d5cd17</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>14</sequence>
</hash_100023660a1b9365ccbba356fd142faaec9f04>
<hash_10002328c5297bdaedcca29acf245ef4bbed9e>
<task_item_id>hash_08002331399c3725bee7e09ec04049e3d5cd17</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>15</sequence>
</hash_10002328c5297bdaedcca29acf245ef4bbed9e>
<hash_10002399098604fd0c78fd7dabac8f40f1fb29>
<task_item_id>hash_08002331399c3725bee7e09ec04049e3d5cd17</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>16</sequence>
</hash_10002399098604fd0c78fd7dabac8f40f1fb29>
</items>
<inputs>
<hash_090023fa83cd3a3b4271b644cb6459ea8c35dc>
<name>Discards In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000237e04a041721df1f8828381a9ea2f2154|hash_000023afc8bca6b1b3030a6d71818272336c6c|hash_0000236ac169785f5aeaf1cc5cdfd38dfcfb6c|hash_000023178c0a0ce001d36a663ff6f213c07505</items>
</hash_090023fa83cd3a3b4271b644cb6459ea8c35dc>
<hash_0900237946e8ee1e38a65462b85e31a15e35e5>
<name>Errors In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000238e3268c0abde7550616bff719f10ee2f|hash_00002318891392b149de63b62c4258a68d75f8|hash_000023dfc9d23de0182c9967ae3dabdfa55a16|hash_000023c47ba64e2e5ea8bf84aceec644513176</items>
</hash_0900237946e8ee1e38a65462b85e31a15e35e5>
<hash_090023e5acdd5368137c408d56ecf55b0e077c>
<name>Discards Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023617d10dff9bbc3edd9d733d9c254da76|hash_0000239269a66502c34d00ac3c8b1fcc329ac6|hash_000023d45deed7e1ad8350f3b46b537ae0a933|hash_0000232f64cf47dc156e8c800ae03c3b893e3c</items>
</hash_090023e5acdd5368137c408d56ecf55b0e077c>
<hash_090023a028e586e5fae667127c655fe0ac67f0>
<name>Errors Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002357434bef8cb21283c1a73f055b0ada19|hash_000023660a1b9365ccbba356fd142faaec9f04|hash_00002328c5297bdaedcca29acf245ef4bbed9e|hash_00002399098604fd0c78fd7dabac8f40f1fb29</items>
</hash_090023a028e586e5fae667127c655fe0ac67f0>
</inputs>
</hash_00002306621cd4a9289417cadcb8f9b5cfba80>
<hash_000023e0d1625a1f4776a5294583659d5cee15>
<name>Interface - Unicast Packets</name>
<graph>
<t_title>on</t_title>
<title>|host_description| - Unicast Packets</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>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>packets/sec</vertical_label>
</graph>
<items>
<hash_100023d4e5f253f01c3ea77182c5a46418fc44>
<task_item_id>hash_080023636672962b5bb2f31d86985e2ab4bdfe</task_item_id>
<color_id>FFC73B</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Unicast Packets In</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100023d4e5f253f01c3ea77182c5a46418fc44>
<hash_100023526a96add143da021c5f00d8764a6c12>
<task_item_id>hash_080023636672962b5bb2f31d86985e2ab4bdfe</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100023526a96add143da021c5f00d8764a6c12>
<hash_10002381eeb46f451212f00fd7caee42a81c0b>
<task_item_id>hash_080023636672962b5bb2f31d86985e2ab4bdfe</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_10002381eeb46f451212f00fd7caee42a81c0b>
<hash_100023089e4d1c3faeb00fd5dcc9622b06d656>
<task_item_id>hash_080023636672962b5bb2f31d86985e2ab4bdfe</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100023089e4d1c3faeb00fd5dcc9622b06d656>
<hash_1000239d052e7d632c479737fbfaced0821f79>
<task_item_id>hash_08002318ce92c125a236a190ee9dd948f56268</task_item_id>
<color_id>00234B</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Unicast Packets Out</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000239d052e7d632c479737fbfaced0821f79>
<hash_1000239b9fa6268571b6a04fa4411d8e08c730>
<task_item_id>hash_08002318ce92c125a236a190ee9dd948f56268</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_1000239b9fa6268571b6a04fa4411d8e08c730>
<hash_1000238e8f2fbeb624029cbda1d2a6ddd991ba>
<task_item_id>hash_08002318ce92c125a236a190ee9dd948f56268</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000238e8f2fbeb624029cbda1d2a6ddd991ba>
<hash_100023c76495beb1ed01f0799838eb8a893124>
<task_item_id>hash_08002318ce92c125a236a190ee9dd948f56268</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100023c76495beb1ed01f0799838eb8a893124>
</items>
<inputs>
<hash_09002300ae916640272f5aca54d73ae34c326b>
<name>Unicast Packets Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000239d052e7d632c479737fbfaced0821f79|hash_0000239b9fa6268571b6a04fa4411d8e08c730|hash_0000238e8f2fbeb624029cbda1d2a6ddd991ba|hash_000023c76495beb1ed01f0799838eb8a893124</items>
</hash_09002300ae916640272f5aca54d73ae34c326b>
<hash_0900231bc1652f82488ebfb7242c65d2ffa9c7>
<name>Unicast Packets In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023d4e5f253f01c3ea77182c5a46418fc44|hash_000023526a96add143da021c5f00d8764a6c12|hash_00002381eeb46f451212f00fd7caee42a81c0b|hash_000023089e4d1c3faeb00fd5dcc9622b06d656</items>
</hash_0900231bc1652f82488ebfb7242c65d2ffa9c7>
</inputs>
</hash_000023e0d1625a1f4776a5294583659d5cee15>
<hash_00002310ca5530554da7b73dc69d291bf55d38>
<name>Interface - Non-Unicast Packets</name>
<graph>
<t_title>on</t_title>
<title>|host_description| - Non-Unicast Packets</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>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>packets/sec</vertical_label>
</graph>
<items>
<hash_100023fe66cb973966d22250de073405664200>
<task_item_id>hash_08002393e2b6f59b10b13f2ddf2da3ae98b89a</task_item_id>
<color_id>FFF200</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Non-Unicast Packets In</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100023fe66cb973966d22250de073405664200>
<hash_1000231ba3fc3466ad32fdd2669cac6cad6faa>
<task_item_id>hash_08002393e2b6f59b10b13f2ddf2da3ae98b89a</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000231ba3fc3466ad32fdd2669cac6cad6faa>
<hash_100023f810154d3a934c723c21659e66199cdf>
<task_item_id>hash_08002393e2b6f59b10b13f2ddf2da3ae98b89a</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100023f810154d3a934c723c21659e66199cdf>
<hash_10002398a161df359b01304346657ff1a9d787>
<task_item_id>hash_08002393e2b6f59b10b13f2ddf2da3ae98b89a</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_10002398a161df359b01304346657ff1a9d787>
<hash_100023d5e55eaf617ad1f0516f6343b3f07c5e>
<task_item_id>hash_0800237be68cbc4ee0b2973eb9785f8c7a35c7</task_item_id>
<color_id>00234B</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Non-Unicast Packets Out</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_100023d5e55eaf617ad1f0516f6343b3f07c5e>
<hash_1000239fde6b8c84089b9f9044e681162e7567>
<task_item_id>hash_0800237be68cbc4ee0b2973eb9785f8c7a35c7</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_1000239fde6b8c84089b9f9044e681162e7567>
<hash_1000239a3510727c3d9fa7e2e7a015783a99b3>
<task_item_id>hash_0800237be68cbc4ee0b2973eb9785f8c7a35c7</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000239a3510727c3d9fa7e2e7a015783a99b3>
<hash_100023451afd23f2cb59ab9b975fd6e2735815>
<task_item_id>hash_0800237be68cbc4ee0b2973eb9785f8c7a35c7</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100023451afd23f2cb59ab9b975fd6e2735815>
</items>
<inputs>
<hash_090023e3177d0e56278de320db203f32fb803d>
<name>Non-Unicast Packets In Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023fe66cb973966d22250de073405664200|hash_0000231ba3fc3466ad32fdd2669cac6cad6faa|hash_000023f810154d3a934c723c21659e66199cdf|hash_00002398a161df359b01304346657ff1a9d787</items>
</hash_090023e3177d0e56278de320db203f32fb803d>
<hash_0900234f20fba2839764707f1c3373648c5fef>
<name>Non-Unicast Packets Out Data Source</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023d5e55eaf617ad1f0516f6343b3f07c5e|hash_0000239fde6b8c84089b9f9044e681162e7567|hash_0000239a3510727c3d9fa7e2e7a015783a99b3|hash_000023451afd23f2cb59ab9b975fd6e2735815</items>
</hash_0900234f20fba2839764707f1c3373648c5fef>
</inputs>
</hash_00002310ca5530554da7b73dc69d291bf55d38>
<hash_000023df244b337547b434b486662c3c5c7472>
<name>Interface - Traffic (bytes/sec)</name>
<graph>
<t_title>on</t_title>
<title>|host_description| - Traffic</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>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>bytes per second</vertical_label>
</graph>
<items>
<hash_100023de3eefd6d6c58afabdabcaf6c0168378>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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>0</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Inbound</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100023de3eefd6d6c58afabdabcaf6c0168378>
<hash_1000231a80fa108f5c46eecb03090c65bc9a12>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000231a80fa108f5c46eecb03090c65bc9a12>
<hash_100023fe458892e7faa9d232e343d911e845f3>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100023fe458892e7faa9d232e343d911e845f3>
<hash_100023175c0a68689bebc38aad2fbc271047b3>
<task_item_id>hash_0800232df25c57022b0c7e7d0be4c035ada1a0</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100023175c0a68689bebc38aad2fbc271047b3>
<hash_1000231bf2283106510491ddf3b9c1376c0b31>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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>0</cdef_id>
<value></value>
<gprint_id>hash_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Outbound</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000231bf2283106510491ddf3b9c1376c0b31>
<hash_100023c5202f1690ffe45600c0d31a4a804f67>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100023c5202f1690ffe45600c0d31a4a804f67>
<hash_100023eb9794e3fdafc2b74f0819269569ed40>
<task_item_id>hash_080023721c0794526d1ac1c359f27dc56faa49</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_060023e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>