Path parameters
- id
string Required Identifier for the data frame analytics job. This identifier can contain lowercase alphanumeric characters (a-z and 0-9), hyphens, and underscores. It must start and end with alphanumeric characters.
Query parameters
- timeout
string Controls the amount of time to wait until the data frame analytics job starts.
Values are
-1
or0
.
POST /_ml/data_frame/analytics/{id}/_start
Console
POST _ml/data_frame/analytics/loganalytics/_start
resp = client.ml.start_data_frame_analytics(
id="loganalytics",
)
const response = await client.ml.startDataFrameAnalytics({
id: "loganalytics",
});
response = client.ml.start_data_frame_analytics(
id: "loganalytics"
)
$resp = $client->ml()->startDataFrameAnalytics([
"id" => "loganalytics",
]);
curl -X POST -H "Authorization: ApiKey $ELASTIC_API_KEY" "$ELASTICSEARCH_URL/_ml/data_frame/analytics/loganalytics/_start"