最小集約

数値文書から抽出された数値の中で最小値を追跡し、返す single-value メトリクス集約です。

min および max 集約は、データの double 表現に基づいて動作します。その結果、絶対値が 2^53 より大きい長整数で実行する場合、結果は近似値になる可能性があります。

すべての文書における最小価格値の計算:

Python

  1. resp = client.search(
  2. index="sales",
  3. size="0",
  4. aggs={
  5. "min_price": {
  6. "min": {
  7. "field": "price"
  8. }
  9. }
  10. },
  11. )
  12. print(resp)

Ruby

  1. response = client.search(
  2. index: 'sales',
  3. size: 0,
  4. body: {
  5. aggregations: {
  6. min_price: {
  7. min: {
  8. field: 'price'
  9. }
  10. }
  11. }
  12. }
  13. )
  14. puts response

Js

  1. const response = await client.search({
  2. index: "sales",
  3. size: 0,
  4. aggs: {
  5. min_price: {
  6. min: {
  7. field: "price",
  8. },
  9. },
  10. },
  11. });
  12. console.log(response);

コンソール

  1. POST /sales/_search?size=0
  2. {
  3. "aggs": {
  4. "min_price": { "min": { "field": "price" } }
  5. }
  6. }

レスポンス:

コンソール-結果

  1. {
  2. ...
  3. "aggregations": {
  4. "min_price": {
  5. "value": 10.0
  6. }
  7. }
  8. }

集約の名前(上記の min_price)は、返されたレスポンスから集約結果を取得するためのキーとしても機能します。

スクリプト

単一フィールドよりも複雑な何かの min を取得する必要がある場合は、ランタイムフィールドで集約を実行してください。

Python

  1. resp = client.search(
  2. index="sales",
  3. size=0,
  4. runtime_mappings={
  5. "price.adjusted": {
  6. "type": "double",
  7. "script": "\n double price = doc['price'].value;\n if (doc['promoted'].value) {\n price *= 0.8;\n }\n emit(price);\n "
  8. }
  9. },
  10. aggs={
  11. "min_price": {
  12. "min": {
  13. "field": "price.adjusted"
  14. }
  15. }
  16. },
  17. )
  18. print(resp)

Ruby

  1. response = client.search(
  2. index: 'sales',
  3. body: {
  4. size: 0,
  5. runtime_mappings: {
  6. 'price.adjusted' => {
  7. type: 'double',
  8. script: "\n double price = doc['price'].value;\n if (doc['promoted'].value) {\n price *= 0.8;\n }\n emit(price);\n "
  9. }
  10. },
  11. aggregations: {
  12. min_price: {
  13. min: {
  14. field: 'price.adjusted'
  15. }
  16. }
  17. }
  18. }
  19. )
  20. puts response

Js

  1. const response = await client.search({
  2. index: "sales",
  3. size: 0,
  4. runtime_mappings: {
  5. "price.adjusted": {
  6. type: "double",
  7. script:
  8. "\n double price = doc['price'].value;\n if (doc['promoted'].value) {\n price *= 0.8;\n }\n emit(price);\n ",
  9. },
  10. },
  11. aggs: {
  12. min_price: {
  13. min: {
  14. field: "price.adjusted",
  15. },
  16. },
  17. },
  18. });
  19. console.log(response);

コンソール

  1. POST /sales/_search
  2. {
  3. "size": 0,
  4. "runtime_mappings": {
  5. "price.adjusted": {
  6. "type": "double",
  7. "script": """
  8. double price = doc['price'].value;
  9. if (doc['promoted'].value) {
  10. price *= 0.8;
  11. }
  12. emit(price);
  13. """
  14. }
  15. },
  16. "aggs": {
  17. "min_price": {
  18. "min": { "field": "price.adjusted" }
  19. }
  20. }
  21. }

欠損値

missing パラメータは、値が欠損している文書がどのように扱われるべきかを定義します。デフォルトでは無視されますが、値があるかのように扱うことも可能です。

Python

  1. resp = client.search(
  2. index="sales",
  3. aggs={
  4. "grade_min": {
  5. "min": {
  6. "field": "grade",
  7. "missing": 10
  8. }
  9. }
  10. },
  11. )
  12. print(resp)

Ruby

  1. response = client.search(
  2. index: 'sales',
  3. body: {
  4. aggregations: {
  5. grade_min: {
  6. min: {
  7. field: 'grade',
  8. missing: 10
  9. }
  10. }
  11. }
  12. }
  13. )
  14. puts response

Js

  1. const response = await client.search({
  2. index: "sales",
  3. aggs: {
  4. grade_min: {
  5. min: {
  6. field: "grade",
  7. missing: 10,
  8. },
  9. },
  10. },
  11. });
  12. console.log(response);

コンソール

  1. POST /sales/_search
  2. {
  3. "aggs": {
  4. "grade_min": {
  5. "min": {
  6. "field": "grade",
  7. "missing": 10
  8. }
  9. }
  10. }
  11. }
grade フィールドに値がない文書は、値が 10 である文書と同じバケットに入ります。

ヒストグラムフィールド

minヒストグラムフィールド で計算されると、集約の結果は values 配列内のすべての要素の最小値になります。ヒストグラムの counts 配列は無視されることに注意してください。

たとえば、異なるネットワークのレイテンシメトリクスを持つ事前集約されたヒストグラムを保存する次のインデックスについて:

Python

  1. resp = client.indices.create(
  2. index="metrics_index",
  3. mappings={
  4. "properties": {
  5. "latency_histo": {
  6. "type": "histogram"
  7. }
  8. }
  9. },
  10. )
  11. print(resp)
  12. resp1 = client.index(
  13. index="metrics_index",
  14. id="1",
  15. refresh=True,
  16. document={
  17. "network.name": "net-1",
  18. "latency_histo": {
  19. "values": [
  20. 0.1,
  21. 0.2,
  22. 0.3,
  23. 0.4,
  24. 0.5
  25. ],
  26. "counts": [
  27. 3,
  28. 7,
  29. 23,
  30. 12,
  31. 6
  32. ]
  33. }
  34. },
  35. )
  36. print(resp1)
  37. resp2 = client.index(
  38. index="metrics_index",
  39. id="2",
  40. refresh=True,
  41. document={
  42. "network.name": "net-2",
  43. "latency_histo": {
  44. "values": [
  45. 0.1,
  46. 0.2,
  47. 0.3,
  48. 0.4,
  49. 0.5
  50. ],
  51. "counts": [
  52. 8,
  53. 17,
  54. 8,
  55. 7,
  56. 6
  57. ]
  58. }
  59. },
  60. )
  61. print(resp2)
  62. resp3 = client.search(
  63. index="metrics_index",
  64. size="0",
  65. filter_path="aggregations",
  66. aggs={
  67. "min_latency": {
  68. "min": {
  69. "field": "latency_histo"
  70. }
  71. }
  72. },
  73. )
  74. print(resp3)

Ruby

  1. response = client.indices.create(
  2. index: 'metrics_index',
  3. body: {
  4. mappings: {
  5. properties: {
  6. latency_histo: {
  7. type: 'histogram'
  8. }
  9. }
  10. }
  11. }
  12. )
  13. puts response
  14. response = client.index(
  15. index: 'metrics_index',
  16. id: 1,
  17. refresh: true,
  18. body: {
  19. 'network.name' => 'net-1',
  20. latency_histo: {
  21. values: [
  22. 0.1,
  23. 0.2,
  24. 0.3,
  25. 0.4,
  26. 0.5
  27. ],
  28. counts: [
  29. 3,
  30. 7,
  31. 23,
  32. 12,
  33. 6
  34. ]
  35. }
  36. }
  37. )
  38. puts response
  39. response = client.index(
  40. index: 'metrics_index',
  41. id: 2,
  42. refresh: true,
  43. body: {
  44. 'network.name' => 'net-2',
  45. latency_histo: {
  46. values: [
  47. 0.1,
  48. 0.2,
  49. 0.3,
  50. 0.4,
  51. 0.5
  52. ],
  53. counts: [
  54. 8,
  55. 17,
  56. 8,
  57. 7,
  58. 6
  59. ]
  60. }
  61. }
  62. )
  63. puts response
  64. response = client.search(
  65. index: 'metrics_index',
  66. size: 0,
  67. filter_path: 'aggregations',
  68. body: {
  69. aggregations: {
  70. min_latency: {
  71. min: {
  72. field: 'latency_histo'
  73. }
  74. }
  75. }
  76. }
  77. )
  78. puts response

Js

  1. const response = await client.indices.create({
  2. index: "metrics_index",
  3. mappings: {
  4. properties: {
  5. latency_histo: {
  6. type: "histogram",
  7. },
  8. },
  9. },
  10. });
  11. console.log(response);
  12. const response1 = await client.index({
  13. index: "metrics_index",
  14. id: 1,
  15. refresh: "true",
  16. document: {
  17. "network.name": "net-1",
  18. latency_histo: {
  19. values: [0.1, 0.2, 0.3, 0.4, 0.5],
  20. counts: [3, 7, 23, 12, 6],
  21. },
  22. },
  23. });
  24. console.log(response1);
  25. const response2 = await client.index({
  26. index: "metrics_index",
  27. id: 2,
  28. refresh: "true",
  29. document: {
  30. "network.name": "net-2",
  31. latency_histo: {
  32. values: [0.1, 0.2, 0.3, 0.4, 0.5],
  33. counts: [8, 17, 8, 7, 6],
  34. },
  35. },
  36. });
  37. console.log(response2);
  38. const response3 = await client.search({
  39. index: "metrics_index",
  40. size: 0,
  41. filter_path: "aggregations",
  42. aggs: {
  43. min_latency: {
  44. min: {
  45. field: "latency_histo",
  46. },
  47. },
  48. },
  49. });
  50. console.log(response3);

コンソール

  1. PUT metrics_index
  2. {
  3. "mappings": {
  4. "properties": {
  5. "latency_histo": { "type": "histogram" }
  6. }
  7. }
  8. }
  9. PUT metrics_index/_doc/1?refresh
  10. {
  11. "network.name" : "net-1",
  12. "latency_histo" : {
  13. "values" : [0.1, 0.2, 0.3, 0.4, 0.5],
  14. "counts" : [3, 7, 23, 12, 6]
  15. }
  16. }
  17. PUT metrics_index/_doc/2?refresh
  18. {
  19. "network.name" : "net-2",
  20. "latency_histo" : {
  21. "values" : [0.1, 0.2, 0.3, 0.4, 0.5],
  22. "counts" : [8, 17, 8, 7, 6]
  23. }
  24. }
  25. POST /metrics_index/_search?size=0&filter_path=aggregations
  26. {
  27. "aggs" : {
  28. "min_latency" : { "min" : { "field" : "latency_histo" } }
  29. }
  30. }

min 集約は、すべてのヒストグラムフィールドの最小値を返します:

コンソール-結果

  1. {
  2. "aggregations": {
  3. "min_latency": {
  4. "value": 0.1
  5. }
  6. }
  7. }