Commit Graph

2222 Commits

Author SHA1 Message Date
David Alpert (Next League) ca40c6191c
demonstrate fluent queries to exclude fields with empty values (#4579)
a `TermQuery` with an empty string `Value` is considered by the .NET client to be "conditionless" and is removed from the search request body by default.

for those times that you want to use a `TermQuery` with an empty string `Value` (e.g. show me all documents with a non-empty last_name property) you need to use the `.Verbatim()` method to tell the client library to include the `TermQuery` as written even though it is considered to be "conditionless".

in other words, while a "conditionless" query may not make sense in the positive it can make sense in the negative

```
GET /my-index/_search
{
     "query": {
        "bool": {
          "must": [{
            "exists": { "field": "last_name"}
          }],
          "must_not": [{
            "term": {"last_name.keyword": { "value": "" }}
          }]
        }
      },
}
```

Signed-off-by: David Alpert (Next League) <112503249+david-alpert-nl@users.noreply.github.com>
2023-07-18 10:08:56 -07:00
kolchfa-aws 42e8a1bdca
Add geohash, geotile, and geobounds aggregation on geoshapes documentation (#4517)
* Add geohash and geotile grid aggregation on geoshapes documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add copy buttons and details blocks

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add note about geoshape agg not supported for visualizations

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _query-dsl/aggregations/bucket/geohash-grid.md

Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Add editorial comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Reworded bounds

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-18 10:58:30 -04:00
kolchfa-aws 6c83dfd87c
Add k-NN Faiss filtering documentation (#4476)
* Add k-NN Faiss filtering documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Move the note

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add faiss and a filter table

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Refactor boolean filtering section

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Clarified that Faiss works with hnsw only

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add more Faiss filtering information

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Apply suggestions from code review

Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _search-plugins/knn/filter-search-knn.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Implemented editorial comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Implemented one more editorial comment

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-18 10:57:53 -04:00
kolchfa-aws 06665364fd
Update model access control documentation (#4552)
* Update model access control documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Remove duplicated info

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add tech review comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add tech review comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Reword registering model

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Reword registering model

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Clarification for model size

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _ml-commons-plugin/api.md

Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _ml-commons-plugin/model-access-control.md

Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _ml-commons-plugin/api.md

Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Add tech review comment

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _ml-commons-plugin/api.md

Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Reworded for clarity

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-18 10:55:58 -04:00
Melissa Vagi d90ec83738
[DOC] Add new property setting fast_double_writer to install documentation (#4580)
* add new property setting

---------

Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-17 16:07:23 -06:00
Chris Moore 49e8391d86
Add documentation for OCSF field mapping and correlation engine API (#4549)
* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* add missing param descriptions (#4555)

Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* Revert "fix#4500 ocsf fields and api"

This reverts commit c6db296b2e30dd9e201cdf510d77e1af7335801d.

merge conflict with same edits on another branch#

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* Revert "fix#4500 ocsf fields and api"

This reverts commit 7a70dc39644b5020685015245d755131c2264e03.

merge conflict with second branch
:wq

* Revert "fix#4500 ocsf fields and api"

This reverts commit ef13a74b403984e0c205a79119ec301f90b7dcc1.

* fix#4500 edits post merge conflict

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#4500 ocsf fields and api

Signed-off-by: cwillum <cwmmoore@amazon.com>

---------

Signed-off-by: cwillum <cwmmoore@amazon.com>
Signed-off-by: Subhobrata Dey <sbcd90@gmail.com>
Co-authored-by: Subhobrata Dey <sbcd90@gmail.com>
2023-07-17 13:52:13 -07:00
Melissa Vagi 0795e4d1e8
Add anomaly detection visualizations documentation (#4091)
* Add anomaly detection visualizations documentation

---------

Signed-off-by: vagimeli <vagimeli@amazon.com>
Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Heather Halter <HDHALTER@AMAZON.COM>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-17 11:24:44 -06:00
astephanus 80237e2e68
Toc keyboard navigation (#4497)
* Adds keyboard navigation to table of content links

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds table of contents scroll and item focus management to the current page or the first toc item

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Add space key capture to the toc expand/collapse arrows

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds escape key support for expand/collapse of toc categories on the category label

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds missing aria-role and aria-current attributes to toc affordances

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Changes the function of the space bar to navigate to a toc parent category item instead of only expand its children

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds arrow up/down key support to toc navigation

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds missing accessibility attribute handling to the toc

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Corrects arrow key handling of keyboard navigation of the toc

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds padding to allow for the keyboard focus rectangle

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes explicit tabindex values for the toc navigation

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes auto focus of toc navigation items on page load; refactors navigation panel scroll into view logic to account for the sticky version selector

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes keyboard focus trap on search field for the tab key

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Unifies navigation item focus state for top level items and sub navigation items

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes the expand/collapse navigation buttons from being tab focusable

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Corrects navigation item spacing to permit visible focus rectangles

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Implements full arrow navigation for the toc items according to the w3c tree view navigation pattern

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Adds reference link to the w3c documentation about the tree view navigation to the arrow key toc navigation javascript

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Account for the difference between the navigation panel height, and the viewport height when auto scrolling the toc item of the current page

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Corrects keyboard navigation focus rectangles from being slightly obscured on the bottom

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Corrects aria and role attributes according to the navigation tree pattern as opposed to the disclosure pattern

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Corrects Jekyll include parameter assignment syntax error

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes aria-expanded setting from the templates since it is unrealiable to determine without iterating through the entire tree to determine if one of its children of children is the current page

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Moves setting of aria-expanded attributes to a runtime behavior, and corrects arrow left/right behavior on navigation tree items

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Ensures unique navigation menu element ids; conditionally sets aira-owns and aria-current attributes

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

* Removes JavaScript that is unused following refactoring tree view navigation; adds comments explaining choices

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>

---------

Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>
2023-07-17 10:11:42 -07:00
Melissa Vagi 72d120f327
[DOC] Add documentation for alerting dashboards and visualizations (#4024)
* Add documentation for alerting dashboards and visualizations

Signed-off-by: Melissa Vagi <vagimeli@amazon.com>

---------

Signed-off-by: vagimeli <vagimeli@amazon.com>
Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-17 09:12:47 -06:00
kolchfa-aws 33e3d77816
Add Lucene byte vector documentation (#4475)
* Add Lucene byte vector documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add limitation note

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Tech review feedback

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Reworded data_type description

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update knn-index.md

Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _search-plugins/knn/knn-index.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Add a performance note

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-14 17:28:35 -04:00
Jay Deng a7da897b7a
Add thread level details to _tasks API (#4542)
* Add thread level details to _tasks API

Signed-off-by: Jay Deng <jayd0104@gmail.com>

* Rewording according to style guide and formatting changes

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _api-reference/tasks.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update tasks.md

Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

---------

Signed-off-by: Jay Deng <jayd0104@gmail.com>
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Fanit Kolchina <kolchfa@amazon.com>
Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-14 17:28:09 -04:00
kolchfa-aws 5722fea376
Add partial flat object documentation (#4477)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-14 17:27:53 -04:00
astephanus fb93cae959
Updates the top navigation items to match that of the project website (#4560)
Signed-off-by: Aaron Stephanus <taoist.futility@pm.me>
2023-07-14 14:27:38 -07:00
kolchfa-aws 8a7492757e
Add rerank and its versions to style workflow (#4573)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-14 17:05:21 -04:00
kolchfa-aws 480589cda1
Search pipeline GA documentation (#4553)
* Search pipeline GA documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add ad-hoc pipelines and ignore failure flag

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Rewording

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update script-processor.md

Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _search-plugins/search-pipelines/index.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _search-plugins/search-pipelines/index.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-14 16:28:27 -04:00
Heather Halter 2e1773f85e
remove-almalinux (#4558)
Signed-off-by: Heather Halter <hdhalter@amazon.com>
2023-07-14 11:11:29 -07:00
Naarcha-AWS adae164d53
Add obfuscate processor (#4515)
* Add obfuscate processor reference

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* fix typo

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Fix paragraph description.

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Fix consistency issues

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Apply suggestions from code review

Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>

---------

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-14 12:44:01 -05:00
kolchfa-aws fb84435f62
Add extensions documentation (#4202)
* Add extensions documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Editing

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _developer-documentation/extensions.md

Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Implemented doc review comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add more links

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _developer-documentation/index.md

Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Remove javadoc until the release

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Change links to hosted site

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Chris Moore <107723039+cwillum@users.noreply.github.com>
Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
2023-07-13 17:59:40 -04:00
kolchfa-aws f0b86602ed
Add search pipeline metrics to Nodes Stats API (#4548)
* Add search pipeline metrics to Nodes Stats API

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add note about tags

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Add a sentence about expanding the response

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-13 14:51:14 -04:00
Melissa Vagi 583eecbcff
[DOC] Update Management navigation interface in dashboards for UX revisions and add index management tutorial (#4550)
* Update Management navigation interface images and terminology 

Signed-off-by: Melissa Vagi <vagimeli@amazon.com>

---------

Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-13 12:21:33 -05:00
Nathan Bower 2904d1ba5d
Update naming conventions (#4551)
Signed-off-by: natebower <102320899+natebower@users.noreply.github.com>
2023-07-13 10:51:02 -04:00
kolchfa-aws 02f40d7efd
Refactor metric aggregation section (#4543)
* Refactor metric aggregation section

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _query-dsl/aggregations/metric/matrix-stats.md

Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Update _query-dsl/aggregations/metric/extended-stats.md

Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
2023-07-12 11:39:20 -04:00
Heather Halter 3567e8b90a
replaced stack management (#4541)
Signed-off-by: Heather Halter <hdhalter@amazon.com>
2023-07-11 10:58:23 -07:00
kolchfa-aws d2f5d7f44e
Add substitution rules for geo words (#4535)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-07 17:18:12 -04:00
kolchfa-aws 8ec8a16663
Add geohash grid aggregation parameters (#4530)
* Add geohash grid aggregation parameters

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Implement editorial comments

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-07 17:09:15 -04:00
Nathan Bower 9be798276a
Add geo terms (#4532)
Signed-off-by: natebower <102320899+natebower@users.noreply.github.com>
2023-07-07 17:01:30 -04:00
kolchfa-aws f792b2b9a3
Fix geo words and nav order (#4529)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-07 16:51:01 -04:00
kolchfa-aws 178a7d5301
Add compound query types documentation (#4390)
* Add compound query documentation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add function score queries

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add a geospatial example

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add minimum should match parameter

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Updated boosting response

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Update _query-dsl/query-dsl/compound/constant-score.md

Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

* Reword example

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Melissa Vagi <vagimeli@amazon.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-07 14:03:30 -04:00
Chris Moore 07c4019e33
Add new zip for example SAML configuration files that reflect latest version (#3665)
* Add new zip for example SAML configuration files that reflect latest version

These changes add a new saml-example-custom.zip file containing `customize-docker-compose.yml`, `customize-config.yml`, and `customize-opensearch-dashboards.yml` files for use as the fully functioning SAML example. These changes also include edits to documentation so that steps accord with the new files.

* fix#618 saml example download

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#618 saml example download

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#618 saml example download

Signed-off-by: cwillum <cwmmoore@amazon.com>

* fix#618 saml example download

Signed-off-by: cwillum <cwmmoore@amazon.com>

* Apply suggestions from code review

Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>

---------

Signed-off-by: cwillum <cwmmoore@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
2023-07-06 16:59:26 -05:00
kolchfa-aws ebb315e525
Refactor bucket aggregations section (#4512)
* Refactor bucket aggregations section

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add geotile grid aggregation

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Fix capitalization

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-06 12:55:44 -04:00
Alexsandro Luiz Specht 29532894e4
Adding max_analyzer_offset setting on highlight (#4501)
Signed-off-by: Alexsandro Specht <alexsandrospecht@gmail.com>
2023-07-06 10:53:54 -04:00
jiapinw 44e397c932
[Fix] add documentation regarding usage of filter/post_filter in k-NN… (#4494)
* [Fix] add documentation regarding usage of filter/post_filter in k-NN plugin

Signed-off-by: jiapinw <jiapinw@amazon.com>

* Revise doc update based on comments and offline discussions

Signed-off-by: jiapinw <jiapinw@amazon.com>

* Update doc based on comments

Signed-off-by: jiapinw <jiapinw@amazon.com>

* Update _search-plugins/knn/filter-search-knn.md

Co-authored-by: Nathan Bower <nbower@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>

---------

Signed-off-by: jiapinw <jiapinw@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Co-authored-by: Nathan Bower <nbower@amazon.com>
2023-07-06 10:18:00 -04:00
Powershellfish d78bd5b70e
Update capitalization for Events (#4213)
Signed-off-by: Powershellfish <47839113+powershellfish@users.noreply.github.com>
2023-07-05 13:50:27 -05:00
Peter Nied 8d1b2682f4
Add warning about plugin permission (#4383)
* Add warning about plugin permission

I didn't see any documentation that described what an installed plugin can do - and it would be good to make sure cluster operators have expectations described somewhere.

* Update plugins.md

* Update _install-and-configure/plugins.md

Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Signed-off-by: Peter Nied <peternied@hotmail.com>

* Update _install-and-configure/plugins.md

Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Signed-off-by: Peter Nied <peternied@hotmail.com>

* Incorperate cwillum's feedback

Signed-off-by: Peter Nied <peternied@hotmail.com>
Co-authored-by: cwillum <cwmmoore@amazon.com>

---------

Signed-off-by: Peter Nied <peternied@hotmail.com>
Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Co-authored-by: cwillum <cwmmoore@amazon.com>
2023-07-05 13:12:54 -05:00
kolchfa-aws b2e62349f3
Update style workflow (#4472)
* Update style workflow with sigv4 and sharding

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Change heading capitalization to work with colons

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add more words

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Ignore lowercase k in k-NN

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Add sharding

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-07-05 10:01:16 -04:00
kolchfa-aws 5d43fa1be6
Fix link in object fields (#4434)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-06-29 18:56:40 -04:00
kolchfa-aws 6203a3b197
Update docker version for 2.x (#4451)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-06-29 18:28:28 -04:00
kolchfa-aws 073c1b46a8
Add 1.3.11 to version history (#4436)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-06-29 17:08:22 -04:00
Nathan Bower 8dab248bb0
Add terms (#4439)
Signed-off-by: natebower <102320899+natebower@users.noreply.github.com>
2023-06-29 15:36:52 -04:00
Jacob G 4984cfe724
Fix incorrect documentation in index-document.md and update-document.md (#4420)
Signed-off-by: Jacob Glickman <jhg023@bucknell.edu>
2023-06-29 10:15:29 -04:00
Nathan Bower 81836baabe
Add images section (#4412)
Signed-off-by: natebower <102320899+natebower@users.noreply.github.com>
2023-06-28 15:58:46 -04:00
Darshit Chanpura 31c8e1e0c1
Adds documentation for rest admin api permissions feature (#4257)
* Adds documentation for rest admin api permissions feature

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>

* Address PR feedback

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>

* Address CI check failure

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>

* Addresses PR feedback

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>

* Fixes grammar and styles

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>

---------

Signed-off-by: Darshit Chanpura <dchanp@amazon.com>
2023-06-28 12:13:35 -07:00
Vamsi Manohar 965ffbafd4
Updated Prometheus Metrics Documentation (#4410)
* Updated Prometheus Metrics Documentation

Signed-off-by: Vamsi Manohar <reddyvam@amazon.com>

* Apply suggestions from code review

Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Signed-off-by: Vamsi Manohar <reddyvam@amazon.com>

---------

Signed-off-by: Vamsi Manohar <reddyvam@amazon.com>
Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
2023-06-28 15:03:37 -04:00
Heather Halter 25e64f7f74
Addressing Tar installation feedback (#4392)
* updated step 2

Signed-off-by: Heather Halter <hdhalter@amazon.com>

* fixed capitalization

Signed-off-by: Heather Halter <hdhalter@amazon.com>

---------

Signed-off-by: Heather Halter <hdhalter@amazon.com>
2023-06-26 18:33:07 -07:00
Destin 0b859900a1
Correct nested.md example (#4352)
* Update nested.md

Update nested.md with a query examples that showcase nested features as intended.

Signed-off-by: Destin <8732109+destinf@users.noreply.github.com>

* Apply text suggestions from code review

Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
Signed-off-by: Destin <8732109+destinf@users.noreply.github.com>

---------

Signed-off-by: Destin <8732109+destinf@users.noreply.github.com>
Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
2023-06-26 18:11:40 -04:00
Naarcha-AWS 3527245634
Add additional ML cluster settings (#4341)
* Add experimental ML settings

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>

* Apply suggestions from code review

Add tech review feedback

Co-authored-by: Yaliang Wu <ylwu@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>

---------

Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
Signed-off-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
Co-authored-by: Yaliang Wu <ylwu@amazon.com>
2023-06-23 11:47:22 -05:00
Heather Halter f42bda00a6
updatestomigrationdoc (#4343)
Signed-off-by: Heather Halter <hdhalter@amazon.com>
2023-06-22 09:30:49 -05:00
kolchfa-aws 27e6e9210c
Update links in field types index (#4379)
Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
2023-06-21 15:59:04 -04:00
kolchfa-aws b21b096f6c
Reformat supported field types index page (#4349)
* Reformat supported field types index page

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

* Reorder search TOC topics

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>

---------

Signed-off-by: Fanit Kolchina <kolchfa@amazon.com>
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
2023-06-20 22:13:54 -04:00
kolchfa-aws 548249bdd1
Update nested.md (#4363)
Signed-off-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com>
2023-06-20 18:23:42 -04:00