Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation for the UBI plugin #7284

Merged
merged 117 commits into from
Jul 3, 2024
Merged

Conversation

RasonJ
Copy link
Contributor

@RasonJ RasonJ commented May 31, 2024

Description

This organizes User Behavior Insights documentation in the OS documentation repos

Issues Resolved

A dearth of UBI documentation

Version

2.14/2.15

Checklist

  • [ x] By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and subject to the Developers Certificate of Origin.
    For more information on following Developer Certificate of Origin and signing off your commits, please check here.

@kolchfa-aws kolchfa-aws self-assigned this Jun 5, 2024
@RasonJ RasonJ marked this pull request as ready for review June 6, 2024 16:39
@hdhalter hdhalter added 4 - Doc review PR: Doc review in progress v2.15.0 release-notes PR: Include this PR in the automated release notes labels Jun 6, 2024
@hdhalter
Copy link
Contributor

hdhalter commented Jun 6, 2024

Should we close #6625 in favor of this one?

@epugh
Copy link
Collaborator

epugh commented Jun 7, 2024

Should we close #6625 in favor of this one?

Done

@epugh
Copy link
Collaborator

epugh commented Jun 8, 2024

@RasonJ take a look at the changes.. I've taken a pass through the text, updated a lot of links to point to final repos, and tried to dedupe some content.

I put all the Chorus katas under one link, though I could see listing each one in that table to draw more attention to them?

Copy link
Collaborator

@epugh epugh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything from my perspective looks good, however since I was involved in the project, I'd love another set of external eyes! I may be too close to the material.

@kolchfa-aws
Copy link
Collaborator

@RasonJ Could you please fix DCO and then I'll review the PR and will put it through editorial review? I assume this is still going into 2.15? Thanks!

@kolchfa-aws
Copy link
Collaborator

@RasonJ Thanks for fixing the DCO! It looks like you picked up several extraneous commits along the way. Could you resolve this?

@kolchfa-aws
Copy link
Collaborator

Almost there 😄 There are still some extraneous commits in the middle. Let me know when this is ready for review. Thanks!


To summarize, the `query_id` signals the beginning of a unique search for a client tracked through a `client_id`. The search returns various objects, each with a unique `object_id`. The `action_name` specifies what action the user is performing and is connected to the objects, each with a specific `object_id`. You can differentiate between types of objects by inspecting the `object_id_field`.

Typically, you can infer the user's overall search history by retrieving all the data for the user's `client_id` and inspecting the individual `query_id` data. Each application decides what makes a search session by examining the data in the backend.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The meaning of the second sentence is unclear. Do we mean "Each application determines what constitutes a search session by examining the backend data"?

order by query_id, timestamp
```

The results are truncated to show a few sessions, as shown in the following table.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"a few" is ambiguous here. I would normally suggest "only a few", but there appear to be far more than that. Can we revise for clarity?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revised to "sample"

{: .note}


The resulting visualization may not be exactly what you're looking for. The `message` field is updated with every event, and as a result, it can contain error messages, debug messages, click information, and other unwanted data.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do we mean by "may not be exactly what you're looking for"? Can we be a little more precise? Do we mean something like "may not appear as expected"?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded



The resulting visualization may not be exactly what you're looking for. The `message` field is updated with every event, and as a result, it can contain error messages, debug messages, click information, and other unwanted data.
To view only search terms for query events, you need to add a filter to your visualization. Because the developer provided a `message_type` of `QUERY` for each search event, you can filter by that message type to isolate the specific users' searches. To do this, select **Add filter** and then select **QUERY** in the **Edit filter** panel, as shown in the following image.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Who is "the developer"? Can we please remove/rephrase?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Reworded

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>
Copy link
Collaborator

@natebower natebower left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hdhalter @epugh @RasonJ All requested changes appear to have been addressed, with the exception of line 326 in sql-queries.md. I am fine with any or no resolution on line 125 in schemas.md and line 168 in sql-queries.md. Otherwise, LGTM. Thanks!

hdhalter added 3 commits July 3, 2024 14:00
Removed links on 'object_id' and 'query_id'

Signed-off-by: Heather Halter <[email protected]>
removed a note tag and fixed line 326

Signed-off-by: Heather Halter <[email protected]>
One more table heading

Signed-off-by: Heather Halter <[email protected]>
@hdhalter hdhalter changed the title Initial UBI documentation Add documentation for the UBI plugin Jul 3, 2024
@hdhalter hdhalter added 3 - Done Issue is done/complete and removed 5 - Editorial review PR: Editorial review in progress labels Jul 3, 2024
@hdhalter hdhalter merged commit 5db02ca into opensearch-project:main Jul 3, 2024
6 checks passed
opensearch-trigger-bot bot pushed a commit that referenced this pull request Jul 3, 2024
* gathering potential documentation attempts

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

* considering the dashboard tutorial

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

* place holder for js data structure usage

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

* data-structures placeholder

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

* Updating index links

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

* adding old doc to be merged

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

* Starting to link things together

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

* fix broken link

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

* respond to vale

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

* more vale violations

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

* name files consistently with docs site and fix links.

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

* vale

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

* Minor tweaks.  Moved Ubi under SEARCH.

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

* add label for versining of spec and OS version

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

* try to sort out vale error

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

* Converting mermaid diagrams to png's

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

* Updating query_id mermaid code

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

* Better way to ignore the mermaid scripts in the md files

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

* description updates

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

* schema.md updating (still need to update the mermaid diagram)

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

* schema updates

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

* updates

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

* Rebuilding main

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

* merging in images

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

* Updating UBI spec number

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

* Use released version

Signed-off-by: Eric Pugh <[email protected]>

* Update _search-plugins/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Adding dsl intro

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

* Adding intro sentence

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

* Title adjust

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing pr feedback

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

* Addressing PR feedback

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

* Fixing vale errors

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

* Apply suggestions from code review

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

* Finishing initial pr feedback

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

* Next round of PR feedback

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

* Describing chorus workbench link

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

* Adding captions for result tables

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

* PR clean up

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

* Apply suggestions from code review

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

* Adding a few more suggestions

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* updating query filter for laptos

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Apply suggestions from code review

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

* Apply suggestions from code review

Edits to all files to comply with OpenSearch standards; nav_order updates

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

* Apply suggestions from code review

Missed a file - more commits to the sql-query topic

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

Cleaned up the sample query topic

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

Accepted editorial suggestions.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update index.md

Reformatted table info

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

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

* Update index.md

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

* Update schemas.md

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

* Update index.md

Added a missing link and fixed the table.

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

* Update index.md

Changed the bold to italics

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

* Update ubi-dashboard-tutorial.md

Removed unnecessary note tag.

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

* Update schemas.md

Inserted comma

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

* Update sql-queries.md

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

* Apply suggestions from code review

There were some hidden comments that I found in this file.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _search-plugins/ubi/sql-queries.md

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/schemas.md

Signed-off-by: kolchfa-aws <[email protected]>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>

* Update schemas.md

Removed links on 'object_id' and 'query_id'

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

* Update sql-queries.md

removed a note tag and fixed line 326

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

* Update sql-queries.md

One more table heading

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

---------

Signed-off-by: RasonJ <[email protected]>
Signed-off-by: Eric Pugh <[email protected]>
Signed-off-by: Heather Halter <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>
Co-authored-by: Eric Pugh <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
Co-authored-by: Heather Halter <[email protected]>
Co-authored-by: Nathan Bower <[email protected]>
(cherry picked from commit 5db02ca)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
leanneeliatra pushed a commit to leanneeliatra/opensearch-documentation-website-forl that referenced this pull request Jul 24, 2024
* gathering potential documentation attempts

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

* considering the dashboard tutorial

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

* place holder for js data structure usage

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

* data-structures placeholder

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

* Updating index links

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

* adding old doc to be merged

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

* Starting to link things together

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

* fix broken link

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

* respond to vale

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

* more vale violations

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

* name files consistently with docs site and fix links.

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

* vale

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

* Minor tweaks.  Moved Ubi under SEARCH.

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

* add label for versining of spec and OS version

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

* try to sort out vale error

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

* Converting mermaid diagrams to png's

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

* Updating query_id mermaid code

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

* Better way to ignore the mermaid scripts in the md files

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

* description updates

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

* schema.md updating (still need to update the mermaid diagram)

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

* schema updates

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

* updates

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

* Rebuilding main

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

* merging in images

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

* Updating UBI spec number

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

* Use released version

Signed-off-by: Eric Pugh <[email protected]>

* Update _search-plugins/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Adding dsl intro

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

* Adding intro sentence

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

* Title adjust

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing pr feedback

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

* Addressing PR feedback

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

* Fixing vale errors

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

* Apply suggestions from code review

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

* Finishing initial pr feedback

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

* Next round of PR feedback

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

* Describing chorus workbench link

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

* Adding captions for result tables

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

* PR clean up

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

* Apply suggestions from code review

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

* Adding a few more suggestions

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* updating query filter for laptos

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Apply suggestions from code review

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

* Apply suggestions from code review

Edits to all files to comply with OpenSearch standards; nav_order updates

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

* Apply suggestions from code review

Missed a file - more commits to the sql-query topic

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

Cleaned up the sample query topic

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

Accepted editorial suggestions.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update index.md

Reformatted table info

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

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

* Update index.md

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

* Update schemas.md

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

* Update index.md

Added a missing link and fixed the table.

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

* Update index.md

Changed the bold to italics

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

* Update ubi-dashboard-tutorial.md

Removed unnecessary note tag.

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

* Update schemas.md

Inserted comma

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

* Update sql-queries.md

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

* Apply suggestions from code review

There were some hidden comments that I found in this file.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _search-plugins/ubi/sql-queries.md

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/schemas.md

Signed-off-by: kolchfa-aws <[email protected]>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>

* Update schemas.md

Removed links on 'object_id' and 'query_id'

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

* Update sql-queries.md

removed a note tag and fixed line 326

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

* Update sql-queries.md

One more table heading

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

---------

Signed-off-by: RasonJ <[email protected]>
Signed-off-by: Eric Pugh <[email protected]>
Signed-off-by: Heather Halter <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>
Co-authored-by: Eric Pugh <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
Co-authored-by: Heather Halter <[email protected]>
Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: [email protected] <[email protected]>
sandervandegeijn pushed a commit to sandervandegeijn/documentation-website that referenced this pull request Jul 30, 2024
* gathering potential documentation attempts

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

* considering the dashboard tutorial

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

* place holder for js data structure usage

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

* data-structures placeholder

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

* Updating index links

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

* adding old doc to be merged

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

* Starting to link things together

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

* fix broken link

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

* respond to vale

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

* more vale violations

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

* name files consistently with docs site and fix links.

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

* vale

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

* Minor tweaks.  Moved Ubi under SEARCH.

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

* add label for versining of spec and OS version

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

* try to sort out vale error

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

* Converting mermaid diagrams to png's

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

* Updating query_id mermaid code

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

* Better way to ignore the mermaid scripts in the md files

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

* description updates

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

* schema.md updating (still need to update the mermaid diagram)

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

* schema updates

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

* updates

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

* Rebuilding main

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

* merging in images

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

* Updating UBI spec number

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

* Use released version

Signed-off-by: Eric Pugh <[email protected]>

* Update _search-plugins/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/index.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Update _search-plugins/ubi/data-structures.md

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

* Adding dsl intro

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

* Adding intro sentence

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

* Title adjust

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Addressing PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Addressing pr feedback

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

* Addressing PR feedback

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

* Fixing vale errors

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

* Apply suggestions from code review

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

* Finishing initial pr feedback

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

* Next round of PR feedback

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

* Describing chorus workbench link

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

* Adding captions for result tables

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

* PR clean up

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

* Apply suggestions from code review

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

* Adding a few more suggestions

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* updating query filter for laptos

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Update _search-plugins/ubi/ubi-dashboard-tutorial.md

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

* PR feedback

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

* Apply suggestions from code review

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

* Apply suggestions from code review

Edits to all files to comply with OpenSearch standards; nav_order updates

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

* Apply suggestions from code review

Missed a file - more commits to the sql-query topic

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

Cleaned up the sample query topic

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

Accepted editorial suggestions.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update index.md

Reformatted table info

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

* Update _search-plugins/ubi/dsl-queries.md

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

* Apply suggestions from code review

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

* Update index.md

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

* Update schemas.md

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

* Update index.md

Added a missing link and fixed the table.

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

* Update index.md

Changed the bold to italics

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

* Update ubi-dashboard-tutorial.md

Removed unnecessary note tag.

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

* Update schemas.md

Inserted comma

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

* Update sql-queries.md

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

* Apply suggestions from code review

There were some hidden comments that I found in this file.

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Heather Halter <[email protected]>

* Update _search-plugins/ubi/sql-queries.md

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

* Update _search-plugins/ubi/sql-queries.md

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

* Apply suggestions from code review

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

* Update _search-plugins/ubi/schemas.md

Signed-off-by: kolchfa-aws <[email protected]>

* Apply suggestions from code review

Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>

* Update schemas.md

Removed links on 'object_id' and 'query_id'

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

* Update sql-queries.md

removed a note tag and fixed line 326

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

* Update sql-queries.md

One more table heading

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

---------

Signed-off-by: RasonJ <[email protected]>
Signed-off-by: Eric Pugh <[email protected]>
Signed-off-by: Heather Halter <[email protected]>
Signed-off-by: kolchfa-aws <[email protected]>
Co-authored-by: Eric Pugh <[email protected]>
Co-authored-by: kolchfa-aws <[email protected]>
Co-authored-by: Heather Halter <[email protected]>
Co-authored-by: Nathan Bower <[email protected]>
Signed-off-by: Sander van de Geijn <[email protected]>
@kolchfa-aws kolchfa-aws mentioned this pull request Dec 4, 2024
1 task
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
3 - Done Issue is done/complete backport 2.15 release-notes PR: Include this PR in the automated release notes v2.15.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants