Path parameters
- transform_id
string Required A transform identifier or a wildcard expression. If you do not specify one of these options, the API returns information for all transforms.
Query parameters
- allow_no_match
boolean Specifies what to do when the request: contains wildcard expressions and there are no transforms that match; contains the
_all
string or no identifiers and there are no matches; contains wildcard expressions and there are only partial matches. Iftrue
, it returns an empty transforms array when there are no matches and the subset of results when there are partial matches. Iffalse
, the request returns a 404 status code when there are no matches or only partial matches. - from
number Skips the specified number of transforms.
- h
string | array[string] Comma-separated list of column names to display.
Values are
changes_last_detection_time
,cldt
,checkpoint
,cp
,checkpoint_duration_time_exp_avg
,cdtea
,checkpointTimeExpAvg
,checkpoint_progress
,c
,checkpointProgress
,create_time
,ct
,createTime
,delete_time
,dtime
,description
,d
,dest_index
,di
,destIndex
,documents_deleted
,docd
,documents_indexed
,doci
,docs_per_second
,dps
,documents_processed
,docp
,frequency
,f
,id
,index_failure
,if
,index_time
,itime
,index_total
,it
,indexed_documents_exp_avg
,idea
,last_search_time
,lst
,lastSearchTime
,max_page_search_size
,mpsz
,pages_processed
,pp
,pipeline
,p
,processed_documents_exp_avg
,pdea
,processing_time
,pt
,reason
,r
,search_failure
,sf
,search_time
,stime
,search_total
,st
,source_index
,si
,sourceIndex
,state
,s
,transform_type
,tt
,trigger_count
,tc
,version
, orv
. - s
string | array[string] Comma-separated list of column names or column aliases used to sort the response.
Values are
changes_last_detection_time
,cldt
,checkpoint
,cp
,checkpoint_duration_time_exp_avg
,cdtea
,checkpointTimeExpAvg
,checkpoint_progress
,c
,checkpointProgress
,create_time
,ct
,createTime
,delete_time
,dtime
,description
,d
,dest_index
,di
,destIndex
,documents_deleted
,docd
,documents_indexed
,doci
,docs_per_second
,dps
,documents_processed
,docp
,frequency
,f
,id
,index_failure
,if
,index_time
,itime
,index_total
,it
,indexed_documents_exp_avg
,idea
,last_search_time
,lst
,lastSearchTime
,max_page_search_size
,mpsz
,pages_processed
,pp
,pipeline
,p
,processed_documents_exp_avg
,pdea
,processing_time
,pt
,reason
,r
,search_failure
,sf
,search_time
,stime
,search_total
,st
,source_index
,si
,sourceIndex
,state
,s
,transform_type
,tt
,trigger_count
,tc
,version
, orv
. - time
string The unit used to display time values.
Values are
nanos
,micros
,ms
,s
,m
,h
, ord
. - size
number The maximum number of transforms to obtain.
GET /_cat/transforms?v=true&format=json
resp = client.cat.transforms(
v=True,
format="json",
)
const response = await client.cat.transforms({
v: "true",
format: "json",
});
response = client.cat.transforms(
v: "true",
format: "json"
)
$resp = $client->cat()->transforms([
"v" => "true",
"format" => "json",
]);
curl -X GET -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_cat/transforms?v=true&format=json"
[
{
"id" : "ecommerce_transform",
"state" : "started",
"checkpoint" : "1",
"documents_processed" : "705",
"checkpoint_progress" : "100.00",
"changes_last_detection_time" : null
}
]