Commit Graph
204 Commits
Author SHA1 Message Date
Samuel Valdes Gutierrez bd14c328b6 Fixing error in java client documentation for creating indexes (#5354)
Signed-off-by: Samuel Valdes Gutierrez <[email protected]>
2023-10-26 14:17:00 -05:00
Heather Halter e907d90fcc Update java-rest-high-level.md (#4880)
Updated text as per #4844

Signed-off-by: Heather Halter <[email protected]>
2023-08-24 16:43:14 -07:00
Vacha Shah 476e2d6422 Correcting the java client code snippets and updating java client version (#4789)
Signed-off-by: Vacha Shah <[email protected]>
2023-08-15 16:00:32 -04:00
Will Li e826465046 remove redundant space (#4664)
Signed-off-by: Will Li <[email protected]>
2023-08-02 13:19:54 -04:00
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) <[email protected]>
2023-07-18 10:08:56 -07:00
kolchfa-aws 9209c0a6bc Fix links for link checker (#4309)
Signed-off-by: Fanit Kolchina <[email protected]>
2023-06-13 15:06:50 -04:00
Heather Halterandkolchfa-aws 09aa024b55 Update version and add link to examples - Javascript client (#4224)
* addlinktoguides

Signed-off-by: Heather Halter <[email protected]>

* addslinktohelperfile

Signed-off-by: Heather Halter <[email protected]>

* addedlinktohelper

Signed-off-by: Heather Halter <[email protected]>

* Update _clients/javascript/index.md

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _clients/javascript/helpers.md

Co-authored-by: kolchfa-aws <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

---------

Signed-off-by: Heather Halter <[email protected]>
Signed-off-by: Heather Halter <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
2023-06-06 15:50:47 -07:00
Andriy Redko 3ff62a8a6c Fix RestClientTransport code snippets (#4149)
Signed-off-by: Andriy Redko <[email protected]>
2023-05-23 12:49:19 -04:00
Bob Kinney c8b0929fb6 Add notice about pre-release (#3428)
Adding notice to docs per suggestion in https://github.com/opensearch-project/opensearch-net/issues/166
2023-05-17 12:56:24 -05:00
Heather HalterandNaarcha-AWS ee7d1efd02 More redirects and spelling fixes (#4093)
* redirects and spelling

Signed-off-by: Heather Halter <[email protected]>

* Update _observing-your-data/ad/index.md

Co-authored-by: Naarcha-AWS <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _observing-your-data/ad/index.md

Co-authored-by: Naarcha-AWS <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _search-plugins/knn/index.md

Co-authored-by: Naarcha-AWS <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

---------

Signed-off-by: Heather Halter <[email protected]>
Signed-off-by: Heather Halter <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
2023-05-17 09:57:14 -07:00
Heather Halter fa80af23e5 fixtypo (#4075)
Signed-off-by: Heather Halter <[email protected]>
2023-05-15 11:23:23 -05:00
astephanusandFanit Kolchina 1fb5252cd6 Adds collections landing page configuration and navigation header linking (#3812)
* Adds collections landing page configuration and navigation header linking

Signed-off-by: Aaron Stephanus <[email protected]>

* Removes unnecessary collection property from the configuration.

Signed-off-by: Aaron Stephanus <[email protected]>

* Adds links to navigation collection headers to collection index pages based on the collection name

Signed-off-by: Aaron Stephanus <[email protected]>

* Hide index pages from view and add info to formatting guide

Signed-off-by: Fanit Kolchina <[email protected]>

---------

Signed-off-by: Aaron Stephanus <[email protected]>
Signed-off-by: Fanit Kolchina <[email protected]>
Co-authored-by: Fanit Kolchina <[email protected]>
2023-05-11 13:56:08 -04:00
kolchfa-aws e9db6d6043 Small fixes and redirects (#4002)
Signed-off-by: Fanit Kolchina <[email protected]>
2023-05-04 17:47:17 -04:00
kolchfa-aws 8463c8f278 Correct plugin capitalization (#3838)
* Correct plugin capitalization

Signed-off-by: Fanit Kolchina <[email protected]>

* Revert cluster-stats because the name is in response

Signed-off-by: Fanit Kolchina <[email protected]>

* Revert cluster-stats once more

Signed-off-by: Fanit Kolchina <[email protected]>

---------

Signed-off-by: Fanit Kolchina <[email protected]>
2023-05-04 11:11:54 -04:00
Vacha Shah 9a3e49a2f2 Update java client version (#3753)
Signed-off-by: Vacha Shah <[email protected]>
2023-04-11 17:09:42 -04:00
Daniel (dB.) Doubrovkine 680c821937 Add CI with link checker. (#3584)
* Add CI with link checker.

Signed-off-by: dblock <[email protected]>

* Capture URI::InvalidURIError.

Signed-off-by: dblock <[email protected]>

* Use HEAD and catch URI errors.

Signed-off-by: dblock <[email protected]>

* Retry on a 405 with a GET.

Signed-off-by: dblock <[email protected]>

* Replaced external link checker with ruby-link-checker.

Signed-off-by: dblock <[email protected]>

* Don't exit with an exception.

Signed-off-by: dblock <[email protected]>

* Run internal link checker on build/ci.

Signed-off-by: dblock <[email protected]>

* Added broken links issue template.

Signed-off-by: dblock <[email protected]>

* Added host exclusions that 404 or fail on bots.

Signed-off-by: dblock <[email protected]>

* Raise anyway because Jekyll does it for us.

Signed-off-by: dblock <[email protected]>

* Fix broken links.

Signed-off-by: dblock <[email protected]>

* Only run link checker on main.

Signed-off-by: dblock <[email protected]>

* Re-add check-links.sh.

Signed-off-by: dblock <[email protected]>

* Run once a day on cron.

Signed-off-by: dblock <[email protected]>

---------

Signed-off-by: dblock <[email protected]>
2023-04-04 15:49:27 -04:00
Andriy Redko 4e58f94861 Update OpenSearch Java Client documentation: update version, add ApacheHttpClient5Transport, fix code samples (#3510)
* Update OpenSearch Java Client documentation: update version, add ApacheHttpClient5Transport, fix code samples

Signed-off-by: Andriy Redko <[email protected]>

* Address review comments

Signed-off-by: Andriy Redko <[email protected]>

---------

Signed-off-by: Andriy Redko <[email protected]>
2023-03-21 11:01:17 -05:00
Harsha Vamsi Kalluri 7fb9e5b848 Addd examples on how to connect with Sigv4 for AOS and AOSS (#3250)
* Addd examples on how to connect with Sigv4 for AOS and AOSS

Signed-off-by: Harsha Vamsi Kalluri <[email protected]>

* Changed some grammar

Signed-off-by: Harsha Vamsi Kalluri <[email protected]>

* Changed more grammar

Signed-off-by: Harsha Vamsi Kalluri <[email protected]>

---------

Signed-off-by: Harsha Vamsi Kalluri <[email protected]>
2023-03-09 09:47:18 -05:00
kolchfa-aws 921979064f Add deprecation warning to high-level python client (#3007)
Signed-off-by: Fanit Kolchina <[email protected]>
2023-02-21 11:45:06 -05:00
sheltie 94e11ab14d Add response close go client (#2828)
* I think response need to close.
The "Go package documentation" calls the Close method.
https://pkg.go.dev/github.com/opensearch-project/opensearch-go#NewClient

Signed-off-by: sheltie <[email protected]>

* delete defer

Signed-off-by: sheltie <[email protected]>

* Revert "delete defer"

This reverts commit 6852b1c67cdde37c97640f05340354ea51b29fb9.

Signed-off-by: sheltie <[email protected]>

---------

Signed-off-by: sheltie <[email protected]>
2023-02-20 11:47:13 -05:00
kolchfa-aws 4140289357 Refactors the clients index page (#2555)
* Refactors the clients index page

Signed-off-by: Fanit Kolchina <[email protected]>

* Changed C# to .NET

Signed-off-by: Fanit Kolchina <[email protected]>

---------

Signed-off-by: Fanit Kolchina <[email protected]>
2023-02-07 15:41:38 -05:00
Nick Baughman 901bc63959 Replace IndexRequest.Builder.value() call with call to .document() to reflect current state of API (#2658)
Please double-check that this is correct. I'm using `org.opensearch.client:opensearch-java:2.2.0` and `org.opensearch.client:opensearch-rest-client:2.5.0` to try to create a client as per the docs. I noticed that the call to `IndexRequest.Builder.value()` does not work. I believe the correct method name is ``IndexRequest.Builder.document()`
2023-02-07 14:08:03 -05:00
kolchfa-aws 7aa5f40d04 Adds warning to Java high-level REST client (#2557)
Signed-off-by: Fanit Kolchina <[email protected]>
2023-02-02 20:28:00 -05:00
kolchfa-aws b593ca8eed Adds .net client API documentation link (#2513)
Signed-off-by: Fanit Kolchina <[email protected]>
2023-01-30 11:50:42 -05:00
Naarcha-AWS 5bbeac2357 Fix links for 2.5 doc changes. (#2465)
* Fix links for 2.5 doc changes.

Signed-off-by: Naarcha-AWS <[email protected]>

* Add CLI redirect

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
2023-01-24 12:12:21 -06:00
kolchfa-aws bf0c4f8aad Adds generated documentation to clients (#2458)
* Adds generated documentation to clients

Signed-off-by: Fanit Kolchina <[email protected]>

* Reworded as per doc review

Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Fanit Kolchina <[email protected]>
2023-01-24 11:43:08 -05:00
kolchfa-aws c25ff903a1 Adds Rust client documentation (#2342)
* Adds Rust client documentation

Signed-off-by: Fanit Kolchina <[email protected]>

* Added copy buttons and refactored more clients

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated doc review comments

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated doc review feedback

Signed-off-by: Fanit Kolchina <[email protected]>

* One more fix - indexes

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated editorial comments

Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Fanit Kolchina <[email protected]>
2023-01-10 13:49:15 -05:00
Or Bin 10fb6ad585 Typo fix (#2307) 2023-01-04 14:22:11 -06:00
kolchfa-awsandNate Bower a10f13d21b Adds high-level Python client documentation (#2141)
* Adds high-level Python client documentation

Signed-off-by: Fanit Kolchina <[email protected]>

* Adds bulk operations and document class

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated review feedback

Signed-off-by: Fanit Kolchina <[email protected]>

* Apply suggestions from code review

Co-authored-by: Nate Bower <[email protected]>

* Update python-high-level.md

Signed-off-by: Fanit Kolchina <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
2022-12-19 13:06:04 -05:00
Naarcha-AWS 14cceb8390 Add opensearch-py-ml title (#2149)
* Add opensearch-py-ml documentation

Signed-off-by: Naarcha-AWS <[email protected]>

* Add more review feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Add final tech review feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Remove eland link

Signed-off-by: Naarcha-AWS <[email protected]>

* Add Chris' feedback, add correct link to DataFrames

Signed-off-by: Naarcha-AWS <[email protected]>

* Add editorial review and additional feedback.

Signed-off-by: Naarcha-AWS <[email protected]>

* Add additional feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Remove S from sentence transformers

Signed-off-by: Naarcha-AWS <[email protected]>

* Fix typo

Signed-off-by: Naarcha-AWS <[email protected]>

* Add title to opensearch page

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
2022-12-07 13:20:36 -06:00
Naarcha-AWSandNate Bower 0e7d5e89e8 Add opensearch-py-ml documentation (#2071)
* Add opensearch-py-ml documentation

Signed-off-by: Naarcha-AWS <[email protected]>

* Add more review feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Add final tech review feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Remove eland link

Signed-off-by: Naarcha-AWS <[email protected]>

* Add Chris' feedback, add correct link to DataFrames

Signed-off-by: Naarcha-AWS <[email protected]>

* Add editorial review and additional feedback.

Signed-off-by: Naarcha-AWS <[email protected]>

* Add additional feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Remove S from sentence transformers

Signed-off-by: Naarcha-AWS <[email protected]>

* Update _clients/opensearch-py-ml.md

Co-authored-by: Nate Bower <[email protected]>

* Update _clients/opensearch-py-ml.md

Co-authored-by: Nate Bower <[email protected]>

* Fix last typo

Signed-off-by: Naarcha-AWS <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
2022-12-07 12:29:02 -06:00
Theo Nam Truongandkolchfa-aws dc09ea070d Added doc for Ruby Sigv4 (#2089)
* Added doc for Ruby Sigv4

Signed-off-by: Theo Truong <[email protected]>

* Update _clients/ruby.md

Style update

Co-authored-by: kolchfa-aws <[email protected]>

Signed-off-by: Theo Truong <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
2022-12-05 13:16:34 -05:00
kolchfa-aws 63019c421d Puts column headers in sentence case (#1989)
Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Fanit Kolchina <[email protected]>
2022-11-18 15:25:06 -05:00
Naarcha-AWS 4d6a275950 Rework Clients, Tools, and Data Prepper section (#1794)
* Rework Clients, Tools, and Data Prepper section

Signed-off-by: Naarcha-AWS <[email protected]>

* Add new Data Prepper files

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
2022-11-07 12:41:10 -06:00
3017f515b7 Logstash migration guide (#1487)
* Added cluster permissions to cluster permissions list.

Signed-off-by: carolxob <[email protected]>

* Revert "Added cluster permissions to cluster permissions list."

This reverts commit 48a9fb56b7fce308eccf2b4dd8ad6b7c96515a4d.

* Migrated pipelines and migrating from Open Distro.

Signed-off-by: carolxob <[email protected]>

* Migrated Logstash Migration Guide to doc site.

Signed-off-by: carolxob <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Heather Halter <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Heather Halter <[email protected]>

* Removing OpenDistro file.

Signed-off-by: carolxob <[email protected]>

* Reconcile branches.

Signed-off-by: carolxob <[email protected]>

* Apply suggestions from code review

Made changes based on feedback.

Co-authored-by: Nate Bower <[email protected]>

Signed-off-by: carolxob <[email protected]>
Co-authored-by: Heather Halter <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
2022-11-07 09:25:47 -07:00
7d49496097 Migrating from open distro data prepper (#1485)
* Added cluster permissions to cluster permissions list.

Signed-off-by: carolxob <[email protected]>

* Revert "Added cluster permissions to cluster permissions list."

This reverts commit 48a9fb56b7fce308eccf2b4dd8ad6b7c96515a4d.

* Migrated pipelines and migrating from Open Distro.

Signed-off-by: carolxob <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Naarcha-AWS <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Naarcha-AWS <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Naarcha-AWS <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Naarcha-AWS <[email protected]>

* Update _clients/data-prepper/migrate-open-distro.md

Co-authored-by: Naarcha-AWS <[email protected]>

* Minor changes to Next Steps section.

Signed-off-by: carolxob <[email protected]>

* Added a space to get change to push.

Signed-off-by: carolxob <[email protected]>

* Removed space.

Signed-off-by: carolxob <[email protected]>

* Saving file and pushing, no major changes.

Signed-off-by: carolxob <[email protected]>

* Apply suggestions from code review

Co-authored-by: Nate Bower <[email protected]>

Signed-off-by: carolxob <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
2022-11-03 15:28:03 -06:00
Theo Nam Truong bdbf110740 Added Sigv4 Section to JavaScript Client (#1796)
* Added Sigv4 Section to JavaScript Client

Signed-off-by: Theo Truong <[email protected]>

* Adjusted according to style code/headers guide

Signed-off-by: Theo Truong <[email protected]>

Signed-off-by: Theo Truong <[email protected]>
2022-11-03 11:35:56 -05:00
7bb41fe4ce Make API reference top level (#1637)
* Make API reference top level

Signed-off-by: Naarcha-AWS <[email protected]>

* Fix typo on Drag and Drop page (#1633)

* Fix typo on Drag and Drop page

* Update _dashboards/drag-drop-wizard.md

Co-authored-by: Nate Bower <[email protected]>

* Update drag-drop-wizard.md

Co-authored-by: Nate Bower <[email protected]>

* Putting all the Docker install material on a single page (#1452)

* Putting all the Docker install material on a single page

Signed-off-by: JeffH-AWS <[email protected]>

* Making room for revamp

Signed-off-by: JeffH-AWS <[email protected]>

* Intro added

Signed-off-by: JeffH-AWS <[email protected]>

* Continuing to flesh out the intro section and overview

Signed-off-by: JeffH-AWS <[email protected]>

* Overview finalized

Signed-off-by: JeffH-AWS <[email protected]>

* Introducing docker compose

Signed-off-by: JeffH-AWS <[email protected]>

* Added link to compose

Signed-off-by: JeffH-AWS <[email protected]>

* Continuing docker image commentary

Signed-off-by: JeffH-AWS <[email protected]>

* Sometimes I wonder if anyone reads these

Signed-off-by: JeffH-AWS <[email protected]>

* Adding notes on installing compose with pip

Signed-off-by: JeffH-AWS <[email protected]>

* Adding prereqs

Signed-off-by: JeffH-AWS <[email protected]>

* Magnets - how do they work?

Signed-off-by: JeffH-AWS <[email protected]>

* Almonds and peaches are part of the same plant subgenus, Amygdalus

Signed-off-by: JeffH-AWS <[email protected]>

* There are 293 ways to make change for a dollar

Signed-off-by: JeffH-AWS <[email protected]>

* A shark is the only known fish that can blink with both eyes

Signed-off-by: JeffH-AWS <[email protected]>

* A crocodile cannot stick its tongue out

Signed-off-by: JeffH-AWS <[email protected]>

* wording

Signed-off-by: JeffH-AWS <[email protected]>

* Reorganizing a couple paragraphs to make it flow better

Signed-off-by: JeffH-AWS <[email protected]>

* Forgot a word

Signed-off-by: JeffH-AWS <[email protected]>

* Add tip about pruning stopped containers

Signed-off-by: JeffH-AWS <[email protected]>

* Cleaning up

Signed-off-by: JeffH-AWS <[email protected]>

* Add blurb about container ls

Signed-off-by: JeffH-AWS <[email protected]>

* Adding the Docker Compose stuff

Signed-off-by: JeffH-AWS <[email protected]>

* Working on compose

Signed-off-by: JeffH-AWS <[email protected]>

* Continuing work on the compose section - it's a lot of info

Signed-off-by: JeffH-AWS <[email protected]>

* Added important settings

Signed-off-by: JeffH-AWS <[email protected]>

* Updates to settings that need configured

Signed-off-by: JeffH-AWS <[email protected]>

* Still working through compose things

Signed-off-by: JeffH-AWS <[email protected]>

* Fixed wording

Signed-off-by: JeffH-AWS <[email protected]>

* Working through compose commands and guidance

Signed-off-by: JeffH-AWS <[email protected]>

* Reordering/rewording

Signed-off-by: JeffH-AWS <[email protected]>

* More phrasing

Signed-off-by: JeffH-AWS <[email protected]>

* More wording in steps

Signed-off-by: JeffH-AWS <[email protected]>

* More wording in steps

Signed-off-by: JeffH-AWS <[email protected]>

* Organizing

Signed-off-by: JeffH-AWS <[email protected]>

* Adding stuff and things

Signed-off-by: JeffH-AWS <[email protected]>

* Continuing to work through the configuration steps

Signed-off-by: JeffH-AWS <[email protected]>

* Fixes

Signed-off-by: JeffH-AWS <[email protected]>

* Fixes

Signed-off-by: JeffH-AWS <[email protected]>

* Still working on the configuration steps

Signed-off-by: JeffH-AWS <[email protected]>

* Changes

Signed-off-by: JeffH-AWS <[email protected]>

* More work

Signed-off-by: JeffH-AWS <[email protected]>

* Removed perf analyzer - refer to GH issue 1555

Signed-off-by: JeffH-AWS <[email protected]>

* Fixing things

Signed-off-by: JeffH-AWS <[email protected]>

* Adding guidance on passing settings in compose

Signed-off-by: JeffH-AWS <[email protected]>

* Working through dockerfile materials now

Signed-off-by: JeffH-AWS <[email protected]>

* wording

Signed-off-by: JeffH-AWS <[email protected]>

* Finalized the sample dev compose file

Signed-off-by: JeffH-AWS <[email protected]>

* Continuing work with configuration

Signed-off-by: JeffH-AWS <[email protected]>

* Finished - ready for reviews

Signed-off-by: JeffH-AWS <[email protected]>

* Fixed a link I forgot to change before

Signed-off-by: JeffH-AWS <[email protected]>

* Changes from first proofread

Signed-off-by: JeffH-AWS <[email protected]>

* Changed heading

Signed-off-by: JeffH-AWS <[email protected]>

* Addressed reviewer comments and made some changes

Signed-off-by: JeffH-AWS <[email protected]>

* Forgot to incorporate one change. Fixed.

Signed-off-by: JeffH-AWS <[email protected]>

* Final editorial changes

Signed-off-by: JeffH-AWS <[email protected]>

Signed-off-by: JeffH-AWS <[email protected]>

* fix#1584-custom_attr_allowlist (#1636)

Signed-off-by: cwillum <[email protected]>

Signed-off-by: cwillum <[email protected]>

* Update TERMS.md with definition for Setting (#1632)

* fix#1631-Terms-setting

Signed-off-by: cwillum <[email protected]>

* fix#1631-Terms-setting

Signed-off-by: cwillum <[email protected]>

Signed-off-by: cwillum <[email protected]>

* Add disclaimer about remote fs usage and an example of setting env var (#1644)

* Add disclaimer about remote fs usage and an example of setting env var

Signed-off-by: JeffH-AWS <[email protected]>

* Enhanced wording a little bit

Signed-off-by: JeffH-AWS <[email protected]>

Signed-off-by: JeffH-AWS <[email protected]>

* [DOC] New documentation: Self-host maps server (#1625)

* Add new page self-host maps server

Signed-off-by: vagimeli <[email protected]>

* Added new content

Signed-off-by: vagimeli <[email protected]>

* Copy edit

Signed-off-by: vagimeli <[email protected]>

* Tech review edits

Signed-off-by: vagimeli <[email protected]>

* Doc review edits

Signed-off-by: vagimeli <[email protected]>

* Editorial review changes

Signed-off-by: vagimeli <[email protected]>

* Final edits

Signed-off-by: vagimeli <[email protected]>

Signed-off-by: vagimeli <[email protected]>

* Add feedback.

Signed-off-by: Naarcha-AWS <[email protected]>

* Fix links

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: JeffH-AWS <[email protected]>
Signed-off-by: cwillum <[email protected]>
Signed-off-by: vagimeli <[email protected]>
Co-authored-by: Nate Bower <[email protected]>
Co-authored-by: Jeff Huss <[email protected]>
Co-authored-by: Chris Moore <[email protected]>
Co-authored-by: Melissa Vagi <[email protected]>
2022-10-27 11:50:39 -05:00
Naarcha-AWS 15697d9bcf Fix typo in Data Prepper doc (#1550) 2022-10-13 14:53:45 -05:00
2492a54d88 Make sure that Main picks up all change from Data Prepper 2.0 branch (#1517)
* Change Data Prepper intro

Signed-off-by: Naarcha-AWS <[email protected]>

* Add next steps section

Signed-off-by: Naarcha-AWS <[email protected]>

* Add David's feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Fix optional tags

Signed-off-by: Naarcha-AWS <[email protected]>

* Address small typo

* [Data Prepper 2.0]MAINT: documentation change regarding record type (#1306)

* MAINT: documentation change regarding record type

Signed-off-by: Chen <[email protected]>

* MAINT: documentation on trace group fields

Signed-off-by: Chen <[email protected]>

Signed-off-by: Chen <[email protected]>

* Update docs for Data Prepper 2.0 (#1404)

* Update get-started

Signed-off-by: Hai Yan <[email protected]>

* Update pipelines.md

Signed-off-by: Hai Yan <[email protected]>

* Add peer forwarder options to references

Signed-off-by: Hai Yan <[email protected]>

* Add csv processor options to refereces

Signed-off-by: Hai Yan <[email protected]>

* Add docs for conditional routing

Signed-off-by: Hai Yan <[email protected]>

* Add docs for json processor

Signed-off-by: Hai Yan <[email protected]>

* Remove docs for peer forwarder plugin

Signed-off-by: Hai Yan <[email protected]>

* Address review feedback - revise sentences, fix inaccurate info and typos

Signed-off-by: Hai Yan <[email protected]>

* Add missing options for http source and peer forwarder

Signed-off-by: Hai Yan <[email protected]>

* Update ssl options on peer forwarder

Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>

* More updates for Data Prepper 2.0 (#1469)

* Update http source and opensearch sink options

Signed-off-by: Hai Yan <[email protected]>

* Update docker run command

Signed-off-by: Hai Yan <[email protected]>

* Add more missing options

Signed-off-by: Hai Yan <[email protected]>

* Add metadata_root_key for s3 source

Signed-off-by: Hai Yan <[email protected]>

* Address review comments - tweak sentences and fix typos

Signed-off-by: Hai Yan <[email protected]>

* Address review comments

Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>

* Fix broken link

Signed-off-by: Naarcha-AWS <[email protected]>

* Add reworked Getting Started page

Signed-off-by: Naarcha-AWS <[email protected]>

* Undo change for getting started

Signed-off-by: Naarcha-AWS <[email protected]>

* Add edited Data Prepper overview

Signed-off-by: Naarcha-AWS <[email protected]>

* Add edited Data Prepper file

Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Chen <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
Co-authored-by: Qi Chen <[email protected]>
Co-authored-by: Hai Yan <[email protected]>
2022-10-11 16:31:41 -05:00
a1add5db6c Data Prepper 2.0 documentation (#1510)
* Change Data Prepper intro

Signed-off-by: Naarcha-AWS <[email protected]>

* Add next steps section

Signed-off-by: Naarcha-AWS <[email protected]>

* Add David's feedback

Signed-off-by: Naarcha-AWS <[email protected]>

* Fix optional tags

Signed-off-by: Naarcha-AWS <[email protected]>

* Address small typo

* [Data Prepper 2.0]MAINT: documentation change regarding record type (#1306)

* MAINT: documentation change regarding record type

Signed-off-by: Chen <[email protected]>

* MAINT: documentation on trace group fields

Signed-off-by: Chen <[email protected]>

Signed-off-by: Chen <[email protected]>

* Update docs for Data Prepper 2.0 (#1404)

* Update get-started

Signed-off-by: Hai Yan <[email protected]>

* Update pipelines.md

Signed-off-by: Hai Yan <[email protected]>

* Add peer forwarder options to references

Signed-off-by: Hai Yan <[email protected]>

* Add csv processor options to refereces

Signed-off-by: Hai Yan <[email protected]>

* Add docs for conditional routing

Signed-off-by: Hai Yan <[email protected]>

* Add docs for json processor

Signed-off-by: Hai Yan <[email protected]>

* Remove docs for peer forwarder plugin

Signed-off-by: Hai Yan <[email protected]>

* Address review feedback - revise sentences, fix inaccurate info and typos

Signed-off-by: Hai Yan <[email protected]>

* Add missing options for http source and peer forwarder

Signed-off-by: Hai Yan <[email protected]>

* Update ssl options on peer forwarder

Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>

* More updates for Data Prepper 2.0 (#1469)

* Update http source and opensearch sink options

Signed-off-by: Hai Yan <[email protected]>

* Update docker run command

Signed-off-by: Hai Yan <[email protected]>

* Add more missing options

Signed-off-by: Hai Yan <[email protected]>

* Add metadata_root_key for s3 source

Signed-off-by: Hai Yan <[email protected]>

* Address review comments - tweak sentences and fix typos

Signed-off-by: Hai Yan <[email protected]>

* Address review comments

Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>

* Fix broken link

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
Signed-off-by: Chen <[email protected]>
Signed-off-by: Hai Yan <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
Co-authored-by: Qi Chen <[email protected]>
Co-authored-by: Hai Yan <[email protected]>
2022-10-11 11:36:37 -05:00
89f966a0f1 Refactors JS client helper documentation (#1358)
* Fix Circuit Breaker section in JS client docs

Fix #823

Signed-off-by: Robert Da Silva <[email protected]>

* Add documentation for JS client bulk helper

Signed-off-by: Robert Da Silva <[email protected]>

* Refactors js client helper documentation

* Incorporated tech review comments

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated doc review comments

Signed-off-by: Fanit Kolchina <[email protected]>

* Update _clients/javascript/helpers.md

Co-authored-by: Alice Williams <[email protected]>

* Update _clients/javascript/helpers.md

Co-authored-by: Alice Williams <[email protected]>

* Update helpers.md

* Incorporated tech review feedback

Signed-off-by: Fanit Kolchina <[email protected]>

* Implemented editorial comments

Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Robert Da Silva <[email protected]>
Signed-off-by: Fanit Kolchina <[email protected]>
Co-authored-by: Robert Da Silva <[email protected]>
Co-authored-by: Alice Williams <[email protected]>
2022-10-11 12:08:28 -04:00
Jeff Huss 6583bfeeff Fixes broken links in docs page main branch (#1501)
* Fixed broken link in RPM guide

Signed-off-by: JeffH-AWS <[email protected]>

* More fixes

Signed-off-by: JeffH-AWS <[email protected]>

* All done

Signed-off-by: JeffH-AWS <[email protected]>

Signed-off-by: JeffH-AWS <[email protected]>
2022-10-10 09:11:08 -07:00
Deep DattaandNaarcha-AWS e338f77cce Documentation for new parameters in logstash-output-opensearch 2.0.0 (#1263)
* Add documentation for 3 new parameters added in logstash-output-opensearch 2.0.0

Signed-off-by: Deep Datta <[email protected]>

* Update _clients/logstash/ship-to-opensearch.md

Signed-off-by: Deep Datta <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>

* Fix typo

Signed-off-by: Deep Datta <[email protected]>

Signed-off-by: Deep Datta <[email protected]>
Co-authored-by: Naarcha-AWS <[email protected]>
2022-09-27 13:25:15 -05:00
Naarcha-AWS a6e47e02f5 Add the Kubernetes Operator install instructions (#1017)
* Add the Kubernetes Operator install instructions

Signed-off-by: Naarcha-AWS <[email protected]>

* Copy edits

Signed-off-by: Naarcha-AWS <[email protected]>

* Add doc review

Signed-off-by: Naarcha-AWS <[email protected]>

* Add editorial

Signed-off-by: Naarcha-AWS <[email protected]>

Signed-off-by: Naarcha-AWS <[email protected]>
2022-09-21 12:10:05 -07:00
Hai Yan 594715c04c Rename prepper to processor in yaml sample (#1056)
Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>
2022-09-14 15:54:16 -05:00
David Venable e08b786d52 Fixes the metrics-pipeline to use otel_metrics_source which is the correct source plugin here. (#1155)
Signed-off-by: David Venable <[email protected]>

Signed-off-by: David Venable <[email protected]>
2022-09-10 10:32:07 -05:00
kolchfa-aws 60a3722042 Adds Ruby client documentation (#1018)
* Adds Ruby client documentation

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporates doc review comments

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated editorial comments

Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Fanit Kolchina <[email protected]>
2022-09-08 09:38:26 -04:00
kolchfa-aws 441df4c216 Adds bulk operations to Go client. Refactors Go client. (#1038)
* Adds bulk operations to Go client. Refactors Go client.

Signed-off-by: Fanit Kolchina <[email protected]>

* Incorporated editorial comments

Signed-off-by: Fanit Kolchina <[email protected]>

Signed-off-by: Fanit Kolchina <[email protected]>
2022-09-06 10:58:15 -04:00
Hai Yan 2dcdf12bd7 Replace deprecated opensearch sink configuration fields in examples (#1029)
Signed-off-by: Hai Yan <[email protected]>

Signed-off-by: Hai Yan <[email protected]>
2022-08-30 13:06:45 -05:00