Signed-off-by: alicejw <alicejw@amazon.com>
This commit is contained in:
alicejw 2022-04-21 15:58:19 -07:00
parent cb02f718cf
commit c6f4410a9d

View File

@ -684,6 +684,19 @@ GET opensearch_dashboards_sample_data_logs/_search
}
}
```
You can use the `ignore_malformed` parameter set to `true` to ignore any malformed IP ranges if your index mappings include the `ip_range` type.
```json
...
"mappings": {
"properties": {
"ips": {
"type": "ip_range",
"ignore_malformed": true
}
}
}
```
#### Sample response