123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- [role="xpack"]
- [testenv="basic"]
- [[put-data-frame-transform]]
- === Create {dataframe-transforms} API
- [subs="attributes"]
- ++++
- <titleabbrev>Create {dataframe-transforms}</titleabbrev>
- ++++
- Instantiates a {dataframe-transform}.
- ==== Request
- `PUT _data_frame/transforms/<data_frame_transform_id>`
- ===== Description
- IMPORTANT: You must use {kib} or this API to create a {dataframe-transform}.
- Do not put a {dataframe-transform} directly into any
- `.data-frame-internal*` indices using the Elasticsearch index API.
- If {es} {security-features} are enabled, do not give users any
- privileges on `.data-frame-internal*` indices.
- ==== Path Parameters
- `data_frame_transform_id` (required)::
- (string) Identifier for the {dataframe-transform}. This identifier can contain
- lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It
- must start and end with alphanumeric characters.
- ==== Request Body
- `source` (required):: (object) The source configuration, consisting of `index` and optionally
- a `query`.
- `dest` (required):: (object) The destination configuration, consisting of `index`.
- `pivot`:: (object) Defines the pivot function `group by` fields and the aggregation to
- reduce the data. See <<data-frame-transform-pivot, data frame transform pivot objects>>.
- `description`:: Optional free text description of the data frame transform
- //==== Authorization
- ==== Examples
- The following example creates a {dataframe-transform} for the {kib} eCommerce
- sample data:
- [source,js]
- --------------------------------------------------
- PUT _data_frame/transforms/ecommerce_transform
- {
- "source": {
- "index": "kibana_sample_data_ecommerce",
- "query": {
- "term": {
- "geoip.continent_name": {
- "value": "Asia"
- }
- }
- }
- },
- "dest": {
- "index": "kibana_sample_data_ecommerce_transform"
- },
- "pivot": {
- "group_by": {
- "customer_id": {
- "terms": {
- "field": "customer_id"
- }
- }
- },
- "aggregations": {
- "max_price": {
- "max": {
- "field": "taxful_total_price"
- }
- }
- }
- },
- "description": "Maximum priced ecommerce data by customer_id in Asia"
- }
- --------------------------------------------------
- // CONSOLE
- // TEST[skip:add sample kibana data]
- When the transform is created, you receive the following results:
- [source,js]
- ----
- {
- "acknowledged" : true
- }
- ----
- // NOTCONSOLE
|