示例:通过将值与范围匹配来丰富您的数据
编辑示例:通过将值与范围匹配来丰富您的数据编辑
一个 range
丰富策略 使用 term
查询 将传入文档中的数字、日期或 IP 地址与丰富索引中相同类型的范围进行匹配。不支持将范围与范围进行匹配。
以下示例创建了一个 range
丰富策略,该策略根据 IP 地址将描述性网络名称和责任部门添加到传入文档中。然后,它将丰富策略添加到摄取管道中的处理器中。
使用 创建索引 API 以及适当的映射来创建源索引。
response = client.indices.create( index: 'networks', body: { mappings: { properties: { range: { type: 'ip_range' }, name: { type: 'keyword' }, department: { type: 'keyword' } } } } ) puts response
PUT /networks { "mappings": { "properties": { "range": { "type": "ip_range" }, "name": { "type": "keyword" }, "department": { "type": "keyword" } } } }
以下索引 API 请求将新文档索引到该索引中。
response = client.index( index: 'networks', id: 1, refresh: 'wait_for', body: { range: '10.100.0.0/16', name: 'production', department: 'OPS' } ) puts response
PUT /networks/_doc/1?refresh=wait_for { "range": "10.100.0.0/16", "name": "production", "department": "OPS" }
使用创建丰富策略 API 使用 range
策略类型创建丰富策略。此策略必须包含
- 一个或多个源索引
- 一个
match_field
,来自源索引的用于匹配传入文档的字段 - 您要追加到传入文档的源索引中的丰富字段
由于我们计划根据 IP 地址丰富文档,因此策略的 match_field
必须是 ip_range
字段。
response = client.enrich.put_policy( name: 'networks-policy', body: { range: { indices: 'networks', match_field: 'range', enrich_fields: [ 'name', 'department' ] } } ) puts response
PUT /_enrich/policy/networks-policy { "range": { "indices": "networks", "match_field": "range", "enrich_fields": ["name", "department"] } }
使用 执行丰富策略 API 为策略创建丰富索引。
POST /_enrich/policy/networks-policy/_execute?wait_for_completion=false
使用 创建或更新管道 API 创建摄取管道。在管道中,添加一个 丰富处理器,其中包含
- 您的丰富策略。
- 用于匹配来自丰富索引的文档的传入文档的
field
。 - 用于存储追加的传入文档丰富数据的
target_field
。此字段包含丰富策略中指定的match_field
和enrich_fields
。
PUT /_ingest/pipeline/networks_lookup { "processors" : [ { "enrich" : { "description": "Add 'network' data based on 'ip'", "policy_name": "networks-policy", "field" : "ip", "target_field": "network", "max_matches": "10" } } ] }
使用摄取管道索引文档。传入文档应包含丰富处理器中指定的 field
。
PUT /my-index-000001/_doc/my_id?pipeline=networks_lookup { "ip": "10.100.34.1" }
要验证丰富处理器是否匹配并追加了适当的字段数据,请使用 获取 API 查看索引的文档。
response = client.get( index: 'my-index-000001', id: 'my_id' ) puts response
GET /my-index-000001/_doc/my_id
API 返回以下响应
{ "_index" : "my-index-000001", "_id" : "my_id", "_version" : 1, "_seq_no" : 0, "_primary_term" : 1, "found" : true, "_source" : { "ip" : "10.100.34.1", "network" : [ { "name" : "production", "range" : "10.100.0.0/16", "department" : "OPS" } ] } }