elastic/agent-skills

elasticsearch-anomaly-detection

Create and manage Elastic ML anomaly detection jobs via the API.

Voir la source
Document Skill original

Rendu depuis le dépôt source en conservant titres, exemples, code, tableaux, liens et images.

Elasticsearch Anomaly Detection

Create, open, and start ML anomaly detection jobs on time-series data. Choose the right count-family detector direction, configure bucket span and time field, wire the datafeed to the correct index, and confirm running state from stats — not from assumptions.

<!-- begin-partial: preamble -->

Environment Configuration

This skill executes Elasticsearch operations through the elastic CLI. If the `elastic` CLI is not installed, tell the user what it is needed for. Do not guess credentials, call the HTTP API directly, or attempt other workarounds.

This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping, GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API directly.

<!-- end-partial: preamble -->

Prerequisite: ML anomaly detection requires a Platinum-equivalent license on self-managed clusters. Serverless projects include ML. The caller needs manage_ml to create and manage jobs. Related skill: For interpreting anomaly scores, influencers, and model behavior after a job is running, use elasticsearch-anomaly-detection-explainer — not this skill.

Process

  1. Discover the target index and time field. List candidate indices with GET /_cat/indices (pass a pattern when

the user names one). Fetch field types for the chosen index with GET /{index}/_mapping. The decision: confirm the index exists, identify the time field (often @timestamp), and verify document volume is sufficient for baseline learning. Never guess index or field names — they vary across deployments.

  1. Choose detector function and direction. Match the user's intent to a count-family detector in

analysis_config.detectors:

  • Spike, surge, unusual increase in event volumehigh_count (or count, which flags both directions but is

acceptable when the user cares about spikes). Do not use low_count — it will miss spikes.

  • Drop, outage, absence of events, traffic stopslow_count. Do not use high_count — it will miss drops

and silence.

  • Metric deviation (CPU, latency, a numeric field) → mean-family functions (mean, high_mean, low_mean) with

field_name set — only when the user asks about a numeric metric, not raw event volume.

The decision: pick one primary detector whose direction matches the anomaly type. For volume spike/drop questions on document counts, stay in the count family — mean detectors are unsuited to "how many events" questions.

  1. Set immutable job shape before creation. These fields cannot change after PUT /_ml/anomaly_detectors/{job_id}:
  • analysis_config.bucket_span — use the interval the user specifies (e.g. 15m for 15-minute buckets). Match the

granularity of anomalies they care about; too short is noisy, too long is slow to detect.

  • data_description.time_field — the time field from the mapping (commonly @timestamp).
  • analysis_config.detectors — the function and direction from step 2.

Example job body for a volume-spike detector:

json
   {
     "analysis_config": {
       "bucket_span": "15m",
       "detectors": [{ "function": "high_count" }]
     },
     "data_description": { "time_field": "@timestamp" }
   }

Example for an outage / drop detector:

json
   {
     "analysis_config": {
       "bucket_span": "15m",
       "detectors": [{ "function": "low_count" }]
     },
     "data_description": { "time_field": "@timestamp" }
   }
  1. Create the job. Call PUT /_ml/anomaly_detectors/{job_id} with the job id the user requested (or a descriptive

id you propose). The job starts in closed state — creating it does not start analysis.

  1. Create the datafeed. Call PUT /_ml/datafeeds/datafeed-{job_id} immediately after job creation. Set job_id to

the same id, indices to the target index (exact name or pattern from step 1), and a query that selects the relevant documents (typically match_all). The datafeed id convention is datafeed-{job_id}.

json
   {
     "job_id": "{job_id}",
     "indices": ["{index}"],
     "query": { "match_all": {} }
   }
  1. Open the job, then start the datafeed — in that order. This sequence is mandatory; do not skip or reorder:
  2. POST /_ml/anomaly_detectors/{job_id}/_open — transitions the job to opened.
  3. POST /_ml/datafeeds/datafeed-{job_id}/_start — transitions the datafeed to started.

Opening before the datafeed exists fails. Starting the datafeed before opening the job fails. Do not report success after only creating resources — the job is not running until both are active.

  1. Confirm running state from stats. Verify the outcome with:
  • GET /_ml/anomaly_detectors/{job_id}/_stats — expect state: "opened".
  • GET /_ml/datafeeds/datafeed-{job_id}/_stats — expect state: "started".

Optionally call GET /_ml/anomaly_detectors/{job_id} to confirm configuration (detectors, bucket_span, time_field, datafeed indices). Report both stats states explicitly — "created" is not the same as "opened" and "started".

Teardown

When stopping or deleting a job, reverse the startup order:

  1. POST /_ml/datafeeds/datafeed-{job_id}/_stop — stop the datafeed first.
  2. POST /_ml/anomaly_detectors/{job_id}/_close — then close the job.

Stop the datafeed before closing the job. Close the job before resetting or deleting it.

Guidelines

  • Required lifecycle order (create): job → datafeed → open job → start datafeed. Every new job follows this

sequence.

  • Detector direction is the highest-impact decision for volume anomalies. Re-read the user's wording: "spike",

"surge", and "unusual increase" → high direction; "drop", "outage", "stops", "absence" → low direction.

  • Immutable fields (bucket_span, detectors, time_field) require delete-and-recreate if wrong — validate mapping

and intent before the first PUT.

  • Datafeed index must match the user's target. Point indices at the exact index or pattern they named — not a

nearby guess.

  • Entity-level analysis (by_field_name, over_field_name, partition_field_name) and advanced tuning live in

references/anomaly-detection-reference.md.

Full Reference

For API paths, request/response fields, score semantics, and field interactions, read references/anomaly-detection-reference.md.

Operations

HTTP API (shorthand)elastic CLI command
GET /_cat/indiceselastic es cat indices --index '<pattern>'
GET /{index}/_mappingelastic es indices get-mapping --index '<index>'
PUT /_ml/anomaly_detectors/{job_id}elastic es ml put-job --job-id '<job_id>' --analysis-config '<json>' --data-description '<json>'
PUT /_ml/datafeeds/datafeed-{job_id}elastic es ml put-datafeed --datafeed-id 'datafeed-<job_id>' --job-id '<job_id>' --indices '<index>' --query '<json>'
POST /_ml/anomaly_detectors/{job_id}/_openelastic es ml open-job --job-id '<job_id>'
POST /_ml/datafeeds/datafeed-{job_id}/_startelastic es ml start-datafeed --datafeed-id 'datafeed-<job_id>'
GET /_ml/anomaly_detectors/{job_id}elastic es ml get-jobs --job-id '<job_id>'
GET /_ml/anomaly_detectors/{job_id}/_statselastic es ml get-job-stats --job-id '<job_id>'
GET /_ml/datafeeds/datafeed-{job_id}/_statselastic es ml get-datafeed-stats --datafeed-id 'datafeed-<job_id>'
POST /_ml/datafeeds/datafeed-{job_id}/_stopelastic es ml stop-datafeed --datafeed-id 'datafeed-<job_id>'
POST /_ml/anomaly_detectors/{job_id}/_closeelastic es ml close-job --job-id '<job_id>'
du même dépôt

Autres Skills

Tous les Skills
elastic
Communauté

elasticsearch-onboarding

Help developers new to Elasticsearch get from zero to a working search experience. Guide them through understanding their intent, mapping their data, and building a search experience with best practices baked in. Use this when the user shows intent to build search-related functionality, asks about Elasticsearch-related concepts for their use case, or expresses the need for help getting started with Elasticsearch.

installations
2
GitHub Stars
582
Mis à jour
18 sept.
elastic
Communauté

elasticsearch-anomaly-detection-explainer

Explain Elasticsearch ML anomaly detection scores, model behavior, and result interpretation. Use when the user asks why a score is high or low, how the model learns, what the numbers mean, or how to troubleshoot unexpected anomaly scores.

installations
1
GitHub Stars
582
Mis à jour
18 sept.
elastic
Communauté

elasticsearch-reindex

Guide Elasticsearch reindex for performance: local and remote, slicing, throttling, task API. Use when copying or migrating indices, changing mappings, or transforming during reindex.

installations
1
GitHub Stars
582
Mis à jour
18 sept.
elastic
Communauté

elasticsearch-search-relevance

Improve Elasticsearch search relevance for content and catalog indices: pin or promote results with query rules (correct rule type, criteria, and rule-query wiring) and tune organic ranking with multimatch, field boosts, and analysis grounded in the index mapping. Use when search results rank poorly, a specific document must appear first for a query, or the user asks to tune full-text matching — not for ES|QL analytics, index ingest, or cluster health.

installations
1
GitHub Stars
582
Mis à jour
18 sept.