-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcacti_host_template_elasticsearch_indices.xml
6712 lines (6712 loc) · 281 KB
/
cacti_host_template_elasticsearch_indices.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_0200253805605ec84b1d6b7a3c72644bd33641>
<name>ElasticSearch Indices</name>
<graph_templates>hash_000025087958bc9520debdd7b0929f3e59693c|hash_0000259f226f0f019e8a361b20e101bfe7f9c3|hash_0000253d37e1a50b92cb92c630b33199053b90|hash_000025904229cf77abdda180023286a7526f92|hash_0000250761d53dd5db51c1a8f9c67e53e10c7f|hash_000025029dcbba9d6882b07452e6ccecf874f8|hash_00002538196f410e2c6b742d55a95b584d831c|hash_000025ec5f73419aebbe6a0bf1b2e824553b74|hash_0000253fcda7e0defd01d03c008d7259da17d7|hash_0000250da8b7a53131f612910630829346ca3a|hash_0000253b16d49834340dff2da6219daa00c9c8|hash_000025153dc953e10537c8289344261d730422|hash_0000253c1ae79a116e40977f741c1878843119|hash_00002521119ba778cfb69c46665b7f07204779|hash_00002570278832ec864dfcb04b53c691206379|hash_000025a73dc697b69f639f07ed27d5fd49d026|hash_00002585d8249063d1ec215bd6ade06033caff|hash_0000258fba82d8c68deda87079dfdab2605079|hash_0000250f455abf91b7e263afa4bfaf59be23cc|hash_000025ba49c1c25b4b1daed970394371b78c39|hash_00002521b662d547c84a7f5efb139d7f697e50|hash_00002562c5806e3e3690938f7f950eb43c97f0|hash_0000255360b91329f1cceb2515fe749503e4bb|hash_00002560d04bcb06d767441d2c61f40ae10136|hash_0000256242e1afcfc25fd19b905bcc03526d4d|hash_00002586e532507f14cb9ce4ea7b2b4de7a964|hash_0000251b59cac7ffa7bb8fad7168306e218329|hash_00002593c93a6dac85140ebee05b3cd788b6d5|hash_0000259aa10dfe4aed9b16e9ffd9b2ab2c82ab|hash_0000257be0cff323bf51b33ba95f2f93c467e4</graph_templates>
<data_queries></data_queries>
</hash_0200253805605ec84b1d6b7a3c72644bd33641>
<hash_000025087958bc9520debdd7b0929f3e59693c>
<name>Elastic node indices docs</name>
<graph>
<t_title></t_title>
<title>|input_es_node| - Elasticsearch indices documents</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>275</height>
<t_width></t_width>
<width>910</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>Documents</vertical_label>
</graph>
<items>
<hash_10002504db15cbcd2fda5d32a0236868d01081>
<task_item_id>hash_080025497e633b896caeab020517c450528ee4</task_item_id>
<color_id>306078</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_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Documents</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_10002504db15cbcd2fda5d32a0236868d01081>
<hash_100025736fed516506babb85752774e185a334>
<task_item_id>hash_080025497e633b896caeab020517c450528ee4</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100025736fed516506babb85752774e185a334>
<hash_1000251ba25daf57b36350f7f58acb0a35b922>
<task_item_id>hash_080025497e633b896caeab020517c450528ee4</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000251ba25daf57b36350f7f58acb0a35b922>
<hash_100025267115feda91415c10f92e7a98cfde88>
<task_item_id>hash_080025497e633b896caeab020517c450528ee4</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_100025267115feda91415c10f92e7a98cfde88>
<hash_100025b65d4162b872211ba4846db81f37bbde>
<task_item_id>hash_0800254d077446c754433b99a56a37075bba7b</task_item_id>
<color_id>862F2F</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500254281cf63dfde6f44b46a59f022cf82b2</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Deleted documents</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_100025b65d4162b872211ba4846db81f37bbde>
<hash_100025d3bc1dc665ee0cdab804c0700dd0563d>
<task_item_id>hash_0800254d077446c754433b99a56a37075bba7b</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100025d3bc1dc665ee0cdab804c0700dd0563d>
<hash_1000251540f9ada70a38812f16d6a24526c8bf>
<task_item_id>hash_0800254d077446c754433b99a56a37075bba7b</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_1000251540f9ada70a38812f16d6a24526c8bf>
<hash_10002554d671535a52161184eb54b0c0679fce>
<task_item_id>hash_0800254d077446c754433b99a56a37075bba7b</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_10002554d671535a52161184eb54b0c0679fce>
</items>
<inputs>
<hash_0900251cf568cf0487fd497c758cac8c80e1ec>
<name>Data Source [docs_deleted]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025b65d4162b872211ba4846db81f37bbde|hash_000025d3bc1dc665ee0cdab804c0700dd0563d|hash_0000251540f9ada70a38812f16d6a24526c8bf|hash_00002554d671535a52161184eb54b0c0679fce</items>
</hash_0900251cf568cf0487fd497c758cac8c80e1ec>
<hash_090025205a3f1262da551e0b380ffbe28fc14e>
<name>Data Source [docs_count]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002504db15cbcd2fda5d32a0236868d01081|hash_000025736fed516506babb85752774e185a334|hash_0000251ba25daf57b36350f7f58acb0a35b922|hash_000025267115feda91415c10f92e7a98cfde88</items>
</hash_090025205a3f1262da551e0b380ffbe28fc14e>
</inputs>
</hash_000025087958bc9520debdd7b0929f3e59693c>
<hash_0000259f226f0f019e8a361b20e101bfe7f9c3>
<name>Elastic node indices store size</name>
<graph>
<t_title></t_title>
<title>|input_es_node| - ElasticSearch indices store size</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>275</height>
<t_width></t_width>
<width>910</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>1024</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>Indices size</vertical_label>
</graph>
<items>
<hash_100025ea4ba064ae73629822af0986534e3b61>
<task_item_id>hash_080025df4994a45642e27143831a0d83ad784c</task_item_id>
<color_id>002A97</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_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Indices store size</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100025ea4ba064ae73629822af0986534e3b61>
<hash_1000256050bcba7f670f1d38df0a41437f492a>
<task_item_id>hash_080025df4994a45642e27143831a0d83ad784c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000256050bcba7f670f1d38df0a41437f492a>
<hash_1000254778dcb44554142f73d8c335ee37cd58>
<task_item_id>hash_080025df4994a45642e27143831a0d83ad784c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000254778dcb44554142f73d8c335ee37cd58>
<hash_1000252fccd7ddfc022fc0fa45f6552e838593>
<task_item_id>hash_080025df4994a45642e27143831a0d83ad784c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_1000252fccd7ddfc022fc0fa45f6552e838593>
</items>
<inputs>
<hash_0900259f510ef81bd6df6bff9eda87c89fd9dc>
<name>Data Source [indices_store]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025ea4ba064ae73629822af0986534e3b61|hash_0000256050bcba7f670f1d38df0a41437f492a|hash_0000254778dcb44554142f73d8c335ee37cd58|hash_0000252fccd7ddfc022fc0fa45f6552e838593</items>
</hash_0900259f510ef81bd6df6bff9eda87c89fd9dc>
</inputs>
</hash_0000259f226f0f019e8a361b20e101bfe7f9c3>
<hash_0000253d37e1a50b92cb92c630b33199053b90>
<name>Elastic node indices indexing</name>
<graph>
<t_title></t_title>
<title>|input_es_node| - ElasticSearch indices indexing</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>275</height>
<t_width></t_width>
<width>910</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>Time in millis | Indexing</vertical_label>
</graph>
<items>
<hash_100025bbca05c325881f4a78a448c891a98c97>
<task_item_id>hash_080025da4aa48f1aba420246f360b3509b0ef6</task_item_id>
<color_id>96E78A</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Index</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_100025bbca05c325881f4a78a448c891a98c97>
<hash_100025407ff4e044e7533775d45989f4746df4>
<task_item_id>hash_080025da4aa48f1aba420246f360b3509b0ef6</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100025407ff4e044e7533775d45989f4746df4>
<hash_100025b1a15581ad278b38f9cd37f568dbee55>
<task_item_id>hash_080025da4aa48f1aba420246f360b3509b0ef6</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_100025b1a15581ad278b38f9cd37f568dbee55>
<hash_1000255eb98a675b915648f1bbec518191f42c>
<task_item_id>hash_080025da4aa48f1aba420246f360b3509b0ef6</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_1000255eb98a675b915648f1bbec518191f42c>
<hash_10002561ea9781f877b0b8ebc8a8cf6ccaa035>
<task_item_id>hash_0800258fb80781bc92748081d7edfd12e1dadc</task_item_id>
<color_id>6EA100</color_id>
<alpha>FF</alpha>
<graph_type_id>6</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Indexing current</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_10002561ea9781f877b0b8ebc8a8cf6ccaa035>
<hash_100025e9501aaf217cf98d36ef7f72a19bb5e6>
<task_item_id>hash_0800258fb80781bc92748081d7edfd12e1dadc</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_100025e9501aaf217cf98d36ef7f72a19bb5e6>
<hash_100025cfa3305917a5b77ed7b03fa760828945>
<task_item_id>hash_0800258fb80781bc92748081d7edfd12e1dadc</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100025cfa3305917a5b77ed7b03fa760828945>
<hash_100025c7ed6904153ff15b500a85256f21f692>
<task_item_id>hash_0800258fb80781bc92748081d7edfd12e1dadc</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_100025c7ed6904153ff15b500a85256f21f692>
<hash_1000254cbce5210d42e0328732a19a60166a58>
<task_item_id>hash_080025e2a607042bc1aa7e14eda542f2cfa1b0</task_item_id>
<color_id>D99362</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Deleted index</text_format>
<hard_return></hard_return>
<sequence>9</sequence>
</hash_1000254cbce5210d42e0328732a19a60166a58>
<hash_100025c5a87f7d3380b64896df2a27e98f08b3>
<task_item_id>hash_080025e2a607042bc1aa7e14eda542f2cfa1b0</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>10</sequence>
</hash_100025c5a87f7d3380b64896df2a27e98f08b3>
<hash_100025b400615bd227eb5bea660f2816362c4b>
<task_item_id>hash_080025e2a607042bc1aa7e14eda542f2cfa1b0</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>11</sequence>
</hash_100025b400615bd227eb5bea660f2816362c4b>
<hash_1000257d68b3455931562d42b140847e72affe>
<task_item_id>hash_080025e2a607042bc1aa7e14eda542f2cfa1b0</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>12</sequence>
</hash_1000257d68b3455931562d42b140847e72affe>
<hash_1000250b4fcc470bdb731a50047e9442e2a70a>
<task_item_id>hash_0800253f477de66cbc1c453e9855a2ec86bcab</task_item_id>
<color_id>DE0056</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Deleting current</text_format>
<hard_return></hard_return>
<sequence>13</sequence>
</hash_1000250b4fcc470bdb731a50047e9442e2a70a>
<hash_1000258ef0a496576186a82c30a1af6fdef6f6>
<task_item_id>hash_0800253f477de66cbc1c453e9855a2ec86bcab</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>14</sequence>
</hash_1000258ef0a496576186a82c30a1af6fdef6f6>
<hash_100025da2124d86aec20a7e5277de731a951f0>
<task_item_id>hash_0800253f477de66cbc1c453e9855a2ec86bcab</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>15</sequence>
</hash_100025da2124d86aec20a7e5277de731a951f0>
<hash_1000252d49cc07267e44d566922e18f7e5ce3e>
<task_item_id>hash_0800253f477de66cbc1c453e9855a2ec86bcab</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>16</sequence>
</hash_1000252d49cc07267e44d566922e18f7e5ce3e>
<hash_100025c62afc72c0041c00b62fc1a4132131e5>
<task_item_id>hash_0800252c9e6cf964a56c2cffc0b4ee5638c855</task_item_id>
<color_id>4D4A47</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002572810f8bd1414dc97c9f35420caa96e4</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Index time in millis</text_format>
<hard_return></hard_return>
<sequence>17</sequence>
</hash_100025c62afc72c0041c00b62fc1a4132131e5>
<hash_100025b7a249581e4f17a38a86ced6594f126d>
<task_item_id>hash_0800252c9e6cf964a56c2cffc0b4ee5638c855</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>18</sequence>
</hash_100025b7a249581e4f17a38a86ced6594f126d>
<hash_10002552288a546b9deca3a8209646a13b17fb>
<task_item_id>hash_0800252c9e6cf964a56c2cffc0b4ee5638c855</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>19</sequence>
</hash_10002552288a546b9deca3a8209646a13b17fb>
<hash_10002594ae302d99722cf47aca437b985703cf>
<task_item_id>hash_0800252c9e6cf964a56c2cffc0b4ee5638c855</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>20</sequence>
</hash_10002594ae302d99722cf47aca437b985703cf>
<hash_10002555d5fec01aad7c2489c5904345c516cd>
<task_item_id>hash_0800258d2999829897a2f191f39b654345f8a1</task_item_id>
<color_id>BDB8B3</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002572810f8bd1414dc97c9f35420caa96e4</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Index detele time in millis</text_format>
<hard_return></hard_return>
<sequence>21</sequence>
</hash_10002555d5fec01aad7c2489c5904345c516cd>
<hash_1000256b5929afd037d12939be946aeafa9c1e>
<task_item_id>hash_0800258d2999829897a2f191f39b654345f8a1</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>22</sequence>
</hash_1000256b5929afd037d12939be946aeafa9c1e>
<hash_10002554623d603e81f77fb1dc66c9f3e1950c>
<task_item_id>hash_0800258d2999829897a2f191f39b654345f8a1</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>23</sequence>
</hash_10002554623d603e81f77fb1dc66c9f3e1950c>
<hash_100025042f3190251de38271f37b733221cf18>
<task_item_id>hash_0800258d2999829897a2f191f39b654345f8a1</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>24</sequence>
</hash_100025042f3190251de38271f37b733221cf18>
</items>
<inputs>
<hash_090025ede04efa66d04f6bc7e5698bc886880e>
<name>Data Source [index_delete_total]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000254cbce5210d42e0328732a19a60166a58|hash_000025c5a87f7d3380b64896df2a27e98f08b3|hash_000025b400615bd227eb5bea660f2816362c4b|hash_0000257d68b3455931562d42b140847e72affe</items>
</hash_090025ede04efa66d04f6bc7e5698bc886880e>
<hash_09002569f526996ef57f15e225c5324c493c93>
<name>Data Source [index_delete]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000250b4fcc470bdb731a50047e9442e2a70a|hash_0000258ef0a496576186a82c30a1af6fdef6f6|hash_000025da2124d86aec20a7e5277de731a951f0|hash_0000252d49cc07267e44d566922e18f7e5ce3e</items>
</hash_09002569f526996ef57f15e225c5324c493c93>
<hash_0900256c10efa1365dbbb3770111e04a22e9c5>
<name>Data Source [index_current]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002561ea9781f877b0b8ebc8a8cf6ccaa035|hash_000025e9501aaf217cf98d36ef7f72a19bb5e6|hash_000025cfa3305917a5b77ed7b03fa760828945|hash_000025c7ed6904153ff15b500a85256f21f692</items>
</hash_0900256c10efa1365dbbb3770111e04a22e9c5>
<hash_0900253444748f2a6dca311e1596b1687294a3>
<name>Data Source [index_total]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025bbca05c325881f4a78a448c891a98c97|hash_000025407ff4e044e7533775d45989f4746df4|hash_000025b1a15581ad278b38f9cd37f568dbee55|hash_0000255eb98a675b915648f1bbec518191f42c</items>
</hash_0900253444748f2a6dca311e1596b1687294a3>
<hash_09002550ece9c9a83bc05dfb557982d581f2b6>
<name>Data Source [index_delete_time]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_00002555d5fec01aad7c2489c5904345c516cd|hash_0000256b5929afd037d12939be946aeafa9c1e|hash_00002554623d603e81f77fb1dc66c9f3e1950c|hash_000025042f3190251de38271f37b733221cf18</items>
</hash_09002550ece9c9a83bc05dfb557982d581f2b6>
<hash_090025c851c46c2e805437057537139e42d6b4>
<name>Data Source [index_time]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025c62afc72c0041c00b62fc1a4132131e5|hash_000025b7a249581e4f17a38a86ced6594f126d|hash_00002552288a546b9deca3a8209646a13b17fb|hash_00002594ae302d99722cf47aca437b985703cf</items>
</hash_090025c851c46c2e805437057537139e42d6b4>
</inputs>
</hash_0000253d37e1a50b92cb92c630b33199053b90>
<hash_000025904229cf77abdda180023286a7526f92>
<name>Elastic node indices get</name>
<graph>
<t_title></t_title>
<title>|input_es_node| - ElasticSearch indices get</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>275</height>
<t_width></t_width>
<width>910</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>Time in millis / Get</vertical_label>
</graph>
<items>
<hash_1000254c239ae3bf33adee4697622bd2dc87ff>
<task_item_id>hash_0800252044e900994ae94a5d995ec41ff62bcf</task_item_id>
<color_id>B56414</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Get</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000254c239ae3bf33adee4697622bd2dc87ff>
<hash_1000257db2881ca6a612aa497159f83e10ead8>
<task_item_id>hash_0800252044e900994ae94a5d995ec41ff62bcf</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_1000257db2881ca6a612aa497159f83e10ead8>
<hash_1000250165377f9c821d765ef7840b3125fae6>
<task_item_id>hash_0800252044e900994ae94a5d995ec41ff62bcf</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000250165377f9c821d765ef7840b3125fae6>
<hash_10002561ea2171eff5f7d9a2b18a123ca869ac>
<task_item_id>hash_0800252044e900994ae94a5d995ec41ff62bcf</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_10002561ea2171eff5f7d9a2b18a123ca869ac>
<hash_100025bf97d9c6569a5f53f48f8c1397914e0c>
<task_item_id>hash_08002575dc499befecfe5c24e2c06e3a623950</task_item_id>
<color_id>FF7D00</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_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Get current:</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_100025bf97d9c6569a5f53f48f8c1397914e0c>
<hash_1000258669f57f3e6dea9079f906a63def45a5>
<task_item_id>hash_08002575dc499befecfe5c24e2c06e3a623950</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>
</hash_1000258669f57f3e6dea9079f906a63def45a5>
<hash_100025f4fc084952477ef3f2d523a221ac51f1>
<task_item_id>hash_08002575dc499befecfe5c24e2c06e3a623950</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>0</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>7</sequence>
</hash_100025f4fc084952477ef3f2d523a221ac51f1>
<hash_1000253ed040b44cc04a9913f2371bee8f8db9>
<task_item_id>hash_08002575dc499befecfe5c24e2c06e3a623950</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_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>8</sequence>
</hash_1000253ed040b44cc04a9913f2371bee8f8db9>
<hash_1000254580762cd36d63c4e9af3a7bdc2ec628>
<task_item_id>hash_0800258cfb11a0081c0488216a316386eac8f9</task_item_id>
<color_id>2A363B</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_05002572810f8bd1414dc97c9f35420caa96e4</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Get time in millis</text_format>
<hard_return></hard_return>
<sequence>17</sequence>
</hash_1000254580762cd36d63c4e9af3a7bdc2ec628>
<hash_1000255d107f63722802080b8a84bb51da5591>
<task_item_id>hash_0800258cfb11a0081c0488216a316386eac8f9</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>18</sequence>
</hash_1000255d107f63722802080b8a84bb51da5591>
<hash_1000250895b5dc831e838005e5373bbe6c15ac>
<task_item_id>hash_0800258cfb11a0081c0488216a316386eac8f9</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>19</sequence>
</hash_1000250895b5dc831e838005e5373bbe6c15ac>
<hash_100025cd1ebe71f73663e9bac05a5df85fd145>
<task_item_id>hash_0800258cfb11a0081c0488216a316386eac8f9</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>20</sequence>
</hash_100025cd1ebe71f73663e9bac05a5df85fd145>
</items>
<inputs>
<hash_090025e51dfbac414dbf61aa9fb47d1087ad8a>
<name>Data Source [get]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000025bf97d9c6569a5f53f48f8c1397914e0c|hash_0000258669f57f3e6dea9079f906a63def45a5|hash_000025f4fc084952477ef3f2d523a221ac51f1|hash_0000253ed040b44cc04a9913f2371bee8f8db9</items>
</hash_090025e51dfbac414dbf61aa9fb47d1087ad8a>
<hash_090025dd8636c79c1f0f47b14f636953991ddb>
<name>Data Source [get_total]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000254c239ae3bf33adee4697622bd2dc87ff|hash_0000257db2881ca6a612aa497159f83e10ead8|hash_0000250165377f9c821d765ef7840b3125fae6|hash_00002561ea2171eff5f7d9a2b18a123ca869ac</items>
</hash_090025dd8636c79c1f0f47b14f636953991ddb>
<hash_090025df073415b3e13581261ab1c9d0821ace>
<name>Data Source [get_time]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_0000254580762cd36d63c4e9af3a7bdc2ec628|hash_0000255d107f63722802080b8a84bb51da5591|hash_0000250895b5dc831e838005e5373bbe6c15ac|hash_000025cd1ebe71f73663e9bac05a5df85fd145</items>
</hash_090025df073415b3e13581261ab1c9d0821ace>
</inputs>
</hash_000025904229cf77abdda180023286a7526f92>
<hash_0000250761d53dd5db51c1a8f9c67e53e10c7f>
<name>Elastic node indices search</name>
<graph>
<t_title></t_title>
<title>|input_es_node| - ElasticSearch indices search</title>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>275</height>
<t_width></t_width>
<width>910</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>Time in millis | Search queries / fetch</vertical_label>
</graph>
<items>
<hash_1000251e13db5a28c5f4f9c84542ecd1371052>
<task_item_id>hash_080025e330b2d68ad3d0b134c7a0c7f3b97a1c</task_item_id>
<color_id>99B898</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Search queries</text_format>
<hard_return></hard_return>
<sequence>1</sequence>
</hash_1000251e13db5a28c5f4f9c84542ecd1371052>
<hash_100025939685df13384f46c71e889ff00275b3>
<task_item_id>hash_080025e330b2d68ad3d0b134c7a0c7f3b97a1c</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>2</sequence>
</hash_100025939685df13384f46c71e889ff00275b3>
<hash_1000257f2f25cdae8a7946e7bbff3967d13815>
<task_item_id>hash_080025e330b2d68ad3d0b134c7a0c7f3b97a1c</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<graph_type_id>9</graph_type_id>
<consolidation_function_id>2</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Min:</text_format>
<hard_return></hard_return>
<sequence>3</sequence>
</hash_1000257f2f25cdae8a7946e7bbff3967d13815>
<hash_10002572dab54b33e279a2dbb2896bf072b277>
<task_item_id>hash_080025e330b2d68ad3d0b134c7a0c7f3b97a1c</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Max:</text_format>
<hard_return>on</hard_return>
<sequence>4</sequence>
</hash_10002572dab54b33e279a2dbb2896bf072b277>
<hash_10002522088b15e39a0e3bdb9a2605e57a35eb>
<task_item_id>hash_0800254efac0733e803ebfbd30a1a6cef1e082</task_item_id>
<color_id>AFECED</color_id>
<alpha>FF</alpha>
<graph_type_id>7</graph_type_id>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>hash_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_060025e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<text_format>Search fetch queries</text_format>
<hard_return></hard_return>
<sequence>5</sequence>
</hash_10002522088b15e39a0e3bdb9a2605e57a35eb>
<hash_1000257669ae4b7c0cbdda200959e3064a20f7>
<task_item_id>hash_0800254efac0733e803ebfbd30a1a6cef1e082</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_0500258da2fcde1f4055cdce57ba304c71a3db</cdef_id>
<value></value>
<gprint_id>hash_06002519414480d6897c8731c7dc6c5310653e</gprint_id>
<text_format>Current:</text_format>
<hard_return></hard_return>
<sequence>6</sequence>