forked from elastic/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.yaml
2976 lines (2935 loc) · 132 KB
/
conf.yaml
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
repos:
apm-aws-lambda: https://github.com/elastic/apm-aws-lambda.git
apm-k8s-attacher: https://github.com/elastic/apm-k8s-attacher.git
apm-server: https://github.com/elastic/apm-server.git
apm-agent-android: https://github.com/elastic/apm-agent-android.git
apm-agent-nodejs: https://github.com/elastic/apm-agent-nodejs.git
apm-agent-python: https://github.com/elastic/apm-agent-python.git
apm-agent-ruby: https://github.com/elastic/apm-agent-ruby.git
apm-agent-rum-js: https://github.com/elastic/apm-agent-rum-js.git
apm-agent-go: https://github.com/elastic/apm-agent-go.git
apm-agent-java: https://github.com/elastic/apm-agent-java.git
apm-agent-dotnet: https://github.com/elastic/apm-agent-dotnet.git
apm-agent-php: https://github.com/elastic/apm-agent-php.git
apm-agent-ios: https://github.com/elastic/apm-agent-ios.git
azure-marketplace: https://github.com/elastic/azure-marketplace.git
beats: https://github.com/elastic/beats.git
clients-team: https://github.com/elastic/clients-team.git
cloud: https://github.com/elastic/cloud.git
cloud-assets: https://github.com/elastic/cloud-assets.git
cloud-on-k8s: https://github.com/elastic/cloud-on-k8s.git
curator: https://github.com/elastic/curator.git
docs-content: https://github.com/elastic/docs-content.git
ecctl: https://github.com/elastic/ecctl.git
ecs: https://github.com/elastic/ecs.git
ecs-dotnet: https://github.com/elastic/ecs-dotnet.git
ecs-logging: https://github.com/elastic/ecs-logging.git
ecs-logging-go-logrus: https://github.com/elastic/ecs-logging-go-logrus.git
ecs-logging-go-zap: https://github.com/elastic/ecs-logging-go-zap.git
ecs-logging-go-zerolog: https://github.com/elastic/ecs-logging-go-zerolog.git
ecs-logging-java: https://github.com/elastic/ecs-logging-java.git
ecs-logging-nodejs: https://github.com/elastic/ecs-logging-nodejs.git
ecs-logging-php: https://github.com/elastic/ecs-logging-php.git
ecs-logging-python: https://github.com/elastic/ecs-logging-python.git
ecs-logging-ruby: https://github.com/elastic/ecs-logging-ruby.git
eland: https://github.com/elastic/eland.git
elasticsearch-hadoop: https://github.com/elastic/elasticsearch-hadoop.git
elasticsearch-java: https://github.com/elastic/elasticsearch-java.git
elasticsearch-js: https://github.com/elastic/elasticsearch-js.git
elasticsearch-js-legacy: https://github.com/elastic/elasticsearch-js-legacy.git
elasticsearch-ruby: https://github.com/elastic/elasticsearch-ruby.git
elasticsearch-net: https://github.com/elastic/elasticsearch-net.git
elasticsearch-php: https://github.com/elastic/elasticsearch-php.git
elasticsearch-php-cn: https://github.com/elasticsearch-cn/elasticsearch-php.git
elasticsearch-py: https://github.com/elastic/elasticsearch-py.git
elasticsearch-perl: https://github.com/elastic/elasticsearch-perl.git
go-elasticsearch: https://github.com/elastic/go-elasticsearch.git
elasticsearch-rs: https://github.com/elastic/elasticsearch-rs.git
elasticsearch: https://github.com/elastic/elasticsearch.git
enterprise-search-pubs: https://github.com/elastic/enterprise-search-pubs.git
enterprise-search-js: https://github.com/elastic/enterprise-search-js.git
enterprise-search-php: https://github.com/elastic/enterprise-search-php.git
enterprise-search-python: https://github.com/elastic/enterprise-search-python.git
enterprise-search-ruby: https://github.com/elastic/enterprise-search-ruby.git
esf: https://github.com/elastic/elastic-serverless-forwarder.git
guide: https://github.com/elastic/elasticsearch-definitive-guide.git
guide-cn: https://github.com/elasticsearch-cn/elasticsearch-definitive-guide.git
ingest-docs: https://github.com/elastic/ingest-docs.git
kibana: https://github.com/elastic/kibana.git
kibana-cn: https://github.com/elasticsearch-cn/kibana.git
logstash: https://github.com/elastic/logstash.git
logstash-docs: https://github.com/elastic/logstash-docs.git
observability-docs: https://github.com/elastic/observability-docs.git
package-spec: https://github.com/elastic/package-spec.git
security-docs: https://github.com/elastic/security-docs.git
sense: https://github.com/elastic/sense.git
stack-docs: https://github.com/elastic/stack-docs.git
swiftype: https://github.com/elastic/swiftype-doc-placeholder.git
tech-content: https://github.com/elastic/tech-content.git
terraform-provider-ec: https://github.com/elastic/terraform-provider-ec.git
x-pack: https://github.com/elastic/x-pack.git
x-pack-elasticsearch: https://github.com/elastic/x-pack-elasticsearch.git
x-pack-kibana: https://github.com/elastic/x-pack-kibana.git
x-pack-logstash: https://github.com/elastic/x-pack-logstash.git
contents_title: Elastic documentation
# Each item should take the form:
# <key>: &<variable> <value>
# The keys don't really matter, but by convention the are the same as the variable.
variables:
stackcurrent: &stackcurrent 8.16
stacklive: &stacklive [ 8.16, 7.17 ]
cloudSaasCurrent: &cloudSaasCurrent ms-115
mapCloudEceToClientsTeam: &mapCloudEceToClientsTeam
ms-105: main
ms-92: main
ms-81: main
ms-78: main
ms-75: main
ms-72: main
ms-70: main
ms-69: main
ms-65: main
ms-62: main
ms-59: main
ms-57: main
ms-53: main
ms-49: main
ms-47: main
release-ms-41: main
2.5: main
2.4: main
2.3: main
2.2: main
2.1: main
2.0: main
1.1: main
1.0: main
# Use this when you're building a book that uses a "main" branch, but it has a dependency on a repo with a "master" branch
mapMainToMaster: &mapMainToMaster
main: master
# Use this when you're building a book that uses a "master" branch, but it has a dependency on a repo with a "main" branch
mapMasterToMain: &mapMasterToMain
master: main
beatsSharedExclude: &beatsSharedExclude [ 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 1.3, 1.2, 1.1, 1.0.1 ]
beatsXpackLibbeatExclude: &beatsXpackLibbeatExclude [ 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 1.3, 1.2, 1.1, 1.0.1 ]
beatsProcessorExclude: &beatsProcessorExclude [ 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 1.3, 1.2, 1.1, 1.0.1 ]
beatsOutputExclude: &beatsOutputExclude [ 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 1.3, 1.2, 1.1, 1.0.1 ]
toc_extra: extra/docs_landing.html
contents:
- title: Serverless
sections:
- title: Serverless
prefix: en/serverless
current: main
branches: [ main ]
live: [ main ]
index: serverless/index.asciidoc
chunk: 5
tags: Serverless/Guide
subject: Serverless
sources:
-
repo: docs-content
path: serverless
-
repo: observability-docs
path: docs/en/serverless
-
repo: security-docs
path: docs/serverless
- title: Search
sections:
- title: Elasticsearch Guide
prefix: en/elasticsearch/reference
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
live: *stacklive
index: docs/reference/index.x.asciidoc
chunk: 1
tags: Elasticsearch/Reference
subject: Elasticsearch
sources:
-
repo: elasticsearch
path: docs/reference
-
repo: x-pack-elasticsearch
prefix: elasticsearch-extra/x-pack-elasticsearch
path: docs/en
private: true
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: x-pack-elasticsearch
prefix: elasticsearch-extra/x-pack-elasticsearch
path: qa/sql
private: true
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: docs/Versions.asciidoc
exclude_branches: [ 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: docs/src/test/cluster/config
exclude_branches: [ 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: plugins/examples
exclude_branches: [ 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: buildSrc/
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: build-tools-internal/
exclude_branches: [7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: docs/painless
exclude_branches: [ 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: x-pack/docs
private: true
# only exists from 6.2 to 8.9
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: x-pack/qa/sql
# only exists from 6.3 to 6.5
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: x-pack/plugin/esql/qa/testFixtures/src/main/resources
# only exists from 8.11
exclude_branches: [ 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: x-pack/plugin/sql/qa
exclude_branches: [ 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
alternatives: { source_lang: console, alternative_lang: php }
repo: elasticsearch-php
path: docs/examples
exclude_branches: [ 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
alternatives: { source_lang: console, alternative_lang: python }
repo: elasticsearch-py
path: docs/examples
exclude_branches: [ 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
alternatives: { source_lang: console, alternative_lang: ruby }
repo: elasticsearch-ruby
path: docs/examples/guide
exclude_branches: [ 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
alternatives: { source_lang: console, alternative_lang: go }
repo: go-elasticsearch
path: .doc/examples/doc/
exclude_branches: [ 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
exclude_branches: [ 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: docs
path: shared/attributes.asciidoc
exclude_branches: [ 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: docs
path: shared/attributes62.asciidoc
exclude_branches: [ main, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
alternatives: { source_lang: console, alternative_lang: js }
repo: elasticsearch-js
path: docs/doc_examples
exclude_branches: [ 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
-
repo: elasticsearch
path: server/src/main/resources/org/elasticsearch/common
exclude_branches: [ 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 2.4, 2.3, 2.2, 2.1, 2.0, 1.7, 1.6, 1.5, 1.4, 1.3, 0.90 ]
- title: Enterprise Search Guide
prefix: en/enterprise-search
index: enterprise-search-docs/index.asciidoc
private: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7 ]
live: *stacklive
chunk: 1
tags: Enterprise Search/Guide
subject: Enterprise Search
sources:
-
repo: enterprise-search-pubs
path: enterprise-search-docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Workplace Search Guide
prefix: en/workplace-search
index: workplace-search-docs/index.asciidoc
private: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6 ]
live: *stacklive
chunk: 1
tags: Workplace Search/Guide
subject: Workplace Search
sources:
-
repo: enterprise-search-pubs
path: workplace-search-docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: App Search Guide
prefix: en/app-search
index: app-search-docs/index.asciidoc
private: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7 ]
live: *stacklive
chunk: 1
tags: App Search/Guide
subject: App Search
sources:
-
repo: enterprise-search-pubs
path: app-search-docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Enterprise Search Clients
base_dir: en/enterprise-search-clients
sections:
- title: App Search JavaScript client
prefix: app-search-javascript
private: 1
single: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklive
index: client-docs/app-search-javascript/index.asciidoc
tags: App Search Clients/JavaScript
subject: App Search Clients
sources:
-
repo: enterprise-search-pubs
path: client-docs/app-search-javascript
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: App Search Node.js client
prefix: app-search-node
private: 1
single: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklive
index: client-docs/app-search-node/index.asciidoc
tags: App Search Clients/Node.js
subject: App Search Clients
sources:
-
repo: enterprise-search-pubs
path: client-docs/app-search-node
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Enterprise Search Node.js client
prefix: enterprise-search-node
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6 ]
live: [ *stackcurrent ]
index: packages/enterprise-search/docs/index.asciidoc
tags: Enterprise Search Clients/Node.js
subject: Enterprise Search Clients
sources:
-
repo: enterprise-search-js
path: packages/enterprise-search/docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Enterprise Search PHP client
prefix: php
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklive
index: docs/guide/index.asciidoc
tags: Enterprise Search Clients/PHP
subject: Enterprise Search Clients
sources:
-
repo: enterprise-search-php
path: docs/guide/
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Enterprise Search Python client
prefix: python
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11 ]
live: *stacklive
index: docs/guide/index.asciidoc
tags: Enterprise Search Clients/Python
subject: Enterprise Search Clients
sources:
-
repo: enterprise-search-python
path: docs/guide/
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Enterprise Search Ruby client
prefix: ruby
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11 ]
live: *stacklive
index: docs/guide/index.asciidoc
tags: Enterprise Search Clients/Ruby
subject: Enterprise Search Clients
sources:
-
repo: enterprise-search-ruby
path: docs/guide/
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Workplace Search Node.js client
prefix: workplace-search-node
private: 1
single: 1
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklive
index: client-docs/workplace-search-node/index.asciidoc
tags: Workplace Search Clients/Node.js
subject: Workplace Search Clients
sources:
-
repo: enterprise-search-pubs
path: client-docs/workplace-search-node
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: "Observability: APM, Logs, Metrics, and Uptime"
sections:
- title: Observability
prefix: en/observability
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9 ]
live: *stacklive
index: docs/en/observability/index.asciidoc
chunk: 4
tags: Observability/Guide
subject: Observability
sources:
-
repo: observability-docs
path: docs/en
-
repo: ingest-docs
path: docs/en
-
repo: apm-server
path: docs
exclude_branches: [ 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
-
repo: apm-server
path: changelogs
exclude_branches: [ 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
-
repo: apm-server
path: CHANGELOG.asciidoc
exclude_branches: [ 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
-
repo: beats
path: libbeat/docs
exclude_branches: [ 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
- title: Application Performance Monitoring (APM)
base_dir: en/apm
toc_extra: extra/apm_docs_landing.html
sections:
- title: APM Guide
prefix: guide
toc_extra: extra/apm_guide_landing.html
index: docs/en/apm-server/integrations-index.asciidoc
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklive
chunk: 2
tags: APM Guide
subject: APM
sources:
-
repo: observability-docs
path: docs/en
exclude_branches: [ 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
map_branches: *mapMasterToMain
-
repo: apm-server
path: changelogs
exclude_branches: [ 6.0 ]
-
repo: apm-server
path: docs/data
-
repo: apm-server
path: docs/spec
-
repo: apm-server
path: CHANGELOG.asciidoc
-
repo: ingest-docs
path: docs/en
exclude_branches: [ 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8, 7.7, 7.6, 7.5, 7.4, 7.3, 7.2, 7.1, 7.0, 6.8, 6.7, 6.6, 6.5, 6.4, 6.3, 6.2, 6.1, 6.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
- title: APM Agents
base_dir: agent
sections:
- title: APM Android Agent
prefix: android
current: 0.x
branches: [ {main: master}, 0.x ]
live: [ 0.x ]
index: docs/index.asciidoc
tags: APM Android Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-android
path: docs
-
repo: apm-agent-android
path: CHANGELOG.asciidoc
- title: APM Go Agent
prefix: go
current: 2.x
branches: [ {main: master}, 2.x, 1.x, 0.5 ]
live: [ 2.x, 1.x ]
index: docs/index.asciidoc
tags: APM Go Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-go
path: docs
-
repo: apm-agent-go
path: CHANGELOG.asciidoc
exclude_branches: [ 0.5 ]
- title: APM iOS Agent
prefix: swift
current: 1.x
branches: [ main, 1.x, 0.x ]
live: [ 1.x ]
index: docs/index.asciidoc
tags: APM iOS Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-ios
path: docs
-
repo: apm-agent-ios
path: CHANGELOG.asciidoc
- title: APM Java Agent
prefix: java
current: 1.x
branches: [ {main: master}, 1.x, 0.7, 0.6 ]
live: [ 1.x ]
index: docs/index.asciidoc
tags: APM Java Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-java
path: docs
-
repo: apm-agent-java
path: CHANGELOG.asciidoc
exclude_branches: [ 0.7, 0.6]
-
repo: apm-aws-lambda
path: docs
exclude_branches: [ 0.7, 0.6 ]
map_branches:
1.x: main
- title: APM .NET Agent
prefix: dotnet
current: 1.x
branches: [ {main: master}, 1.x, 1.8 ]
live: [ 1.x ]
index: docs/index.asciidoc
tags: APM .NET Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-dotnet
path: docs
-
repo: apm-agent-dotnet
path: CHANGELOG.asciidoc
- title: APM Node.js Agent
prefix: nodejs
current: 4.x
branches: [ {main: master}, 4.x, 3.x, 2.x, 1.x ]
live: [ 4.x ]
index: docs/index.asciidoc
tags: APM Node.js Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-nodejs
path: docs
-
repo: apm-agent-nodejs
path: CHANGELOG.asciidoc
exclude_branches: [ 1.x, 0.x ]
-
repo: apm-aws-lambda
path: docs
exclude_branches: [ 2.x, 1.x, 0.x ]
map_branches:
3.x: main
4.x: main
- title: APM PHP Agent
prefix: php
current: 1.x
branches: [ {main: master}, 1.x ]
live: [ 1.x ]
index: docs/index.asciidoc
tags: APM PHP Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-php
path: docs
-
repo: apm-agent-php
path: CHANGELOG.asciidoc
- title: APM Python Agent
prefix: python
current: 6.x
branches: [ {main: master}, 6.x, 5.x, 4.x, 3.x, 2.x, 1.x ]
live: [ 6.x, 5.x ]
index: docs/index.asciidoc
tags: APM Python Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-python
path: docs
-
repo: apm-agent-python
path: CHANGELOG.asciidoc
exclude_branches: [ 4.x, 3.x, 2.x, 1.x ]
-
repo: apm-aws-lambda
path: docs
exclude_branches: [ 5.x, 4.x, 3.x, 2.x, 1.x ]
map_branches:
6.x: main
- title: APM Ruby Agent
prefix: ruby
current: 4.x
branches: [ {main: master}, 4.x, 3.x, 2.x, 1.x ]
live: [ 4.x ]
index: docs/index.asciidoc
tags: APM Ruby Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-ruby
path: docs
-
repo: apm-agent-ruby
path: CHANGELOG.asciidoc
exclude_branches: [ 1.x, 0.x ]
- title: APM Real User Monitoring JavaScript Agent
prefix: rum-js
current: 5.x
branches: [ {main: master}, 5.x, 4.x, 3.x, 2.x, 1.x, 0.x ]
live: [ 5.x, 4.x]
index: docs/index.asciidoc
tags: APM Real User Monitoring JavaScript Agent/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-agent-rum-js
path: docs
-
repo: apm-agent-rum-js
path: CHANGELOG.asciidoc
exclude_branches: [ 3.x, 2.x, 1.x, 0.x ]
- title: APM AWS Lambda Extension
prefix: lambda
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
tags: APM AWS Lambda extension/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-aws-lambda
path: docs
-
repo: apm-aws-lambda
path: CHANGELOG.asciidoc
- title: APM Attacher
prefix: attacher
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
tags: APM Attacher/Reference
subject: APM
chunk: 1
sources:
-
repo: apm-k8s-attacher
path: docs
- title: ECS logging
base_dir: en/ecs-logging
sections:
- title: ECS Logging Overview
prefix: overview
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/Guide
subject: ECS Logging Overview
sources:
-
repo: ecs-logging
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
- title: ECS Logging Go (Logrus) Reference
prefix: go-logrus
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/go-logrus/Guide
subject: ECS Logging Go (Logrus) Reference
sources:
-
repo: ecs-logging-go-logrus
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Go (Zap) Reference
prefix: go-zap
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/go-zap/Guide
subject: ECS Logging Go (Zap) Reference
sources:
-
repo: ecs-logging-go-zap
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Go (zerolog) Reference
prefix: go-zerolog
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/go-zerolog/Guide
subject: ECS Logging Go (zerolog) Reference
sources:
-
repo: ecs-logging-go-zerolog
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Java Reference
prefix: java
current: 1.x
branches: [ {main: master}, 1.x, 0.x ]
live: [ 1.x ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/java/Guide
subject: ECS Logging Java Reference
sources:
-
repo: ecs-logging-java
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
map_branches:
1.x: main
0.x: main
- title: ECS Logging .NET Reference
prefix: dotnet
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/.NET/Guide
subject: ECS Logging .NET Reference
sources:
-
repo: ecs-dotnet
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Node.js Reference
prefix: nodejs
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/nodejs/Guide
subject: ECS Logging Node.js Reference
sources:
-
repo: ecs-logging-nodejs
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Ruby Reference
prefix: ruby
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/ruby/Guide
subject: ECS Logging Ruby Reference
sources:
-
repo: ecs-logging-ruby
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging PHP Reference
prefix: php
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/php/Guide
subject: ECS Logging PHP Reference
sources:
-
repo: ecs-logging-php
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: ECS Logging Python Reference
prefix: python
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/index.asciidoc
chunk: 1
tags: ECS-logging/python/Guide
subject: ECS Logging Python Reference
sources:
-
repo: ecs-logging-python
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: ecs-logging
path: docs
- title: Security
sections:
- title: Elastic Security
prefix: en/security
current: *stackcurrent
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 7.13, 7.12, 7.11, 7.10, 7.9, 7.8 ]
live: *stacklive
index: docs/index.asciidoc
chunk: 1
tags: Security/Guide
subject: Security
sources:
-
repo: security-docs
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: stack-docs
path: docs/en
- title: Elastic Stack
sections:
- title: "Starting with the Elasticsearch Platform and its Solutions"
prefix: en/starting-with-the-elasticsearch-platform-and-its-solutions
current: *stackcurrent
index: welcome-to-elastic/index.asciidoc
branches: [ {main: master}, 8.x, 8.16, 8.15, 8.14, 8.13, 8.12, 8.11, 8.10, 8.9, 8.8, 8.7, 8.6, 8.5, 8.4, 7.17 ]
live: [ *stackcurrent ]
chunk: 1
tags: Elastic/Starting with the Elasticsearch Platform and its Solutions
subject: Starting with the Elasticsearch Platform and its Solutions
sources:
-
repo: tech-content
path: welcome-to-elastic
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Curator Index Management
prefix: en/elasticsearch/client/curator
current: 8.0
branches: [ 8.0, 7.0, 6.0, 5.8, 5.7, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.3, 4.2, 4.1, 4.0, 3.5, 3.4, 3.3 ]
index: docs/asciidoc/index.asciidoc
tags: Clients/Curator
subject: Clients
sources:
-
repo: curator
path: docs/asciidoc
- title: Elastic Common Schema (ECS) Reference
prefix: en/ecs
# Please do not update current to 8.12
current: 8.11