forked from elastic/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.yaml
2870 lines (2841 loc) · 124 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-mutating-webhook: https://github.com/elastic/apm-mutating-webhook.git
apm-server: https://github.com/elastic/apm-server.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
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-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
guide: https://github.com/elastic/elasticsearch-definitive-guide.git
guide-cn: https://github.com/elasticsearch-cn/elasticsearch-definitive-guide.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: Welcome to Elastic Docs
# 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.4
stacklive: &stacklive [ master, 8.4, 7.17 ]
stacklivemain: &stacklivemain [ main, 8.4, 7.17 ]
cloudSaasCurrent: &cloudSaasCurrent ms-80
mapCloudSaasToClientsTeam: &mapCloudSaasToClientsTeam
*cloudSaasCurrent : master
mapCloudEceToClientsTeam: &mapCloudEceToClientsTeam
ms-78: master
ms-75: master
ms-72: master
ms-70: master
ms-69: master
ms-65: master
ms-62: master
ms-59: master
ms-57: master
ms-53: master
ms-49: master
ms-47: master
release-ms-41: master
2.5: master
2.4: master
2.3: master
2.2: master
2.1: master
2.0: master
1.1: master
1.0: master
# 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: Elastic Documentation
sections:
- title: "Welcome to Elastic"
prefix: en/welcome-to-elastic
current: *stackcurrent
index: welcome-to-elastic/index.asciidoc
branches: [ {main: master}, 8.4 ]
chunk: 1
tags: Elastic/Welcome
subject: Welcome to Elastic
sources:
-
repo: tech-content
path: welcome-to-elastic
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
- title: Elastic Stack
sections:
- title: Installation and Upgrade Guide
prefix: en/elastic-stack
current: *stackcurrent
index: docs/en/install-upgrade/index.asciidoc
branches: [ {main: master}, 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 ]
live: *stacklivemain
chunk: 1
tags: Elastic Stack/Installation and Upgrade
subject: Elastic Stack
sources:
-
repo: stack-docs
path: docs/en
-
repo: apm-server
path: 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: 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: elasticsearch
path: docs/
-
repo: elasticsearch-hadoop
path: docs/src/reference/asciidoc
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: security-docs
path: docs/
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 ]
-
repo: kibana
path: 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: logstash
path: 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: observability-docs
path: docs/en/observability
exclude_branches: [ 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 ]
-
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 ]
map_branches: *mapMainToMaster
-
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 ]
-
repo: docs
path: shared/attributes62.asciidoc
exclude_branches: [ main, 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.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
- title: Glossary
prefix: en/elastic-stack-glossary
current: main
index: docs/en/glossary/index.asciidoc
branches: [ {main: master} ]
tags: Elastic Stack/Glossary
subject: Elastic Stack
sources:
-
repo: stack-docs
path: docs/en
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
- title: Machine Learning
prefix: en/machine-learning
current: *stackcurrent
index: docs/en/stack/ml/index.asciidoc
branches: [ {main: master}, 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 ]
live: *stacklivemain
chunk: 1
tags: Elastic Stack/Machine Learning
subject: Machine Learning
sources:
-
repo: stack-docs
path: docs/en/stack
-
repo: elasticsearch
path: docs
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
-
repo: docs
path: shared/attributes.asciidoc
-
repo: docs
path: shared/settings.asciidoc
- title: Elastic Common Schema (ECS) Reference
prefix: en/ecs
current: 8.4
branches: [ {main: master}, 8.5, 8.4, 8.3, 8.2, 8.1, 8.0, 1.12, 1.11, 1.10, 1.9, 1.8, 1.7, 1.6, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0 ]
live: [ main, 8.5, 8.4, 8.3, 1.12 ]
index: docs/index.asciidoc
chunk: 2
tags: Elastic Common Schema (ECS)/Reference
subject: Elastic Common Schema (ECS)
sources:
-
repo: ecs
path: docs/
- title: Azure Marketplace and Resource Manager (ARM) template
prefix: en/elastic-stack-deploy
current: 7.11
index: docs/index.asciidoc
branches: [ master, 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.7, 6.6, 6.5, 6.4, 6.3 ]
chunk: 1
tags: Elastic Stack/Azure
subject: Azure Marketplace and Resource Manager (ARM) template
sources:
-
repo: azure-marketplace
path: docs
- title: "Elasticsearch: Store, Search, and Analyze"
sections:
- title: Elasticsearch Guide
prefix: en/elasticsearch/reference
current: *stackcurrent
branches: [ {main: master}, 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: *stacklivemain
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.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.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.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
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: elasticsearch
path: x-pack/qa/sql
# only exists from 6.3 to 6.5
exclude_branches: [ main, 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/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 ]
map_branches: *mapMainToMaster
-
alternatives: { source_lang: console, alternative_lang: csharp }
repo: elasticsearch-net
path: 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.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 ]
- title: Elasticsearch Resiliency Status
prefix: en/elasticsearch/resiliency
toc: 1
branches: [{main: master}]
current: main
index: docs/resiliency/index.asciidoc
single: 1
tags: Elasticsearch/Resiliency Status
subject: Elasticsearch
sources:
-
repo: elasticsearch
path: docs/resiliency
-
repo: elasticsearch
path: docs/Versions.asciidoc
-
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 ]
- title: Painless Scripting Language
prefix: en/elasticsearch/painless
current: *stackcurrent
branches: [ {main: master}, 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]
live: *stacklivemain
index: docs/painless/index.asciidoc
chunk: 1
tags: Elasticsearch/Painless
subject: Elasticsearch
sources:
-
repo: elasticsearch
path: docs/painless
-
repo: elasticsearch
path: docs/Versions.asciidoc
-
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 ]
- title: Plugins and Integrations
prefix: en/elasticsearch/plugins
repo: elasticsearch
current: *stackcurrent
index: docs/plugins/index.asciidoc
branches: [ {main: master}, 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 ]
live: *stacklivemain
chunk: 2
tags: Elasticsearch/Plugins
subject: Elasticsearch
sources:
-
repo: elasticsearch
path: docs/plugins
-
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: buildSrc/src/main/resources/
exclude_branches: [ main, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.15, 7.14, 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/src/main/resources/
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: build-tools/src/main/resources/
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: 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 ]
- title: Elasticsearch Clients
base_dir: en/elasticsearch/client
sections:
- title: Java Client
prefix: java-api-client
current: *stackcurrent
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklivemain
index: docs/index.asciidoc
chunk: 1
tags: Clients/Java
subject: Clients
sources:
-
repo: elasticsearch-java
path: docs/
-
repo: elasticsearch-java
path: java-client/src/test/java/co/elastic/clients/documentation
-
repo: elasticsearch
path: docs/java-rest/
-
repo: elasticsearch
path: client
- title: JavaScript Client
prefix: javascript-api
current: *stackcurrent
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 6.x, 5.x ]
live: *stacklivemain
index: docs/index.asciidoc
chunk: 1
tags: Clients/JavaScript
subject: Clients
sources:
-
repo: elasticsearch-js
path: docs/
- title: Ruby Client
prefix: ruby-api
current: *stackcurrent
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklivemain
index: docs/index.asciidoc
chunk: 1
tags: Clients/Ruby
subject: Clients
sources:
-
repo: elasticsearch-ruby
path: docs/
- title: Go Client
prefix: go-api
current: *stackcurrent
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklivemain
index: .doc/index.asciidoc
chunk: 1
tags: Clients/Go
subject: Clients
sources:
-
repo: go-elasticsearch
path: .doc/
- title: .NET Clients
prefix: net-api
current: 8.0
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 6.x, 5.x, 2.x, 1.x ]
live: [ main, 8.0, 7.17, 7.16, 6.x, 5.x, 2.x, 1.x ]
index: docs/index.asciidoc
tags: Clients/.Net
subject: Clients
chunk: 1
sources:
-
repo: elasticsearch-net
path: docs/
- title: PHP Client
prefix: php-api
current: *stackcurrent
branches: [ master, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16, 7.x, 6.x, 5.x, 2.x, 1.x, 0.4 ]
live: *stacklive
index: docs/index.asciidoc
chunk: 1
tags: Clients/PHP
subject: Clients
sources:
-
repo: elasticsearch-php
path: docs/
-
repo: docs
path: shared/attributes.asciidoc
- title: Perl Client
prefix: perl-api
current: master
branches: [ master, 8.4, 8.3, 8.2, 8.1, 8.0 ]
live: [ master, 8.4, 8.3, 8.2, 8.1, 8.0 ]
index: docs/index.asciidoc
chunk: 1
tags: Clients/Perl
subject: Clients
sources:
-
repo: elasticsearch-perl
path: docs/
- title: Python Client
prefix: python-api
current: *stackcurrent
branches: [ {main: master}, 8.4, 8.3, 8.2, 8.1, 8.0, 7.17, 7.16 ]
live: *stacklivemain
index: docs/guide/index.asciidoc
chunk: 1
tags: Clients/Python
subject: Clients
sources:
-
repo: elasticsearch-py
path: docs/guide/
- title: eland
prefix: eland
current: main
branches: [ {main: master} ]
live: [ main ]
index: docs/guide/index.asciidoc
chunk: 1
tags: Clients/eland
subject: Clients
sources:
-
repo: eland
path: docs/guide
- title: Rust Client
prefix: rust-api
current: master
branches: [ master, 8.4, 8.3, 8.2, 8.1, 8.0 ]
live: [ master, 8.4, 8.3, 8.2, 8.1, 8.0 ]
index: docs/index.asciidoc
chunk: 1
tags: Clients/Rust
subject: Clients
sources:
-
repo: elasticsearch-rs
path: docs/
- title: Java REST Client (deprecated)
prefix: java-rest
current: 7.17
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 ]
live: [ 7.17, 6.8 ]
index: docs/java-rest/index.asciidoc
tags: Clients/JavaREST
subject: Clients
chunk: 1
sources:
-
repo: elasticsearch
path: docs/java-rest
-
repo: elasticsearch
path: docs/Versions.asciidoc
-
repo: elasticsearch
path: client
exclude_branches: [ 5.5, 5.4, 5.3, 5.2, 5.1, 5.0 ]
-
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 ]
- title: Java Transport Client (deprecated)
prefix: java-api
current: 7.17
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 ]
live: [7.17, 6.8]
index: docs/java-api/index.asciidoc
tags: Clients/Java
subject: Clients
chunk: 1
sources:
-
repo: elasticsearch
path: docs/java-api
-
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: client/rest-high-level/src/test/java/org/elasticsearch/client
exclude_branches: [ 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/internalClusterTest/java/org/elasticsearch/client/documentation
exclude_branches: [ 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/test/java/org/elasticsearch/client/documentation
exclude_branches: [ 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: modules/reindex/src/internalClusterTest/java/org/elasticsearch/client/documentation
exclude_branches: [ 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: modules/reindex/src/test/java/org/elasticsearch/client/documentation
exclude_branches: [ 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 ]
- title: Community Contributed Clients
prefix: community
branches: [{main: master}]
current: main
index: docs/community-clients/index.asciidoc
single: 1
tags: Clients/Community
subject: Clients
sources:
-
repo: elasticsearch
path: docs/community-clients
- title: Elasticsearch for Apache Hadoop and Spark
prefix: en/elasticsearch/hadoop
current: *stackcurrent
branches: [ {main: master}, 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 ]
live: *stacklivemain
index: docs/src/reference/asciidoc/index.adoc
tags: Elasticsearch/Apache Hadoop
subject: Elasticsearch
sources:
-
repo: elasticsearch-hadoop
path: docs/src/reference/asciidoc
- title: Curator Index Management
prefix: en/elasticsearch/client/curator
current: 5.8
branches: [ 5.x, 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: "Cloud: Provision, Manage and Monitor the Elastic Stack"
sections:
- title: Elasticsearch Service - Hosted Elastic Stack
prefix: en/cloud
tags: Cloud/Reference
subject: Elastic Cloud
current: *cloudSaasCurrent
branches: [ { *cloudSaasCurrent : latest} ]
index: docs/saas/index.asciidoc
chunk: 1
private: 1
sources:
-
repo: cloud
path: docs/saas
-
repo: cloud
path: docs/shared
-
alternatives: { source_lang: console, alternative_lang: php }
repo: clients-team
path: docs/examples/elastic-cloud/php
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: go }
repo: clients-team
path: docs/examples/elastic-cloud/go
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: ruby }
repo: clients-team
path: docs/examples/elastic-cloud/ruby
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: java }
repo: clients-team
path: docs/examples/elastic-cloud/java
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: javascript }
repo: clients-team
path: docs/examples/elastic-cloud/javascript
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: python }
repo: clients-team
path: docs/examples/elastic-cloud/python
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: csharp }
repo: clients-team
path: docs/examples/elastic-cloud/csharp
map_branches: *mapCloudSaasToClientsTeam
- title: Elasticsearch Add-On for Heroku - Hosted Elasticsearch and Kibana for Heroku Users
prefix: en/cloud-heroku
tags: Cloud-Heroku/Reference
subject: Elasticsearch Add-On for Heroku
current: *cloudSaasCurrent
branches: [ { *cloudSaasCurrent : latest} ]
index: docs/heroku/index.asciidoc
chunk: 1
noindex: 1
private: 1
sources:
-
repo: cloud
path: docs/saas
-
repo: cloud
path: docs/shared
-
repo: cloud
path: docs/heroku
-
alternatives: { source_lang: console, alternative_lang: php }
repo: clients-team
path: docs/examples/elastic-cloud/php
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: go }
repo: clients-team
path: docs/examples/elastic-cloud/go
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: ruby }
repo: clients-team
path: docs/examples/elastic-cloud/ruby
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: java }
repo: clients-team
path: docs/examples/elastic-cloud/java
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: javascript }
repo: clients-team
path: docs/examples/elastic-cloud/javascript
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: python }
repo: clients-team
path: docs/examples/elastic-cloud/python
map_branches: *mapCloudSaasToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: csharp }
repo: clients-team
path: docs/examples/elastic-cloud/csharp
map_branches: *mapCloudSaasToClientsTeam
- title: Elastic Cloud Enterprise - Elastic Cloud on your Infrastructure
prefix: en/cloud-enterprise
tags: CloudEnterprise/Reference
subject: ECE
current: ms-78
branches:
- ms-78: 3.4
- ms-75: 3.3
- ms-72: 3.2
- ms-70: 3.1
- ms-69: 3.0
- ms-65: 2.13
- ms-62: 2.12
- ms-59: 2.11
- ms-57: 2.10
- ms-53: 2.9
- ms-49: 2.8
- ms-47: 2.7
- release-ms-41: 2.6
- 2.5
- 2.4
- 2.3
- 2.2
- 2.1
- 2.0
- 1.1
- 1.0
index: docs/cloud-enterprise/index.asciidoc
chunk: 2
private: 1
sources:
-
repo: cloud
# Grab the entire docs/ directory to get `ece-version.asciidoc`
path: docs
-
repo: cloud
path: docs/shared
exclude_branches: [ 1.0 ]
-
repo: cloud-assets
path: docs
map_branches:
ms-78: master
ms-75: master
ms-72: master
ms-70: master
ms-69: master
ms-65: master
ms-62: master
ms-59: master
ms-57: master
ms-53: master
ms-49: master
ms-47: master
release-ms-41: master
2.5: master
2.4: master
2.3: master
2.2: master
2.1: master
2.0: master
1.1: master
1.0: master
-
alternatives: { source_lang: console, alternative_lang: php }
repo: clients-team
path: docs/examples/elastic-cloud/php
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: go }
repo: clients-team
path: docs/examples/elastic-cloud/go
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: ruby }
repo: clients-team
path: docs/examples/elastic-cloud/ruby
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: java }
repo: clients-team
path: docs/examples/elastic-cloud/java
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: javascript }
repo: clients-team
path: docs/examples/elastic-cloud/javascript
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: python }
repo: clients-team
path: docs/examples/elastic-cloud/python
map_branches: *mapCloudEceToClientsTeam
-
alternatives: { source_lang: console, alternative_lang: csharp }
repo: clients-team
path: docs/examples/elastic-cloud/csharp
map_branches: *mapCloudEceToClientsTeam
- title: Elastic Cloud on Kubernetes
prefix: en/cloud-on-k8s
tags: Kubernetes/Reference
subject: ECK
current: 2.4
branches: [ {main: master}, 2.4, 2.3, 2.2, 2.1, 2.0, 1.9, 1.8, 1.7, 1.6, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0, 1.0-beta, 0.9, 0.8 ]
index: docs/index.asciidoc
chunk: 1
sources:
-
repo: cloud-on-k8s
path: docs/
-
repo: docs
path: shared/versions/stack/current.asciidoc
exclude_branches: [ 0.9, 0.8 ]
-
repo: docs
path: shared/attributes.asciidoc
- title: Elastic Cloud Control - The Command-Line Interface for Elasticsearch Service and ECE
prefix: en/ecctl
tags: CloudControl/Reference
subject: ECCTL
current: 1.8
branches: [ master, 1.8, 1.7, 1.6, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0 ]
index: docs/index.asciidoc
chunk: 1
sources:
-
repo: ecctl
path: docs/
- title: Elastic Cloud Terraform Provider
prefix: en/tpec
tags: CloudTerraform/Reference
subject: TPEC
current: 0.2
branches: [ master, 0.2, 0.1 ]
index: docs-elastic/index.asciidoc
single: 1
chunk: 1
sources:
-
repo: terraform-provider-ec
path: docs-elastic/
- title: "Kibana: Explore, Visualize, and Share"
sections:
- title: Kibana Guide
prefix: en/kibana
current: *stackcurrent
branches: [ {main: master}, 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, 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0 ]
live: *stacklivemain
index: docs/index.x.asciidoc
chunk: 1
tags: Kibana/Reference
subject: Kibana
toc_extra: extra/kibana_landing.html
sources:
-
repo: kibana
path: docs/
-
repo: x-pack-kibana
prefix: kibana-extra/x-pack-kibana
path: docs/en
exclude_branches: [ main, 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, 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0 ]
-
repo: docs
path: shared/versions/stack/{version}.asciidoc
exclude_branches: [ 5.4, 5.3, 5.2, 5.1, 5.0, 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0 ]
-
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, 4.6, 4.5, 4.4, 4.3, 4.2, 4.1, 4.0, 3.0 ]
-