-
Notifications
You must be signed in to change notification settings - Fork 0
/
cacti_host_template_siklu.xml
3665 lines (3665 loc) · 150 KB
/
cacti_host_template_siklu.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_0200231668feaa4e55c10464b7ad6b5947a676>
<name>Siklu</name>
<graph_templates>hash_00002340f10cb65cce68356119e73bd6b26145|hash_000023893c2acb19913594cae9f167e21076c9|hash_0000231266b6a6e1ebadfbe98b8cbbb08ba9c3|hash_000023ed49b06e0b24f84b8332d3c76765f2cb|hash_000023b9c93d54561551a0b5360bb09ff10aa2</graph_templates>
<data_queries>hash_040023d75e406fdeca4fcef45b8be3a9a63cbc</data_queries>
</hash_0200231668feaa4e55c10464b7ad6b5947a676>
<hash_00002340f10cb65cce68356119e73bd6b26145>
<name>Siklu - RSSI</name>
<graph>
<t_title></t_title>
<title>|host_description| - RSSI</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>300</height>
<t_width></t_width>
<width>900</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>1</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>-20</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>-100</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_100023d1e8ce07ce1aa442c52188d17fce5b64>
<task_item_id>hash_0800232a97dade9794c10577f72ee54c0948a8</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>RSSI</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100023d1e8ce07ce1aa442c52188d17fce5b64>
<hash_10002325693d4832905256e16df8669602ac6a>
<task_item_id>hash_0800232a97dade9794c10577f72ee54c0948a8</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>4</sequence>
</hash_10002325693d4832905256e16df8669602ac6a>
<hash_100023ec7febccd977bfb968428e1c9bdc6ac0>
<task_item_id>hash_0800232a97dade9794c10577f72ee54c0948a8</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>5</sequence>
</hash_100023ec7febccd977bfb968428e1c9bdc6ac0>
<hash_1000237b447d88611bc8c729de59d5d9dff90d>
<task_item_id>hash_0800232a97dade9794c10577f72ee54c0948a8</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>6</sequence>
</hash_1000237b447d88611bc8c729de59d5d9dff90d>
</items>
<inputs>
<hash_0900230315caeb5c08f31516f1ef146ea0cff3>
<name>Data Source [rssi]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000023d1e8ce07ce1aa442c52188d17fce5b64|hash_00002325693d4832905256e16df8669602ac6a|hash_000023ec7febccd977bfb968428e1c9bdc6ac0|hash_0000237b447d88611bc8c729de59d5d9dff90d</items>
</hash_0900230315caeb5c08f31516f1ef146ea0cff3>
</inputs>
</hash_00002340f10cb65cce68356119e73bd6b26145>
<hash_000023893c2acb19913594cae9f167e21076c9>
<name>Siklu - CINR</name>
<graph>
<t_title></t_title>
<title>|host_description| - CINR</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>300</height>
<t_width></t_width>
<width>900</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>4</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>30</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></vertical_label>
</graph>
<items>
<hash_1000231bc28f511e252fe98eaed5893f3f8dc9>
<task_item_id>hash_080023d1be186cbff60966c56e8f8a040988e2</task_item_id>
<color_id>F51D30</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_1000231bc28f511e252fe98eaed5893f3f8dc9>
<hash_1000236a2950dcc43c44cd39aa0264741d4b88>
<task_item_id>hash_080023d1be186cbff60966c56e8f8a040988e2</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_1000236a2950dcc43c44cd39aa0264741d4b88>
<hash_10002334675d0e583005569f15ebedb1a80d79>
<task_item_id>hash_080023d1be186cbff60966c56e8f8a040988e2</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_10002334675d0e583005569f15ebedb1a80d79>
<hash_1000239670ffa96e1bd82ba353820618dafaee>
<task_item_id>hash_080023d1be186cbff60966c56e8f8a040988e2</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_1000239670ffa96e1bd82ba353820618dafaee>
</items>
<inputs>
<hash_090023e403fc47da874962c01b1f17a60249c7>
<name>Data Source [cinr]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000231bc28f511e252fe98eaed5893f3f8dc9|hash_0000236a2950dcc43c44cd39aa0264741d4b88|hash_00002334675d0e583005569f15ebedb1a80d79|hash_0000239670ffa96e1bd82ba353820618dafaee</items>
</hash_090023e403fc47da874962c01b1f17a60249c7>
</inputs>
</hash_000023893c2acb19913594cae9f167e21076c9>
<hash_0000231266b6a6e1ebadfbe98b8cbbb08ba9c3>
<name>Siklu - temperature</name>
<graph>
<t_title></t_title>
<title>|host_description| - temp</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>300</height>
<t_width></t_width>
<width>900</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>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></vertical_label>
</graph>
<items>
<hash_1000236ead525a2bfae5f9231c9668391175e7>
<task_item_id>hash_080023ab1c21ba495b41ff473297fbdbcb6ff4</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>temp</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000236ead525a2bfae5f9231c9668391175e7>
<hash_1000238303883d25a5066b6690fa3b430335d1>
<task_item_id>hash_080023ab1c21ba495b41ff473297fbdbcb6ff4</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>4</sequence>
</hash_1000238303883d25a5066b6690fa3b430335d1>
<hash_1000233cf791a71cfdf1b063a4b8797bf84d2b>
<task_item_id>hash_080023ab1c21ba495b41ff473297fbdbcb6ff4</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>5</sequence>
</hash_1000233cf791a71cfdf1b063a4b8797bf84d2b>
<hash_1000236dfdce7eb0112dfd926837d577b573de>
<task_item_id>hash_080023ab1c21ba495b41ff473297fbdbcb6ff4</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>6</sequence>
</hash_1000236dfdce7eb0112dfd926837d577b573de>
</items>
<inputs>
<hash_0900234070b885e045dc66b215bda45e6276c3>
<name>Data Source [temp]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000238303883d25a5066b6690fa3b430335d1|hash_0000236ead525a2bfae5f9231c9668391175e7|hash_0000233cf791a71cfdf1b063a4b8797bf84d2b|hash_0000236dfdce7eb0112dfd926837d577b573de</items>
</hash_0900234070b885e045dc66b215bda45e6276c3>
</inputs>
</hash_0000231266b6a6e1ebadfbe98b8cbbb08ba9c3>
<hash_000023ed49b06e0b24f84b8332d3c76765f2cb>
<name>Siklu - voltage</name>
<graph>
<t_title></t_title>
<title>|host_description| - voltage</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>300</height>
<t_width></t_width>
<width>900</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>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></vertical_label>
</graph>
<items>
<hash_1000234a25493ebfaa97550801a54ebb269583>
<task_item_id>hash_0800231d34f4ea644aa6702b5ed87fc8116355</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>voltage</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000234a25493ebfaa97550801a54ebb269583>
<hash_10002317b206d2a82109d1187cd98697a1ec8f>
<task_item_id>hash_0800231d34f4ea644aa6702b5ed87fc8116355</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>4</sequence>
</hash_10002317b206d2a82109d1187cd98697a1ec8f>
<hash_100023314eb62af23fe57fe39c65fb1cf88f10>
<task_item_id>hash_0800231d34f4ea644aa6702b5ed87fc8116355</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>5</sequence>
</hash_100023314eb62af23fe57fe39c65fb1cf88f10>
<hash_10002397512f0445a3f88efdc895975eb9bf26>
<task_item_id>hash_0800231d34f4ea644aa6702b5ed87fc8116355</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>6</sequence>
</hash_10002397512f0445a3f88efdc895975eb9bf26>
</items>
<inputs>
<hash_0900234796b558ddc9fe588cd916ec4b0ed0e1>
<name>Data Source [voltage]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002317b206d2a82109d1187cd98697a1ec8f|hash_0000234a25493ebfaa97550801a54ebb269583|hash_000023314eb62af23fe57fe39c65fb1cf88f10|hash_00002397512f0445a3f88efdc895975eb9bf26</items>
</hash_0900234796b558ddc9fe588cd916ec4b0ed0e1>
</inputs>
</hash_000023ed49b06e0b24f84b8332d3c76765f2cb>
<hash_000023b9c93d54561551a0b5360bb09ff10aa2>
<name>Siklu - modulace</name>
<graph>
<t_title></t_title>
<title>|host_description| - modulace</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>300</height>
<t_width></t_width>
<width>900</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>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></vertical_label>
</graph>
<items>
<hash_1000237c761b2de936488da5e1fe8140bc781b>
<task_item_id>hash_08002333d9b7959d4b169c7ecfb81fbd645a3a</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>modulace</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000237c761b2de936488da5e1fe8140bc781b>
</items>
<inputs>
<hash_0900233c8df32a319ec94092e0f9ebced01f07>
<name>Data Source [modulace]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000237c761b2de936488da5e1fe8140bc781b</items>
</hash_0900233c8df32a319ec94092e0f9ebced01f07>
</inputs>
</hash_000023b9c93d54561551a0b5360bb09ff10aa2>
<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>