You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 16, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: docs/alerting/monitors.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ Destination | A reusable location for an action, such as Amazon Chime, Slack, or
102
102
103
103
"Start"and "end" refer to the interval at which the monitor runs. See [Available variables](#available-variables).
104
104
105
-
- Anomaly detection works for pairing with the anomaly detection plugin. See [Anomaly Detection](../ad/).
105
+
- Anomaly detection works for pairing with the anomaly detection plugin. See [Anomaly Detection](../../ad/).
106
106
107
107
108
108
1. To define a monitor visually, choose **Define using visual graph**. Then choose an aggregation (for example, `count()` or `average()`), a set of documents, and a timeframe. Visual definition works well for most monitors.
Copy file name to clipboardExpand all lines: docs/elasticsearch/snapshot-restore.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ readonly | Whether the repository is read-only. Useful when migrating from one c
101
101
If you're using the Docker installation, see [Customize the Docker image](../../install/docker/#customize-the-docker-image). Your `Dockerfile` should look something like this:
102
102
103
103
```
104
-
FROM amazon/opendistro-for-elasticsearch:1.3.0
104
+
FROM amazon/opendistro-for-elasticsearch:1.4.0
105
105
106
106
ENV AWS_ACCESS_KEY_ID <access-key>
107
107
ENV AWS_SECRET_ACCESS_KEY <secret-key>
@@ -144,12 +144,15 @@ readonly | Whether the repository is read-only. Useful when migrating from one c
144
144
1. (Optional) Add other settings to `elasticsearch.yml`:
145
145
146
146
```yml
147
+
disable_chunked_encoding: false # Disables chunked encoding for compatibility with some storage services, but you probably don't need to change this value.
147
148
endpoint: s3.amazonaws.com # S3 has alternate endpoints, but you probably don't need to change this value.
149
+
max_retries: 3# number of retries if a request fails
150
+
path_style_access: false # whether to use the deprecated path-style bucket URLs.
151
+
# You probably don't need to change this value, but for more information, see https://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html#path-style-access.
148
152
protocol: https # http or https
149
153
proxy.host: my-proxy-host # the hostname for your proxy server
150
154
proxy.port: 8080# port for your proxy server
151
155
read_timeout: 50s# the S3 connection timeout
152
-
max_retries: 3# number of retries if a request fails
153
156
use_throttle_retries: true # whether the client should wait a progressively longer amount of time (exponential backoff) between each successive retry
You can also use a `Dockerfile` to pass your own certificates for use with the [Security](../../security-configuration/) plugin, similar to the `-v` argument in [Configure Elasticsearch](#configure-elasticsearch):
If you see a `namespaces "default" is forbidden` error, create a Tiller service account and deploy with a cluster binding role, as shown in the following example. See the [Tiller documentation](https://tiller.readthedocs.io/en/latest/) for more information.
@@ -66,7 +66,7 @@ The output shows you the specifications instantiated from the install.
66
66
To customize the deployment, pass in the values that you want to override with a custom YAML file:
After installing the Security plugin, you can run `sudo sh /usr/share/elasticsearch/plugins/opendistro_security/tools/install_demo_configuration.sh` to quickly get started with demo certificates. Otherwise, you must configure it manually and run [securityadmin.sh](../../security-configuration/security-admin/).
@@ -152,7 +165,7 @@ Security has a corresponding [Kibana plugin](../../kibana/plugins) that you prob
KNN is currently only available as part of the Docker image.
191
+
{: .warning }
192
+
193
+
175
194
### Anomaly Detection
176
195
177
196
This is a preview plugin, which we do not recommend using in production. It's currently in development and is subject to change.
178
197
179
-
To test this plugin, clone [the anomaly detection repository](https://github.com/opendistro-for-elasticsearch/anomaly-detection) and build it manually using instructions in the README.
198
+
To test this plugin, clone [the Anomaly Detection repository](https://github.com/opendistro-for-elasticsearch/anomaly-detection) and build it manually using instructions in the README.
0 commit comments