Spacing consistency
Signed-off-by: keithhc2 <keithhc2@users.noreply.github.com>
This commit is contained in:
parent
8387d8064c
commit
9c37986bf2
|
@ -432,11 +432,11 @@ To create a cluster metrics monitor:
|
|||
Trigger conditions use responses from the following APIs. Most APIs that can be used to monitor cluster status support path parameters as described in their documentation (e.g., comma-separated lists of index names). However, they do not support query parameters.
|
||||
|
||||
1. [_cluster/health]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cluster-health/)
|
||||
2. [_cluster/stats]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cluster-stats/
|
||||
2. [_cluster/stats]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cluster-stats/)
|
||||
3. [_cluster/settings]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cluster-settings/)
|
||||
4. [_nodes/stats]({{site.url}}{{site.baseurl}}/opensearch/popular-api/#get-node-statistics)
|
||||
5. _[cat/pending_tasks]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-pending-tasks/)
|
||||
6. [_cat/recovery]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-recovery/
|
||||
5. [_cat/pending_tasks]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-pending-tasks/)
|
||||
6. [_cat/recovery]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-recovery/)
|
||||
7. [_cat/snapshots]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-snapshots/)
|
||||
8. [_cat/tasks]({{site.url}}{{site.baseurl}}/opensearch/rest-api/cat/cat-tasks/)
|
||||
|
||||
|
@ -448,10 +448,10 @@ However, you can modify the file so that cluster metric monitors can only be cre
|
|||
|
||||
```json
|
||||
"/_cluster/stats": {
|
||||
"indices": [
|
||||
"shards.total",
|
||||
"shards.index.shards.min"
|
||||
]
|
||||
"indices": [
|
||||
"shards.total",
|
||||
"shards.index.shards.min"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -465,46 +465,46 @@ In this example, a JSON object creates a trigger that sends an alert when the Cl
|
|||
|
||||
```json
|
||||
{
|
||||
"name": "Cluster Health Monitor",
|
||||
"type": "monitor",
|
||||
"monitor_type": "query_level_monitor",
|
||||
"enabled": true,
|
||||
"schedule": {
|
||||
"period": {
|
||||
"unit": "MINUTES",
|
||||
"interval": 1
|
||||
"name": "Cluster Health Monitor",
|
||||
"type": "monitor",
|
||||
"monitor_type": "query_level_monitor",
|
||||
"enabled": true,
|
||||
"schedule": {
|
||||
"period": {
|
||||
"unit": "MINUTES",
|
||||
"interval": 1
|
||||
}
|
||||
},
|
||||
"inputs": [
|
||||
{
|
||||
"uri": {
|
||||
"api_type": "CLUSTER_HEALTH",
|
||||
"path": "_cluster/health/",
|
||||
"path_params": "",
|
||||
"url": "http://localhost:9200/_cluster/health/"
|
||||
}
|
||||
},
|
||||
"inputs": [
|
||||
{
|
||||
"uri": {
|
||||
"api_type": "CLUSTER_HEALTH",
|
||||
"path": "_cluster/health/",
|
||||
"path_params": "",
|
||||
"url": "http://localhost:9200/_cluster/health/"
|
||||
}
|
||||
}
|
||||
],
|
||||
"triggers": [
|
||||
{
|
||||
"query_level_trigger": {
|
||||
"id": "Tf_L_nwBti6R6Bm-18qC",
|
||||
"name": "Yellow status trigger",
|
||||
"severity": "1",
|
||||
"condition": {
|
||||
"script": {
|
||||
"source": "ctx.results[0].status == \"yellow\"",
|
||||
"lang": "painless"
|
||||
}
|
||||
},
|
||||
"actions": []
|
||||
}
|
||||
],
|
||||
"triggers": [
|
||||
{
|
||||
"query_level_trigger": {
|
||||
"id": "Tf_L_nwBti6R6Bm-18qC",
|
||||
"name": "Yellow status trigger",
|
||||
"severity": "1",
|
||||
"condition": {
|
||||
"script": {
|
||||
"source": "ctx.results[0].status == \"yellow\"",
|
||||
"lang": "painless"
|
||||
}
|
||||
},
|
||||
"actions": []
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
See [trigger variables](#trigger-variables), for more painless ctx options.
|
||||
See [trigger variables](#trigger-variables) for more painless ctx options.
|
||||
|
||||
### Limitations
|
||||
|
||||
|
|
Loading…
Reference in New Issue