Skip to content

Commit

Permalink
Update links to point to the correct repos.
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Jun 8, 2024
1 parent 1b728db commit 3940d12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _search-plugins/ubi/data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ nav_order: 7
---

# Sample client data structures
The client data structures can be used to create events that follow the [UBI event schema specification](https://github.com/o19s/opensearch-ubi),
The client data structures can be used to create events that follow the [UBI event schema specification](https://github.com/o19s/ubi),
which is described in further detail [here]({{site.url}}{{site.baseurl}}/search-plugins/ubi/schemas/).

The developer provides an implementation for the following functions:
Expand Down
4 changes: 2 additions & 2 deletions _search-plugins/ubi/schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ There are 2 separate stores involed in supporting UBI data collection:
### 1) **UBI queries**
All underlying query information and results ([`object_id`](#object_id)'s) are stored in the `ubi_queries` index, and remains largely invisible in the background.

**UBI Queries** [schema](https://github.com/o19s/opensearch-ubi/tree/2.14.0/src/main/resources/queries-mapping.json):
**UBI Queries** [schema](https://github.com/opensearch-project/user-behavior-insights/tree/main/src/main/resources/queries-mapping.json):
Since UBI manages the `ubi_queries` index, the developer should never have to write directly to this store (except for importing data).

- `timestamp` (events and queries)
Expand All @@ -138,7 +138,7 @@ Since UBI manages the `ubi_queries` index, the developer should never have to wr

### 2) **UBI events**
This is an index called `ubi_events` that the client side directly indexes events to, linking the event [`action_name`](#action_name), [`object_id`](#object_id)'s and [`query_id`](#query_id)'s together with any other important event information.
Since this schema is dynamic, the developer can add any new fields and structures (such as *user* information, *geo-location* information) at index time that are not in the current **UBI Events** [schema](https://github.com/o19s/opensearch-ubi/tree/2.14.0/src/main/resources/events-mapping.json):
Since this schema is dynamic, the developer can add any new fields and structures (such as *user* information, *geo-location* information) at index time that are not in the current **UBI Events** [schema](https://github.com/opensearch-project/user-behavior-insights/tree/main/src/main/resources/events-mapping.json):

<p id="application"> </p>

Expand Down

0 comments on commit 3940d12

Please sign in to comment.