例: 値を範囲に一致させてデータを豊かにする

range enrich policy は、term query を使用して、受信文書内の数値、日付、またはIPアドレスを、enrich index内の同じタイプの範囲に一致させます。範囲を範囲に一致させることはサポートされていません。

次の例では、IPアドレスに基づいて受信文書に説明的なネットワーク名と責任部門を追加する range enrich policy を作成します。その後、enrich policy をインジェストパイプライン内のプロセッサに追加します。

適切なマッピングを使用して、create index API を使用してソースインデックスを作成します。

Python

  1. resp = client.indices.create(
  2. index="networks",
  3. mappings={
  4. "properties": {
  5. "range": {
  6. "type": "ip_range"
  7. },
  8. "name": {
  9. "type": "keyword"
  10. },
  11. "department": {
  12. "type": "keyword"
  13. }
  14. }
  15. },
  16. )
  17. print(resp)

Ruby

  1. response = client.indices.create(
  2. index: 'networks',
  3. body: {
  4. mappings: {
  5. properties: {
  6. range: {
  7. type: 'ip_range'
  8. },
  9. name: {
  10. type: 'keyword'
  11. },
  12. department: {
  13. type: 'keyword'
  14. }
  15. }
  16. }
  17. }
  18. )
  19. puts response

Js

  1. const response = await client.indices.create({
  2. index: "networks",
  3. mappings: {
  4. properties: {
  5. range: {
  6. type: "ip_range",
  7. },
  8. name: {
  9. type: "keyword",
  10. },
  11. department: {
  12. type: "keyword",
  13. },
  14. },
  15. },
  16. });
  17. console.log(response);

Console

  1. PUT /networks
  2. {
  3. "mappings": {
  4. "properties": {
  5. "range": { "type": "ip_range" },
  6. "name": { "type": "keyword" },
  7. "department": { "type": "keyword" }
  8. }
  9. }
  10. }

次のインデックスAPIリクエストは、そのインデックスに新しい文書をインデックスします。

Python

  1. resp = client.index(
  2. index="networks",
  3. id="1",
  4. refresh="wait_for",
  5. document={
  6. "range": "10.100.0.0/16",
  7. "name": "production",
  8. "department": "OPS"
  9. },
  10. )
  11. print(resp)

Ruby

  1. response = client.index(
  2. index: 'networks',
  3. id: 1,
  4. refresh: 'wait_for',
  5. body: {
  6. range: '10.100.0.0/16',
  7. name: 'production',
  8. department: 'OPS'
  9. }
  10. )
  11. puts response

Js

  1. const response = await client.index({
  2. index: "networks",
  3. id: 1,
  4. refresh: "wait_for",
  5. document: {
  6. range: "10.100.0.0/16",
  7. name: "production",
  8. department: "OPS",
  9. },
  10. });
  11. console.log(response);

Console

  1. PUT /networks/_doc/1?refresh=wait_for
  2. {
  3. "range": "10.100.0.0/16",
  4. "name": "production",
  5. "department": "OPS"
  6. }

[create enrich policy API]を使用して、rangeポリシータイプのenrich policyを作成します。このポリシーには次のものが含まれている必要があります:

  • 1つ以上のソースインデックス
  • 受信文書と一致させるために使用されるソースインデックスからのフィールドであるmatch_field
  • 受信文書に追加したいソースインデックスからのenrichフィールド

IPアドレスに基づいて文書を豊かにする予定なので、ポリシーのmatch_fieldip_rangeフィールドである必要があります。

Python

  1. resp = client.enrich.put_policy(
  2. name="networks-policy",
  3. range={
  4. "indices": "networks",
  5. "match_field": "range",
  6. "enrich_fields": [
  7. "name",
  8. "department"
  9. ]
  10. },
  11. )
  12. print(resp)

Ruby

  1. response = client.enrich.put_policy(
  2. name: 'networks-policy',
  3. body: {
  4. range: {
  5. indices: 'networks',
  6. match_field: 'range',
  7. enrich_fields: [
  8. 'name',
  9. 'department'
  10. ]
  11. }
  12. }
  13. )
  14. puts response

Js

  1. const response = await client.enrich.putPolicy({
  2. name: "networks-policy",
  3. range: {
  4. indices: "networks",
  5. match_field: "range",
  6. enrich_fields: ["name", "department"],
  7. },
  8. });
  9. console.log(response);

Console

  1. PUT /_enrich/policy/networks-policy
  2. {
  3. "range": {
  4. "indices": "networks",
  5. "match_field": "range",
  6. "enrich_fields": ["name", "department"]
  7. }
  8. }

[execute enrich policy API]を使用して、ポリシーのためのenrich indexを作成します。

Console

  1. POST /_enrich/policy/networks-policy/_execute?wait_for_completion=false

[create or update pipeline API]を使用して、インジェストパイプラインを作成します。パイプライン内で、次のものを含む[enrich processor]を追加します:

  • あなたのenrich policy。
  • enrich indexからの文書と一致させるために使用される受信文書のfield
  • 受信文書のために追加されたenrichデータを格納するために使用されるtarget_field。このフィールドには、あなたのenrich policyで指定されたmatch_fieldenrich_fieldsが含まれます。

Python

  1. resp = client.ingest.put_pipeline(
  2. id="networks_lookup",
  3. processors=[
  4. {
  5. "enrich": {
  6. "description": "Add 'network' data based on 'ip'",
  7. "policy_name": "networks-policy",
  8. "field": "ip",
  9. "target_field": "network",
  10. "max_matches": "10"
  11. }
  12. }
  13. ],
  14. )
  15. print(resp)

Js

  1. const response = await client.ingest.putPipeline({
  2. id: "networks_lookup",
  3. processors: [
  4. {
  5. enrich: {
  6. description: "Add 'network' data based on 'ip'",
  7. policy_name: "networks-policy",
  8. field: "ip",
  9. target_field: "network",
  10. max_matches: "10",
  11. },
  12. },
  13. ],
  14. });
  15. console.log(response);

Console

  1. PUT /_ingest/pipeline/networks_lookup
  2. {
  3. "processors" : [
  4. {
  5. "enrich" : {
  6. "description": "Add 'network' data based on 'ip'",
  7. "policy_name": "networks-policy",
  8. "field" : "ip",
  9. "target_field": "network",
  10. "max_matches": "10"
  11. }
  12. }
  13. ]
  14. }

インジェストパイプラインを使用して文書をインデックスします。受信文書には、あなたのenrich processorで指定されたfieldが含まれている必要があります。

Python

  1. resp = client.index(
  2. index="my-index-000001",
  3. id="my_id",
  4. pipeline="networks_lookup",
  5. document={
  6. "ip": "10.100.34.1"
  7. },
  8. )
  9. print(resp)

Js

  1. const response = await client.index({
  2. index: "my-index-000001",
  3. id: "my_id",
  4. pipeline: "networks_lookup",
  5. document: {
  6. ip: "10.100.34.1",
  7. },
  8. });
  9. console.log(response);

Console

  1. PUT /my-index-000001/_doc/my_id?pipeline=networks_lookup
  2. {
  3. "ip": "10.100.34.1"
  4. }

enrich processorが適切なフィールドデータを一致させて追加したことを確認するには、get APIを使用してインデックスされた文書を表示します。

Python

  1. resp = client.get(
  2. index="my-index-000001",
  3. id="my_id",
  4. )
  5. print(resp)

Ruby

  1. response = client.get(
  2. index: 'my-index-000001',
  3. id: 'my_id'
  4. )
  5. puts response

Js

  1. const response = await client.get({
  2. index: "my-index-000001",
  3. id: "my_id",
  4. });
  5. console.log(response);

Console

  1. GET /my-index-000001/_doc/my_id

APIは次の応答を返します:

Console-Result

  1. {
  2. "_index" : "my-index-000001",
  3. "_id" : "my_id",
  4. "_version" : 1,
  5. "_seq_no" : 0,
  6. "_primary_term" : 1,
  7. "found" : true,
  8. "_source" : {
  9. "ip" : "10.100.34.1",
  10. "network" : [
  11. {
  12. "name" : "production",
  13. "range" : "10.100.0.0/16",
  14. "department" : "OPS"
  15. }
  16. ]
  17. }
  18. }