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

Dashboard documentation meta #928

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions _dashboards/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ redirect_from:
- /dashboards/
---

{%- comment -%}The `/docs/opensearch-dashboards/` redirect is specifically to support the UI links in OpenSearch Dashboards 1.0.0.{%- endcomment -%}

# OpenSearch Dashboards

OpenSearch Dashboards is the default visualization tool for data in OpenSearch. It also serves as a user interface for many of the OpenSearch plugins, including security, alerting, Index State Management, SQL, and more.
OpenSearch Dashboards create visualizations that display the full picture of your data. OpenSearch Dashboards serves as a user interface for many of the OpenSearch plugins, including security, alerting, Index State Management, and SQL.


## Get started with OpenSearch Dashboards
Expand Down
18 changes: 9 additions & 9 deletions _opensearch/query-dsl/full-text.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ curl --insecure -XGET -u 'admin:admin' https://<host>:<port>/<index>/_search \
}'
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -95,7 +95,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -137,7 +137,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -174,7 +174,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -207,7 +207,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -242,7 +242,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -283,7 +283,7 @@ GET _search
}
```

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down Expand Up @@ -339,10 +339,10 @@ Special character | Behavior
`*` | Acts as a wildcard.
`""` | Wraps several terms into a phrase.
`()` | Wraps a clause for precedence.
`~n` | When used after a term (e.g. `wnid~3`), sets `fuzziness`. When used after a phrase, sets `slop`. See [Options](#options).
`~n` | When used after a term (e.g. `wnid~3`), sets `fuzziness`. When used after a phrase, sets `slop`. See [Optional Query Fields](#optional-query-fields).
`-` | Negates the term.

The query accepts the following options. For descriptions of each, see [Options](#options).
The query accepts the following options. For descriptions of each, see [Optional Query Fields](#optional-query-fields).

```json
GET _search
Expand Down