Skip to content

Commit 9fb7911

Browse files
committed
Use visibility field instead of noMatch and add docs
1 parent c60b132 commit 9fb7911

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

plugins/OpenSearch/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Overview
22

3-
Query OpenSearch databases. This plugin is primarily a wrapper around the `_search` API endpoint that allows for a range of queries.
3+
Query OpenSearch databases using DSL. This plugin is primarily a wrapper around the `_search` API endpoint that allows for a range of queries.
44

55
See the [OpenSearch API docs](https://docs.opensearch.org/latest/api-reference/search-apis/search/) for more information.
66

plugins/OpenSearch/v1/dataStreams/indices.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
},
1515
"timeframes": false,
1616
"matches": "none",
17-
"options": {
18-
"noMatch": true
17+
"visibility": {
18+
"type": "hidden"
1919
},
2020
"metadata": [
2121
{
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Instance URL
2+
3+
The base URL of your OpenSearch database.
4+
5+
For example:
6+
`https://<your-opensearch-host>:9200`
7+
8+
Do *not* include the `/api' path.
9+
10+
## Authentication
11+
12+
The data source supports basic (username and password) or anonymous authentication.
13+
14+
If using basic authentication, ensure the user only has read permissions.
15+
16+
If using anonymous, ensure the endpoint is secured in some other form.
17+
18+
If you need to whitelist the IP addresses for SquaredUp these can be found on the [Data Security](https://docs.squaredup.com/reference/security/data-security) KB article.
19+

0 commit comments

Comments
 (0)