-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathindex.html
1484 lines (1390 loc) · 68.4 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Elastic documentation | Elastic</title>
<meta class="elastic" name="content" content="Elastic documentation">
<meta class="elastic" name="product_version" content=""/>
<meta class="elastic" name="product_name" content=""/>
<meta class="elastic" name="website_area" content="documentation"/>
<meta name="DC.type" content="Learn/Docs/"/>
<meta name="DC.subject" content=""/>
<meta name="DC.identifier" content=""/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.optimizely.com/js/18132920325.js"></script>
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<meta name="apple-mobile-web-app-title" content="Elastic">
<meta name="application-name" content="Elastic">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta name="naver-site-verification" content="936882c1853b701b3cef3721758d80535413dbfd" />
<meta name="yandex-verification" content="d8a47e95d0972434" />
<meta name="localized" content="true" />
<meta name="st:robots" content="follow,index" />
<meta property="og:image" content="https://static-www.elastic.co/v3/assets/bltefdd0b53724fa2ce/blt280217a63b82a734/6202d3378b1f312528798412/elastic-logo.svg" />
<meta property="og:image:width" content="500" />
<meta property="og:image:height" content="172" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" sizes="64x64" href="/favicon_64x64_16bit.png">
<link rel="apple-touch-icon-precomposed" sizes="32x32" href="/favicon_32x32.png">
<link rel="apple-touch-icon-precomposed" sizes="16x16" href="/favicon_16x16.png">
<!-- Give IE8 a fighting chance -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="/guide/static/styles-v1.css" />
</head>
<!--© 2015-2025 Elasticsearch B.V. -->
<!-- All Elastic documentation is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. -->
<!-- http://creativecommons.org/licenses/by-nc-nd/4.0/ -->
<body>
<!-- Google Tag Manager -->
<script>dataLayer = [];</script><noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-58RLH5" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-58RLH5');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-12395217-16"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-12395217-16');
</script>
<!-- Google Tag Manager for GA4 -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KNJMG2M');</script>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KNJMG2M" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager for GA4-->
<div id='elastic-nav' style="display:none;"></div>
<script src='https://www.elastic.co/elastic-nav.js'></script>
<div class="main-container">
<section id="content" >
<div class="content-wrapper">
<section id="guide" lang="en">
<div class="container-fluid">
<div class="row pb-3">
<div class="col-12 order-2 col-md-4 order-md-1 col-lg-3 h-almost-full-md sticky-top-md" id="left_col">
<!-- The TOC is appended here -->
</div>
<div class="col-12 order-1 col-md-8 order-md-2 col-lg-7 order-lg-2 guide-section" id="middle_col">
<!-- start body -->
<div class="article" lang="en">
<div class="titlepage">
<div id="breadcrumbs-go-here"></div>
<div>
<div><h1 class="title"><a id="id-1"></a>Elastic documentation</h1></div>
</div>
<!--EXTRA-->
<div id="extra">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
.card {
cursor: default;
padding: 16px;
text-align: left;
color: #000;
}
.card:hover {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
text-align: left;
}
#guide a.no-text-decoration:hover {
text-decoration: none!important;
}
.icon {
width: 24px;
height: 24px;
background-position: bottom;
background-size: contain;
background-repeat: no-repeat;
}
.ul-col-1 {
columns: 1;
-webkit-columns: 1;
-moz-columns: 1;
}
@media (min-width:769px) {
.ul-col-md-2, div#content {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
}
}
:root {
--color-white: #fff;
--color-light-ink: #535966;
--subnav-item-link-color: var(--color-light-ink);
--color-gray: #e6ebf2;
--color-lighter-gray: #f9fbfc;
--color-elastic-blue: #07c;
--color-heading: #343741;
--color-callout: #f5f7fa;
--color-dark-blue: #005a9e;
--button-primary-color: var(--color-white);
--button-primary-bg: var(--color-elastic-blue);
--button-primary-border-color: var(--color-elastic-blue);
--button-primary-hover-bg: var(--color-dark-blue);
--button-primary-hover-border-color: var(--color-dark-blue);
}
html,
body {
overflow-x: hidden;
}
#guide h1,
#guide h2,
#guide h3,
#guide h4,
#guide h5,
#guide h6 {
font-family: MierB, Inter, Arial, sans-serif;
color: var(--color-heading);
text-align: center;
}
#guide #viewall h2 {
font-size: 40px !important;
font-weight: 600 !important;
margin: 16px 0 !important;
}
#guide h2 {
text-align: left;
font-size: 20px;
margin: 16px 16px;
font-weight: 600;
}
#guide h3 {
text-align: left;
font-size: 20px;
margin: 16px 16px;
font-weight: 600;
}
#guide .patterns:before {
content: "";
display: block;
top: 60px;
left: 0;
background: no-repeat url(https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt8d8a47b0bda71e1e/60412d88c7198e3af48f726d/generic-top-left.svg);
background-size: 100%;
margin-left: -439px;
width: 560px;
height: 300px;
position: absolute;
}
#guide .patterns:after {
content: "";
background: no-repeat url(https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt9f40c83ad2785983/6011c55b3e567f1011da3dce/generic-bottom-right.svg);
background-size: 100%;
width: 680px;
height: 400px;
display: block;
margin-left: auto;
position: absolute;
top: -96px;
right: -483px;
}
#guide h1.title {
font-size: 48px;
font-weight: 500;
z-index: 10;
}
#guide .container-fluid {
max-width: 1280px;
margin: 0 auto;
}
#middle_col {
padding-top: 120px;
width: 100%;
max-width: 1280px;
flex: 0 0 auto;
}
#right_col,
.titlepage hr {
display: none;
}
#left_col {
display: none;
}
#guide .subnavigation {
top: 00px;
border-bottom: 1px solid var(--color-gray);
z-index: 6;
background-color: var(--color-lighter-gray);
height: 60px;
line-height: 60px;
text-align: right;
position: absolute;
width: 100%;
}
#guide .subnavigation p {
width: 100%;
max-width: 1280px;
margin: 0 -30px;
}
#guide .subnavigation:before,
#guide .subnavigation:after {
content: "";
position: absolute;
background-color: var(--color-lighter-gray);
border-bottom: 1px solid var(--color-gray);
top: 0;
bottom: 0;
width: 9999px;
}
#guide .subnavigation:before {
right: 100%;
}
#guide .subnavigation:after {
left: 100%;
}
#guide .legalnotice + div p a {
color: var(--subnav-item-link-color);
font-weight: 600;
font-size: 14px;
}
#guide .tabs {
margin-bottom: 120px;
}
#capability-tabs-container {
margin-top: 75px;
}
#guide [role=tablist] {
margin: 0 auto 50px;
overflow: visible;
width: 350px;
text-align: center;
display: flex;
justify-content: center;
border-bottom: 1px solid var(--color-dark-gray);
}
#guide [role=tab] {
border: none;
border-bottom: 4px solid transparent;
padding: 0.3em 0.8em 0.7em;
background: none;
font-weight: 700;
font-size: 16px;
font-family: MierB,Inter,Arial,sans-serif;
}
#guide [role=tab][aria-selected=true] {
background: none;
border-bottom: 4px solid var(--color-elastic-blue);
color: var(--color-elastic-blue);
}
#guide [role=tab][aria-selected=false]:hover {
border-bottom: 3px solid var(--color-heading);
cursor: pointer;
}
#guide [role=tab][aria-selected=true]:not(:focus):not(:hover):before,
#guide [role=tab]:focus:before,
#guide [role=tab]:hover:before {
border-top: none;
}
@keyframes onlyFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#guide [role=tabpanel] {
padding: 0;
border: none;
background: none;
box-shadow: none;
-webkit-animation: onlyFadeIn 1s;
animation: onlyFadeIn 1s;
}
#guide .card {
overflow: hidden;
border-radius: 10px;
padding: 32px;
-moz-transition: all 0.4s ease;
-webkit-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
transition: all 0.4s ease;
}
#guide .card:hover {
padding: 32px;
-moz-box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.12);
-webkit-box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.12);
-o-box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.12);
-ms-box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.12);
box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.12);
}
#guide .card h3 {
text-align: left;
margin-bottom: 0;
padding-bottom: 0;
font-size: 28px;
}
#guide .card span.button {
margin-top: 20px;
}
#guide .card-border.card-border-top {
background-color: var(--color-elastic-blue);
position: absolute;
border-style: none;
border-width: 1px;
left: 0px;
top: 0px;
right: 0px;
bottom: auto;
height: 6px;
max-height: 6px;
}
#guide .need-help {
padding-bottom: 50px;
max-width: 700px;
margin: 0 auto;
}
#guide .need-help ul {
margin-left: 45px;
margin-top: 40px;
}
#guide .marketing-callout {
background-color: var(--color-callout);
text-align: center;
padding: 80px 0 96px;
margin: 96px 0;
position: relative;
}
#guide .marketing-callout h2 {
padding: 0;
}
#guide .marketing-callout a {
font-family: MierB,Inter,Arial,sans-serif;
font-size: 16px;
color: var(--button-primary-color);
background-color: var(--button-primary-bg);
border-color: var(--button-primary-border-color);
background-color: var(--button-primary-bg);
color: white;
font-weight: 600;
min-width: 200px;
min-height: 60px;
padding: 8px 24px;
text-align: center;
text-decoration: none;
box-shadow: none;
border: 2px solid;
border-radius: 6px;
-webkit-transition: all 100ms ease-in;
transition: all 100ms ease-in;
display: inline-block;
line-height: 40px;
margin-top: 10px;
}
#guide .marketing-callout a:hover {
background-color: var(--button-primary-hover-bg);
border-color: var(--button-primary-hover-border-color);
text-decoration: none!important;
}
#guide .marketing-callout:before,
#guide .marketing-callout:after {
content: "";
position: absolute;
background-color: var(--color-callout);
top: 0;
bottom: 0;
width: 9999px;
}
#guide .marketing-callout:before {
right: 100%;
}
#guide .marketing-callout:after {
left: 100%;
}
div#content {
margin: 50px 0 60px;
}
#guide div.docs-link-section {
-webkit-column-break-inside: avoid;
page-break-inside: avoid;
break-inside: avoid;
margin-bottom: 60px;
}
#guide div.docs-link-section h3 {
text-align: left;
font-size: 16px;
line-height: 22px;
letter-spacing: .12em;
text-transform: uppercase;
font-family: Inter, Arial, sans-serif;
font-weight: 600;
}
#guide div.docs-link-section h3 .toggle-icon {
display: inline-block;
-webkit-transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transform: rotate(180deg);
position: relative;
left: 10px;
}
#guide div.legacy-docs {
cursor: pointer;
}
#guide div.docs-link-section.hidden h3 .toggle-icon {
transform: rotate(0);
}
#guide div.legacy-docs.hidden div {
display: none;
}
@media screen and (max-width: 992px) {
.guide-section {
padding-right:15px
}
#guide .need-help ul {
margin-left: 0;
}
}
#feedbackWidget {
margin: 0 auto 50px;
border: none;
}
.old-elastic-experience-warning {
padding: 1em;
margin-bottom: 1em;
border: 1px solid #ccc;
background: #FFFFD2;
color: black;
position: relative;
z-index: 1;
}
div#content {
display: none;
}
div#manual-content {
margin: 50px 0 60px;
}
</style>
<div class="old-elastic-experience-warning">
You are viewing the previous version of Elastic docs. To view the current docs, go to <a href="https://www.elastic.co/docs">elastic.co/docs</a>.
</div>
<div class="legalnotice"></div>
<div id="subnavigation" class="subnavigation">
<p>
<a class="inline-block mr-3" href="https://www.elastic.co/guide/index.html#viewall">Browse all docs</a>
<a class="inline-block mr-3" href="en/starting-with-the-elasticsearch-platform-and-its-solutions/current/api-reference.html">API reference</a>
<a class="inline-block mr-3" href="en/starting-with-the-elasticsearch-platform-and-its-solutions/current/new.html">Release docs</a>
</p>
</div>
<div class="patterns container"></div>
<div id="capability-tabs-container" class="tabs" data-tab-group="doc-types">
<div id="button-container" role="tablist" aria-label="Documentation groups" class="clearfix">
<button id="solution-tab" role="tab" aria-selected="true" aria-controls="solution-tab-contents" class="float-lg-left d-block d-lg-inline tab-button active">Solutions</button>
<button id="product-tab" role="tab" aria-selected="false" aria-controls="product-tab-contents" class="float-lg-left d-block d-lg-inline tab-button">Platform</button>
<button id="deployment-tab" role="tab" aria-selected="false" aria-controls="deployment-tab-contents" class="float-lg-left d-block d-lg-inline tab-button">Deploy</button>
</div>
<div role="tabpanel" id="solution-tab-contents" aria-labelledby="solution-tab" tabindex="0">
<div class="row">
<div class="col-md-4 col-12 mb-2">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt11200907c1c033aa/634d9da119d8652169cf9b2b/enterprise-search-logo-color-32px.png');"></span>
<h3 class="mt-3">
Search
</h3>
<p>Build custom applications with your data using Elasticsearch.</p>
<a class="no-text-decoration" href="en/elasticsearch/reference/8.18/getting-started.html">
<span class="button btn-tertiary">
Get started
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
<a class="no-text-decoration" href="en/elasticsearch/reference/8.18/index.html">
<span class="button btn-tertiary">
View Elasticsearch docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="col-md-4 col-12 mb-2">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/bltaa08b370a00bbecc/634d9da14e565f1cdce27f7c/observability-logo-color-32px.png');">
</span>
<h3 class="mt-3">
Observability
</h3>
<p>Monitor applications and systems with Elastic Observability.</p>
<a class="no-text-decoration" href="en/observability/8.18/observability-get-started.html">
<span class="button btn-tertiary">
Get started
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
<a class="no-text-decoration" href="en/observability/8.18/index.html">
<span class="button btn-tertiary">
View Observability docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
</div>
</div>
<div class="col-md-4 col-12 mb-2">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt5e0e0ad9a13e6b8c/634d9da18473831f96bbdf1e/security-logo-color-32px.png');">
</span>
<h3 class="mt-3">
Security
</h3>
<p>Detect, investigate, and respond to threats with Elastic Security.</p>
<a class="no-text-decoration" href="en/starting-with-the-elasticsearch-platform-and-its-solutions/8.18/getting-started-endpoint-security.html">
<span class="button btn-tertiary">
Get started
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
<a class="no-text-decoration" href="en/security/8.18/es-overview.html">
<span class="button btn-tertiary">
View Security docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</a>
</div>
</div>
</div>
</div>
<div role="tabpanel" id="product-tab-contents" aria-labelledby="product-tab" tabindex="0" hidden="">
<div class="row">
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/elasticsearch/reference/8.18/index.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/%3C/div%3E%3C/div%3E%3C/div%3E%3Cdiv%20class=%22react-code-text%20react-code-line-contents%22%20style=%22min-height:auto%22%3E%3Cdiv%3E%3Cdiv%20id=%22LC676%22%20class=%22react-file-line%20html-div%22%20data-testid=%22code-cell%22%20data-line-number=%22676%22%20style=%22position:relative%22%3E%20%20%20%20%20%20%20%20%20%20%20%20'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt36f2da8d650732a0/5d0823c3d8ff351753cbc99f/logo-elasticsearch-32-color.svg');"></span>
<h3 class="mt-3">
Elasticsearch
</h3>
<p>The core distributed search and analytics engine at the heart of the Elastic platform.</p>
<span class="button btn-tertiary">
View Elasticsearch docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/logstash/8.18/introduction.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blta565c71d21f7826f/654bc774b42e39040a69a912/logstash.png');"></span>
<h3 class="mt-3">
Logstash
</h3>
<p>A data collection engine with real-time pipelining capabilities.</p>
<span class="button btn-tertiary">
View Logstash docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/kibana/8.18/index.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt4466841eed0bf232/5d082a5e97f2babb5af907ee/logo-kibana-32-color.svg');"></span>
<h3 class="mt-3">
Kibana
</h3>
<p>Kibana gives shape to your data and is the extensible user interface of the Elastic platform.</p>
<span class="button btn-tertiary">
View Kibana docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
</div>
<div class="row my-4">
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/fleet/8.18/fleet-overview.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt57976495d1cd01a5/654bc89d15630d040a4b3992/agent.png');"></span>
<h3 class="mt-3">
Fleet and Elastic Agent
</h3>
<p>A unified method to collect logs, metrics, and security data.</p>
<span class="button btn-tertiary">
View Fleet and Elastic Agent docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/beats/libbeat/8.18/beats-reference.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt69b289360045dae9/654bc6b72e735d040a9fb7ef/Beats.png');"></span>
<h3 class="mt-3">
Beats
</h3>
<p>Lightweight data shippers that send data to your cluster.</p>
<span class="button btn-tertiary">
View Beats docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
</div>
</div>
<div role="tabpanel" id="deployment-tab-contents" aria-labelledby="deployment-tab" tabindex="0" hidden="">
<div class="row">
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/cloud-enterprise/3.8/Elastic-Cloud-Enterprise-overview.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt0dc498ca4c8b3f95/5d104bbf561b9b0b537f9906/logo-cloud-32-color.svg"');">
</span>
<h3 class="mt-3">
Elastic Cloud Enterprise
</h3>
<p>Deploy Elastic Cloud on public or private clouds, virtual machines, or your own premises.</p>
<span class="button btn-tertiary">
View Elastic Cloud Enterprise docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/cloud-on-k8s/2.16/k8s-overview.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt0dc498ca4c8b3f95/5d104bbf561b9b0b537f9906/logo-cloud-32-color.svg"');">
</span>
<h3 class="mt-3">
Elastic Cloud on Kubernetes
</h3>
<p>Deploy Elastic Cloud on Kubernetes.</p>
<span class="button btn-tertiary">
View Elastic Cloud Kubernetes docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
<div class="col-md-4 col-12 mb-2">
<a class="no-text-decoration" href="en/elastic-stack/8.18/installing-elastic-stack.html">
<div class="card h-100">
<div class="card-border card-border-top"></div>
<span class="inline-block float-left icon mr-2" style="background-image: url(http://github.com/'https://images.contentstack.io/v3/assets/bltefdd0b53724fa2ce/blt0090c6239e64faf8/logo-stack-32-color.svg');">
</span>
<h3 class="mt-3">
Self managed
</h3>
<p>Install, configure, and run Elastic products on your own premises.</p>
<span class="button btn-tertiary">
View Self managed docs
<svg width="27" height="14" viewBox="0 0 27 14" fill="none" xmlns="http://www.w3.org/2000/svg" class="jsx-3012141155">
<path d="M0 7H25" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
<path d="M19 1L25 7L19 13" stroke="#0077CC" stroke-width="2" class="jsx-3012141155"></path>
</svg>
</span>
</div>
</a>
</div>
</div>
</div>
</div>
<div id="viewall" style="margin-top: 0px;margin-bottom: 0px !important;" />
<h2>Browse all docs</h2>
<div id="manual-content">
<div class="position-relative">
<h2><a id="_search" href="#_search"></a>Search</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/elasticsearch/reference/8.18/index.html" class="ulink" target="_top">Elasticsearch Guide [8.18]</a> — <a href="en/elasticsearch/reference/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/enterprise-search/8.18/index.html" class="ulink" target="_top">Enterprise Search Guide [8.18]</a> — <a href="en/enterprise-search/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/workplace-search/8.18/index.html" class="ulink" target="_top">Workplace Search Guide [8.18]</a> — <a href="en/workplace-search/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/app-search/8.18/index.html" class="ulink" target="_top">App Search Guide [8.18]</a> — <a href="en/app-search/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/enterprise-search-clients/index.html" class="ulink" target="_top">Enterprise Search Clients</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_observability_apm_logs_metrics_and_uptime" href="#_observability_apm_logs_metrics_and_uptime"></a>Observability: APM, Logs, Metrics, and Uptime</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/observability/8.18/index.html" class="ulink" target="_top">Observability [8.18]</a> — <a href="en/observability/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/apm/index.html" class="ulink" target="_top">Application Performance Monitoring (APM)</a>
</li>
<li class="listitem">
<a href="en/ecs-logging/index.html" class="ulink" target="_top">ECS logging</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_security" href="#_security"></a>Security</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/security/8.18/index.html" class="ulink" target="_top">Elastic Security [8.18]</a> — <a href="en/security/index.html" class="ulink" target="_top">other versions</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_elastic_stack" href="#_elastic_stack"></a>Elastic Stack</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/starting-with-the-elasticsearch-platform-and-its-solutions/8.18/index.html" class="ulink" target="_top">Starting with the Elasticsearch Platform and its Solutions [8.18]</a> — <a href="en/starting-with-the-elasticsearch-platform-and-its-solutions/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/elasticsearch/client/curator/8.0/index.html" class="ulink" target="_top">Curator Index Management [8.0]</a> — <a href="en/elasticsearch/client/curator/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/ecs/8.17/index.html" class="ulink" target="_top">Elastic Common Schema (ECS) Reference [8.17]</a> — <a href="en/ecs/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/elasticsearch/client/index.html" class="ulink" target="_top">Elasticsearch Clients</a>
</li>
<li class="listitem">
<a href="en/elasticsearch/hadoop/8.18/index.html" class="ulink" target="_top">Elasticsearch for Apache Hadoop and Spark [8.18]</a> — <a href="en/elasticsearch/hadoop/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/esre/8.18/index.html" class="ulink" target="_top">Elasticsearch Relevance Engine (ESRE) [8.18]</a> — <a href="en/esre/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/elastic-stack/8.17/index.html" class="ulink" target="_top">Installation and Upgrade Guide [8.17]</a> — <a href="en/elastic-stack/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/kibana/8.18/index.html" class="ulink" target="_top">Kibana Guide [8.18]</a> — <a href="en/kibana/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/machine-learning/8.18/index.html" class="ulink" target="_top">Machine Learning [8.18]</a> — <a href="en/machine-learning/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/elasticsearch/painless/8.18/index.html" class="ulink" target="_top">Painless Scripting Language [8.18]</a> — <a href="en/elasticsearch/painless/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/elasticsearch/plugins/8.18/index.html" class="ulink" target="_top">Plugins and Integrations [8.18]</a> — <a href="en/elasticsearch/plugins/index.html" class="ulink" target="_top">other versions</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_ingest_add_your_data" href="#_ingest_add_your_data"></a>Ingest: Add your data</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/ingest/8.18/index.html" class="ulink" target="_top">Elastic Ingest Reference Architectures [8.18]</a> — <a href="en/ingest/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/fleet/8.18/index.html" class="ulink" target="_top">Fleet and Elastic Agent Guide [8.18]</a> — <a href="en/fleet/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/logstash/8.18/index.html" class="ulink" target="_top">Logstash Reference [8.18]</a> — <a href="en/logstash/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/logstash-versioned-plugins/current/index.html" class="ulink" target="_top">Logstash Versioned Plugin Reference</a>
</li>
<li class="listitem">
<a href="en/beats/loggingplugin/8.18/index.html" class="ulink" target="_top">Elastic Logging Plugin for Docker [8.18]</a> — <a href="en/beats/loggingplugin/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/auditbeat/8.18/index.html" class="ulink" target="_top">Auditbeat Reference [8.18]</a> — <a href="en/beats/auditbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/devguide/8.18/index.html" class="ulink" target="_top">Beats Developer Guide [8.18]</a> — <a href="en/beats/devguide/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/libbeat/8.18/index.html" class="ulink" target="_top">Beats Platform Reference [8.18]</a> — <a href="en/beats/libbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/filebeat/8.18/index.html" class="ulink" target="_top">Filebeat Reference [8.18]</a> — <a href="en/beats/filebeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/heartbeat/8.18/index.html" class="ulink" target="_top">Heartbeat Reference [8.18]</a> — <a href="en/beats/heartbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/metricbeat/8.18/index.html" class="ulink" target="_top">Metricbeat Reference [8.18]</a> — <a href="en/beats/metricbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/packetbeat/8.18/index.html" class="ulink" target="_top">Packetbeat Reference [8.18]</a> — <a href="en/beats/packetbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/beats/winlogbeat/8.18/index.html" class="ulink" target="_top">Winlogbeat Reference [8.18]</a> — <a href="en/beats/winlogbeat/index.html" class="ulink" target="_top">other versions</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_cloud_provision_manage_and_monitor_the_elastic_stack" href="#_cloud_provision_manage_and_monitor_the_elastic_stack"></a>Cloud: Provision, Manage, and Monitor the Elastic Stack</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/cloud-enterprise/3.8/index.html" class="ulink" target="_top">Elastic Cloud Enterprise - Elastic Cloud on your Infrastructure [3.8]</a> — <a href="en/cloud-enterprise/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/cloud-on-k8s/2.16/index.html" class="ulink" target="_top">Elastic Cloud on Kubernetes [2.16]</a> — <a href="en/cloud-on-k8s/index.html" class="ulink" target="_top">other versions</a>
</li>
<li class="listitem">
<a href="en/ecctl/1.14/index.html" class="ulink" target="_top">Elastic Cloud Control - The Command-Line Interface for Elasticsearch Service and ECE [1.14]</a> — <a href="en/ecctl/index.html" class="ulink" target="_top">other versions</a>
</li>
</ul>
</div>
<div class="position-relative">
<h2><a id="_archive" href="#_archive"></a>Archive</h2>
</div>
<div class="ulist itemizedlist">
<ul class="itemizedlist">
<li class="listitem">
<a href="en/elastic-stack-gke/current/index.html" class="ulink" target="_top">Elastic Stack and Google Cloud’s Anthos</a>
</li>