[DOCS] Makes the footnotes less verbose in configuring aggs page. (#55857)

This commit is contained in:
István Zoltán Szabó 2020-04-29 09:50:41 +02:00
parent b96db2ee2b
commit e982cf4381
1 changed files with 9 additions and 10 deletions

View File

@ -73,9 +73,9 @@ PUT _ml/anomaly_detectors/farequote
---------------------------------- ----------------------------------
// TEST[skip:setup:farequote_data] // TEST[skip:setup:farequote_data]
<1> In this example, the `airline`, `responsetime`, and `time` fields are <1> The `airline`, `responsetime`, and `time` fields are aggregations. Only the
aggregations. Only the aggregated fields defined in the `analysis_config` object aggregated fields defined in the `analysis_config` object are analyzed by the
are analyzed by the {anomaly-job}. {anomaly-job}.
NOTE: When the `summary_count_field_name` property is set to a non-null value, NOTE: When the `summary_count_field_name` property is set to a non-null value,
the job expects to receive aggregated input. The property must be set to the the job expects to receive aggregated input. The property must be set to the
@ -121,13 +121,12 @@ PUT _ml/datafeeds/datafeed-farequote
---------------------------------- ----------------------------------
// TEST[skip:setup:farequote_job] // TEST[skip:setup:farequote_job]
<1> In this example, the aggregations have names that match the fields that they <1> The aggregations have names that match the fields that they operate on. The
operate on. That is to say, the `max` aggregation is named `time` and its `max` aggregation is named `time` and its field also needs to be `time`.
field also needs to be `time`. <2> The `term` aggregation is named `airline` and its field is also named
<2> Likewise, the `term` aggregation is named `airline` and its field is also `airline`.
named `airline`. <3> The `avg` aggregation is named `responsetime` and its field is also named
<3> Likewise, the `avg` aggregation is named `responsetime` and its field is `responsetime`.
also named `responsetime`.
Your {dfeed} can contain multiple aggregations, but only the ones with names Your {dfeed} can contain multiple aggregations, but only the ones with names
that match values in the job configuration are fed to the job. that match values in the job configuration are fed to the job.