-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcacti_graph_template_openldap_initiated_operations.xml
1106 lines (1106 loc) · 46.1 KB
/
cacti_graph_template_openldap_initiated_operations.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_000006353010e1146b59cfed7dfcb1ad377328>
<name>OpenLDAP - initiated operations</name>
<graph>
<t_title></t_title>
<title>|host_description| - OpenLDAP - intiated operation</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_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_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>operations per seconds</vertical_label>
</graph>
<items>
<hash_100006c19ecd44c9d6874a971adbc4f0d50fd4>
<task_item_id>hash_080006295b81501cf1bda0cb20cfb424ab84f2</task_item_id>
<color_id>FFC3C0</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Abandon</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100006c19ecd44c9d6874a971adbc4f0d50fd4>
<hash_100006fb3506e80180332772c0025177983b1f>
<task_item_id>hash_080006295b81501cf1bda0cb20cfb424ab84f2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100006fb3506e80180332772c0025177983b1f>
<hash_100006f974410367b99a6989e04fbf7197dc0d>
<task_item_id>hash_080006295b81501cf1bda0cb20cfb424ab84f2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100006f974410367b99a6989e04fbf7197dc0d>
<hash_1000067eee8f225d4bc438db25dd17ef89faf6>
<task_item_id>hash_080006295b81501cf1bda0cb20cfb424ab84f2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_1000067eee8f225d4bc438db25dd17ef89faf6>
<hash_1000067a6ddf378cce07d09376e97932e0afca>
<task_item_id>hash_080006d6e9c733a45be3fe7901339eb77c1b84</task_item_id>
<color_id>FF0000</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Add</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_1000067a6ddf378cce07d09376e97932e0afca>
<hash_10000664e00594455077de03872bf8f2b49bb7>
<task_item_id>hash_080006d6e9c733a45be3fe7901339eb77c1b84</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_10000664e00594455077de03872bf8f2b49bb7>
<hash_1000065907f5d7a72ab9134445b90064e3401b>
<task_item_id>hash_080006d6e9c733a45be3fe7901339eb77c1b84</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000065907f5d7a72ab9134445b90064e3401b>
<hash_100006b8f0a6b5a8a51f1a9cdfa14e482e6d8c>
<task_item_id>hash_080006d6e9c733a45be3fe7901339eb77c1b84</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100006b8f0a6b5a8a51f1a9cdfa14e482e6d8c>
<hash_10000613b29195e1159d22f722f56ffdfd6ab2>
<task_item_id>hash_0800066dc570d14bf6dce5c540b0d913963697</task_item_id>
<color_id>FF7D00</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Bind</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_10000613b29195e1159d22f722f56ffdfd6ab2>
<hash_1000062c916e2f6048671fc90cbd4aefec7973>
<task_item_id>hash_0800066dc570d14bf6dce5c540b0d913963697</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_1000062c916e2f6048671fc90cbd4aefec7973>
<hash_10000621bcbbf860060b3934a2553fe7c2719d>
<task_item_id>hash_0800066dc570d14bf6dce5c540b0d913963697</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_10000621bcbbf860060b3934a2553fe7c2719d>
<hash_100006095ae7590998ab31ba66f36a4af3af43>
<task_item_id>hash_0800066dc570d14bf6dce5c540b0d913963697</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_100006095ae7590998ab31ba66f36a4af3af43>
<hash_100006fc56901e781def12a54839ad70022b7e>
<task_item_id>hash_080006f574f50e402f4553ab04d8b2eed84bb1</task_item_id>
<color_id>AFECED</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Compare</text_format>
<hard_return></hard_return>
<sequence>13</sequence>
</hash_100006fc56901e781def12a54839ad70022b7e>
<hash_100006fa49c4df545d448d4a46f323d7e56824>
<task_item_id>hash_080006f574f50e402f4553ab04d8b2eed84bb1</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>14</sequence>
</hash_100006fa49c4df545d448d4a46f323d7e56824>
<hash_1000060f7e5a6ff92e5eac3650c225336c5df2>
<task_item_id>hash_080006f574f50e402f4553ab04d8b2eed84bb1</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>15</sequence>
</hash_1000060f7e5a6ff92e5eac3650c225336c5df2>
<hash_10000647e1c9f197ad1b7e51efa3e9206ecc27>
<task_item_id>hash_080006f574f50e402f4553ab04d8b2eed84bb1</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>16</sequence>
</hash_10000647e1c9f197ad1b7e51efa3e9206ecc27>
<hash_1000064dfb1d722c01ab840aaa7be8e41a16cc>
<task_item_id>hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2</task_item_id>
<color_id>750F7D</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Delete</text_format>
<hard_return></hard_return>
<sequence>17</sequence>
</hash_1000064dfb1d722c01ab840aaa7be8e41a16cc>
<hash_1000069c1a4cd0c2582bdbb5487c488db1d8c3>
<task_item_id>hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>18</sequence>
</hash_1000069c1a4cd0c2582bdbb5487c488db1d8c3>
<hash_100006075075be5b925162900848c8b048441b>
<task_item_id>hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>19</sequence>
</hash_100006075075be5b925162900848c8b048441b>
<hash_1000060dc0fd03558904e817e4b7e6ebb96772>
<task_item_id>hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>20</sequence>
</hash_1000060dc0fd03558904e817e4b7e6ebb96772>
<hash_100006aeef7477d27290bfe2c3994dad3e67b0>
<task_item_id>hash_080006fae4e59debaf54343b88b1d12eff6bb8</task_item_id>
<color_id>FAFD9E</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Extended</text_format>
<hard_return></hard_return>
<sequence>21</sequence>
</hash_100006aeef7477d27290bfe2c3994dad3e67b0>
<hash_100006712fd9ee2f083a92198faec9f2d6bb84>
<task_item_id>hash_080006fae4e59debaf54343b88b1d12eff6bb8</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>22</sequence>
</hash_100006712fd9ee2f083a92198faec9f2d6bb84>
<hash_100006e1a6dea09ea4f96b2c7f0ac7143458cf>
<task_item_id>hash_080006fae4e59debaf54343b88b1d12eff6bb8</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>23</sequence>
</hash_100006e1a6dea09ea4f96b2c7f0ac7143458cf>
<hash_100006d421325152efc41b92fbeb5037c45227>
<task_item_id>hash_080006fae4e59debaf54343b88b1d12eff6bb8</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>24</sequence>
</hash_100006d421325152efc41b92fbeb5037c45227>
<hash_1000061604ae9d3ef2e07bb311a871fda2279c>
<task_item_id>hash_080006d9399fe1fd1ef41a591b670d2fc16c2a</task_item_id>
<color_id>A150AA</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Modify</text_format>
<hard_return></hard_return>
<sequence>25</sequence>
</hash_1000061604ae9d3ef2e07bb311a871fda2279c>
<hash_10000624df017e91ce159d91810b02649c071b>
<task_item_id>hash_080006d9399fe1fd1ef41a591b670d2fc16c2a</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>26</sequence>
</hash_10000624df017e91ce159d91810b02649c071b>
<hash_10000658e9a9c0407cf1d089ba96e4730dce92>
<task_item_id>hash_080006d9399fe1fd1ef41a591b670d2fc16c2a</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>27</sequence>
</hash_10000658e9a9c0407cf1d089ba96e4730dce92>
<hash_100006ec62d74f28da3d5c8c9566291997cad2>
<task_item_id>hash_080006d9399fe1fd1ef41a591b670d2fc16c2a</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>28</sequence>
</hash_100006ec62d74f28da3d5c8c9566291997cad2>
<hash_10000628032fab895a889b7906c9cc6c270bfd>
<task_item_id>hash_080006a76eec69aab5a010c1fcc8cb865c049b</task_item_id>
<color_id>C4FD3D</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Modrdn</text_format>
<hard_return></hard_return>
<sequence>29</sequence>
</hash_10000628032fab895a889b7906c9cc6c270bfd>
<hash_100006d02391457d799ca50446255a3eccfcd2>
<task_item_id>hash_080006a76eec69aab5a010c1fcc8cb865c049b</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>30</sequence>
</hash_100006d02391457d799ca50446255a3eccfcd2>
<hash_1000062665810f2202338856048253cac2343e>
<task_item_id>hash_080006a76eec69aab5a010c1fcc8cb865c049b</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>31</sequence>
</hash_1000062665810f2202338856048253cac2343e>
<hash_10000669a9fd90332fa4382f4e5dc3ceb89516>
<task_item_id>hash_080006a76eec69aab5a010c1fcc8cb865c049b</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>32</sequence>
</hash_10000669a9fd90332fa4382f4e5dc3ceb89516>
<hash_1000068be9c99a4bf1c602b7105aeacbf8c969>
<task_item_id>hash_08000645aed150c133d98cdde25e848828d0bd</task_item_id>
<color_id>0000FF</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Search</text_format>
<hard_return></hard_return>
<sequence>33</sequence>
</hash_1000068be9c99a4bf1c602b7105aeacbf8c969>
<hash_100006cb2d5e9f97b150b7baec7a52413de0d7>
<task_item_id>hash_08000645aed150c133d98cdde25e848828d0bd</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>34</sequence>
</hash_100006cb2d5e9f97b150b7baec7a52413de0d7>
<hash_10000619142d31619bc6049bce2aa198b9001b>
<task_item_id>hash_08000645aed150c133d98cdde25e848828d0bd</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>35</sequence>
</hash_10000619142d31619bc6049bce2aa198b9001b>
<hash_100006902723d465ed9efe41652323f0496f8c>
<task_item_id>hash_08000645aed150c133d98cdde25e848828d0bd</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>36</sequence>
</hash_100006902723d465ed9efe41652323f0496f8c>
<hash_1000069e43b73e3ba8cd3884b97ea2785c2a98>
<task_item_id>hash_0800069ee15b0e0400f1fcb773540908743083</task_item_id>
<color_id>FFF200</color_id>
<graph_type_id>5</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Unbind</text_format>
<hard_return></hard_return>
<sequence>37</sequence>
</hash_1000069e43b73e3ba8cd3884b97ea2785c2a98>
<hash_100006ff9e37a82aa1b4dad5992ba181725e06>
<task_item_id>hash_0800069ee15b0e0400f1fcb773540908743083</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>39</sequence>
</hash_100006ff9e37a82aa1b4dad5992ba181725e06>
<hash_1000069b2cc1bffca2773d92cabc0a154ce8d5>
<task_item_id>hash_0800069ee15b0e0400f1fcb773540908743083</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>40</sequence>
</hash_1000069b2cc1bffca2773d92cabc0a154ce8d5>
<hash_100006ab701f2d061b30fd176d202e6792cf23>
<task_item_id>hash_0800069ee15b0e0400f1fcb773540908743083</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>41</sequence>
</hash_100006ab701f2d061b30fd176d202e6792cf23>
<hash_100006cf8827d8278167a248d0c48f3f3bf003>
<task_item_id>0</task_item_id>
<color_id>000000</color_id>
<graph_type_id>4</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_050006f1ac79f05f255c02f914c920f1038c54</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Total</text_format>
<hard_return></hard_return>
<sequence>42</sequence>
</hash_100006cf8827d8278167a248d0c48f3f3bf003>
<hash_100006827f5b525516d065432524b902805c53>
<task_item_id>0</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>hash_050006f1ac79f05f255c02f914c920f1038c54</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>43</sequence>
</hash_100006827f5b525516d065432524b902805c53>
<hash_100006fdb6f44d3f6592a4194677831ab630df>
<task_item_id>0</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_050006f1ac79f05f255c02f914c920f1038c54</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Average:</text_format>
<hard_return></hard_return>
<sequence>44</sequence>
</hash_100006fdb6f44d3f6592a4194677831ab630df>
<hash_100006af6cff76c2edda7c5b392be2cea4c53c>
<task_item_id>0</task_item_id>
<color_id>0</color_id>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>hash_050006f1ac79f05f255c02f914c920f1038c54</cdef_id>
<value></value>
<gprint_id>hash_060006e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Maximum:</text_format>
<hard_return>on</hard_return>
<sequence>45</sequence>
</hash_100006af6cff76c2edda7c5b392be2cea4c53c>
</items>
<inputs>
<hash_0900060dad930d0c218f7c73c1ed2941af5256>
<name>Data Source [abandon_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000006c19ecd44c9d6874a971adbc4f0d50fd4|hash_000006fb3506e80180332772c0025177983b1f|hash_000006f974410367b99a6989e04fbf7197dc0d|hash_0000067eee8f225d4bc438db25dd17ef89faf6</items>
</hash_0900060dad930d0c218f7c73c1ed2941af5256>
<hash_09000620d60dbcc686a2475b06e20fa5322b52>
<name>Data Source [add_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000067a6ddf378cce07d09376e97932e0afca|hash_00000664e00594455077de03872bf8f2b49bb7|hash_0000065907f5d7a72ab9134445b90064e3401b|hash_000006b8f0a6b5a8a51f1a9cdfa14e482e6d8c</items>
</hash_09000620d60dbcc686a2475b06e20fa5322b52>
<hash_0900060464da0c2c968288ced63d841bad5e30>
<name>Data Source [bind_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00000613b29195e1159d22f722f56ffdfd6ab2|hash_0000062c916e2f6048671fc90cbd4aefec7973|hash_00000621bcbbf860060b3934a2553fe7c2719d|hash_000006095ae7590998ab31ba66f36a4af3af43</items>
</hash_0900060464da0c2c968288ced63d841bad5e30>
<hash_0900066ad4a03dd4e63bceab52817643897418>
<name>Data Source [compare_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000006fc56901e781def12a54839ad70022b7e|hash_000006fa49c4df545d448d4a46f323d7e56824|hash_0000060f7e5a6ff92e5eac3650c225336c5df2|hash_00000647e1c9f197ad1b7e51efa3e9206ecc27</items>
</hash_0900066ad4a03dd4e63bceab52817643897418>
<hash_090006cec336ddfe67cb137269ff8b962f9cce>
<name>Data Source [delete_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000064dfb1d722c01ab840aaa7be8e41a16cc|hash_0000069c1a4cd0c2582bdbb5487c488db1d8c3|hash_000006075075be5b925162900848c8b048441b|hash_0000060dc0fd03558904e817e4b7e6ebb96772</items>
</hash_090006cec336ddfe67cb137269ff8b962f9cce>
<hash_0900068962446046ad462b71ea0273e85f9366>
<name>Data Source [extended_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000006aeef7477d27290bfe2c3994dad3e67b0|hash_000006712fd9ee2f083a92198faec9f2d6bb84|hash_000006e1a6dea09ea4f96b2c7f0ac7143458cf|hash_000006d421325152efc41b92fbeb5037c45227</items>
</hash_0900068962446046ad462b71ea0273e85f9366>
<hash_090006f3b19693cf559724734ef619d91c1829>
<name>Data Source [modify_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000061604ae9d3ef2e07bb311a871fda2279c|hash_00000624df017e91ce159d91810b02649c071b|hash_00000658e9a9c0407cf1d089ba96e4730dce92|hash_000006ec62d74f28da3d5c8c9566291997cad2</items>
</hash_090006f3b19693cf559724734ef619d91c1829>
<hash_090006d70d37be5d0db6377e111b5511bfdea2>
<name>Data Source [modrdn_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00000628032fab895a889b7906c9cc6c270bfd|hash_000006d02391457d799ca50446255a3eccfcd2|hash_0000062665810f2202338856048253cac2343e|hash_00000669a9fd90332fa4382f4e5dc3ceb89516</items>
</hash_090006d70d37be5d0db6377e111b5511bfdea2>
<hash_0900060076a57fce02c1f5312d882274f71c45>
<name>Data Source [search_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000068be9c99a4bf1c602b7105aeacbf8c969|hash_000006cb2d5e9f97b150b7baec7a52413de0d7|hash_00000619142d31619bc6049bce2aa198b9001b|hash_000006902723d465ed9efe41652323f0496f8c</items>
</hash_0900060076a57fce02c1f5312d882274f71c45>
<hash_090006d9395a6d4e5589ee37173b4e78fdbdb3>
<name>Data Source [unbind_i]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000069e43b73e3ba8cd3884b97ea2785c2a98|hash_000006ff9e37a82aa1b4dad5992ba181725e06|hash_0000069b2cc1bffca2773d92cabc0a154ce8d5|hash_000006ab701f2d061b30fd176d202e6792cf23</items>
</hash_090006d9395a6d4e5589ee37173b4e78fdbdb3>
</inputs>
</hash_000006353010e1146b59cfed7dfcb1ad377328>
<hash_0100062421b81b8f76676081d3d6cc266b0a6a>
<name>OpenLDAP - initiated operations</name>
<ds>
<t_name></t_name>
<name>|host_description| - OpenLDAP - initiated operations</name>
<data_input_id>hash_030006cf8d70996de78a31fd54135748c45675</data_input_id>
<t_rra_id></t_rra_id>
<t_rrd_step></t_rrd_step>
<rrd_step>300</rrd_step>
<t_active></t_active>
<active>on</active>
<rra_items>hash_150006c21df5178e5c955013591239eb0afd46|hash_1500060d9c0af8b8acdc7807943937b3208e29|hash_1500066fc2d038fb42950138b0ce3e9874cc60|hash_150006e36f3adb9f152adfa5dc50fd2b23337e</rra_items>
</ds>
<items>
<hash_0800066dc570d14bf6dce5c540b0d913963697>
<t_data_source_name></t_data_source_name>
<data_source_name>bind_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_0700064797b8d551cd0e567b282bc3eab241b8</data_input_field_id>
</hash_0800066dc570d14bf6dce5c540b0d913963697>
<hash_080006295b81501cf1bda0cb20cfb424ab84f2>
<t_data_source_name></t_data_source_name>
<data_source_name>abandon_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006ff58d58c954f4fe0fd0b9813b39247fc</data_input_field_id>
</hash_080006295b81501cf1bda0cb20cfb424ab84f2>
<hash_080006d6e9c733a45be3fe7901339eb77c1b84>
<t_data_source_name></t_data_source_name>
<data_source_name>add_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006df6006a6b1b2feb6cc748cae2688350e</data_input_field_id>
</hash_080006d6e9c733a45be3fe7901339eb77c1b84>
<hash_080006f574f50e402f4553ab04d8b2eed84bb1>
<t_data_source_name></t_data_source_name>
<data_source_name>compare_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006cec14671be1568a1c9df8a8d5b665ac9</data_input_field_id>
</hash_080006f574f50e402f4553ab04d8b2eed84bb1>
<hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2>
<t_data_source_name></t_data_source_name>
<data_source_name>delete_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_0700067709b0f8647c3bd20e96a2d2255c3be5</data_input_field_id>
</hash_0800060820ba1e819d2c5f3dd4750fb0ee5ae2>
<hash_080006fae4e59debaf54343b88b1d12eff6bb8>
<t_data_source_name></t_data_source_name>
<data_source_name>extended_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_07000675e07d3f5f55c1bcb28f7c49160216b2</data_input_field_id>
</hash_080006fae4e59debaf54343b88b1d12eff6bb8>
<hash_080006d9399fe1fd1ef41a591b670d2fc16c2a>
<t_data_source_name></t_data_source_name>
<data_source_name>modify_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006ac06667566d7c25187c995c793a359c2</data_input_field_id>
</hash_080006d9399fe1fd1ef41a591b670d2fc16c2a>
<hash_080006a76eec69aab5a010c1fcc8cb865c049b>
<t_data_source_name></t_data_source_name>
<data_source_name>modrdn_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_0700061aae8595c4f5b5b947cffd1ecffda2d9</data_input_field_id>
</hash_080006a76eec69aab5a010c1fcc8cb865c049b>
<hash_08000645aed150c133d98cdde25e848828d0bd>
<t_data_source_name></t_data_source_name>
<data_source_name>search_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006398d1aff840caa49e1c59bf769fb6648</data_input_field_id>
</hash_08000645aed150c133d98cdde25e848828d0bd>
<hash_0800069ee15b0e0400f1fcb773540908743083>
<t_data_source_name></t_data_source_name>
<data_source_name>unbind_i</data_source_name>
<t_rrd_minimum></t_rrd_minimum>
<rrd_minimum>0</rrd_minimum>
<t_rrd_maximum></t_rrd_maximum>
<rrd_maximum>0</rrd_maximum>
<t_data_source_type_id></t_data_source_type_id>
<data_source_type_id>3</data_source_type_id>
<t_rrd_heartbeat></t_rrd_heartbeat>
<rrd_heartbeat>600</rrd_heartbeat>
<t_data_input_field_id></t_data_input_field_id>
<data_input_field_id>hash_070006c1b994d23296dd7e9329c0932ea33081</data_input_field_id>
</hash_0800069ee15b0e0400f1fcb773540908743083>
</items>
<data>
<item_000>
<data_input_field_id>hash_0700063e5415c975fbbebcd9e7aad171a3ffa3</data_input_field_id>
<t_value></t_value>
<value>3</value>
</item_000>
<item_001>
<data_input_field_id>hash_070006b8feda54b932b1e42386ba50073dc377</data_input_field_id>
<t_value></t_value>
<value>5</value>
</item_001>
<item_002>
<data_input_field_id>hash_070006a4d37e6adf2a51ba1bc60a4c40d8a0e8</data_input_field_id>
<t_value></t_value>
<value></value>
</item_002>
<item_003>
<data_input_field_id>hash_070006f3b17f6d209ccdbc1e20bdec67c8082e</data_input_field_id>
<t_value></t_value>
<value></value>
</item_003>
<item_004>
<data_input_field_id>hash_070006787728e17a0ab35f7333937c480dddf5</data_input_field_id>
<t_value></t_value>
<value>389</value>
</item_004>
<item_005>
<data_input_field_id>hash_070006c95e474615a552994a8af126b6ab9e22</data_input_field_id>
<t_value></t_value>
<value></value>
</item_005>
</data>
</hash_0100062421b81b8f76676081d3d6cc266b0a6a>
<hash_030006cf8d70996de78a31fd54135748c45675>
<name>OpenLDAP - initiated/completed operations</name>
<type_id>1</type_id>
<input_string>perl &lt;path_cacti&gt;/scripts/openldap_operations.pl -h &lt;hostname&gt; -p &lt;port&gt; -D &lt;binddn&gt; -W &lt;bindpw&gt; -t &lt;timeout&gt; -v &lt;ldap_version&gt;</input_string>
<fields>
<hash_070006c95e474615a552994a8af126b6ab9e22>
<name>Host IP or DNS</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>hostname</type_code>
<input_output>in</input_output>
<data_name>hostname</data_name>
</hash_070006c95e474615a552994a8af126b6ab9e22>
<hash_070006787728e17a0ab35f7333937c480dddf5>
<name>Port</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code></type_code>
<input_output>in</input_output>
<data_name>port</data_name>
</hash_070006787728e17a0ab35f7333937c480dddf5>
<hash_070006f3b17f6d209ccdbc1e20bdec67c8082e>
<name>Connection account</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code></type_code>
<input_output>in</input_output>
<data_name>binddn</data_name>
</hash_070006f3b17f6d209ccdbc1e20bdec67c8082e>
<hash_070006a4d37e6adf2a51ba1bc60a4c40d8a0e8>
<name>Connection password</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code></type_code>
<input_output>in</input_output>
<data_name>bindpw</data_name>
</hash_070006a4d37e6adf2a51ba1bc60a4c40d8a0e8>
<hash_070006b8feda54b932b1e42386ba50073dc377>
<name>Connection timeout (s)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code></type_code>
<input_output>in</input_output>
<data_name>timeout</data_name>
</hash_070006b8feda54b932b1e42386ba50073dc377>
<hash_0700063e5415c975fbbebcd9e7aad171a3ffa3>
<name>LDAP protocol version</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code></type_code>
<input_output>in</input_output>
<data_name>ldap_version</data_name>
</hash_0700063e5415c975fbbebcd9e7aad171a3ffa3>
<hash_0700064797b8d551cd0e567b282bc3eab241b8>
<name>Bind I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>bind-initiated</data_name>
</hash_0700064797b8d551cd0e567b282bc3eab241b8>
<hash_0700066fce04589f1b633e617771dd1627e4bd>
<name>Bind C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>bind-completed</data_name>
</hash_0700066fce04589f1b633e617771dd1627e4bd>
<hash_070006c1b994d23296dd7e9329c0932ea33081>
<name>Unbind I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>unbind-initiated</data_name>
</hash_070006c1b994d23296dd7e9329c0932ea33081>
<hash_07000645c9d394f4ce42c7b8ff7cdf5c7ba077>
<name>Unbind C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>unbind-completed</data_name>
</hash_07000645c9d394f4ce42c7b8ff7cdf5c7ba077>
<hash_070006df6006a6b1b2feb6cc748cae2688350e>
<name>Add I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>add-initiated</data_name>
</hash_070006df6006a6b1b2feb6cc748cae2688350e>
<hash_0700068c1f446efaea8ea25a7ea04f6227a763>
<name>Add C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>add-completed</data_name>
</hash_0700068c1f446efaea8ea25a7ea04f6227a763>
<hash_0700067709b0f8647c3bd20e96a2d2255c3be5>
<name>Delete I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>delete-initiated</data_name>
</hash_0700067709b0f8647c3bd20e96a2d2255c3be5>
<hash_070006f8594f5406ed3e8e2e2658448be5f444>
<name>Delete C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>delete-completed</data_name>
</hash_070006f8594f5406ed3e8e2e2658448be5f444>
<hash_0700061aae8595c4f5b5b947cffd1ecffda2d9>
<name>Modrdn I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>modrdn-initiated</data_name>
</hash_0700061aae8595c4f5b5b947cffd1ecffda2d9>
<hash_0700061a4721970ae9bcf40ec7650eec6d9d87>
<name>Modrdn C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>modrdn-completed</data_name>
</hash_0700061a4721970ae9bcf40ec7650eec6d9d87>
<hash_070006ac06667566d7c25187c995c793a359c2>
<name>Modify I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>modify-initiated</data_name>
</hash_070006ac06667566d7c25187c995c793a359c2>
<hash_0700067576858761d5dafe6d34c7ee083043c8>
<name>Modify C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>modify-completed</data_name>
</hash_0700067576858761d5dafe6d34c7ee083043c8>
<hash_070006cec14671be1568a1c9df8a8d5b665ac9>
<name>Compare I</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>
<input_output>out</input_output>
<data_name>compare-initiated</data_name>
</hash_070006cec14671be1568a1c9df8a8d5b665ac9>
<hash_070006d0a48538b3bc62fc4ba2d22cd17027a7>
<name>Compare C</name>
<update_rra>on</update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code></type_code>