Add anomaly detection jobs to calendar API

Add anomaly detection jobs to calendar API

New API reference

For the most up-to-date API details, refer to Machine learning anomaly detection APIs.

Adds an anomaly detection job to a calendar.

Request

PUT _ml/calendars/<calendar_id>/jobs/<job_id>

Prerequisites

Requires the manage_ml cluster privilege. This privilege is included in the machine_learning_admin built-in role.

Path parameters

<calendar_id>

(Required, string) A string that uniquely identifies a calendar.

<job_id>

(Required, string) An identifier for the anomaly detection jobs. It can be a job identifier, a group name, or a comma-separated list of jobs or groups.

Examples

  1. resp = client.ml.put_calendar_job(
  2. calendar_id="planned-outages",
  3. job_id="total-requests",
  4. )
  5. print(resp)
  1. response = client.ml.put_calendar_job(
  2. calendar_id: 'planned-outages',
  3. job_id: 'total-requests'
  4. )
  5. puts response
  1. const response = await client.ml.putCalendarJob({
  2. calendar_id: "planned-outages",
  3. job_id: "total-requests",
  4. });
  5. console.log(response);
  1. PUT _ml/calendars/planned-outages/jobs/total-requests

The API returns the following results:

  1. {
  2. "calendar_id": "planned-outages",
  3. "job_ids": [
  4. "total-requests"
  5. ]
  6. }