Higher anomaly scores indicate more unusual data points. A score of 75 is high, 5 is low.
Step 2: Identify timestamp with high score
The timestamp 1680000000000 has anomaly_score 75, indicating a likely anomaly.
Final Answer:
1680000000000 -> Option D
Quick Check:
High anomaly score = likely anomaly [OK]
Hint: Higher anomaly_score means more likely anomaly [OK]
Common Mistakes:
Choosing low anomaly score as anomaly
Selecting both timestamps without checking scores
Ignoring anomaly_score values
4. You created an anomaly detection job but see no results after starting the datafeed. What is a likely cause?
medium
A. The job was deleted before starting
B. The Elasticsearch cluster is offline
C. The datafeed is not running or has stopped
D. The anomaly scores are all zero
Solution
Step 1: Check datafeed status
If no results appear, the datafeed may not be running or has stopped feeding data to the job.
Step 2: Evaluate other options
Job deletion would prevent starting datafeed; cluster offline causes broader failures; zero scores still produce results.
Final Answer:
The datafeed is not running or has stopped -> Option C
Quick Check:
No results usually mean datafeed stopped [OK]
Hint: No results? Check if datafeed is running [OK]
Common Mistakes:
Assuming zero scores mean no results
Ignoring datafeed status
Blaming cluster offline without checking datafeed
5. You want to detect unusual spikes in website traffic using Elasticsearch ML anomaly detection. Which steps should you follow to set this up correctly?
hard
A. Backup traffic data, create index pattern, then visualize spikes
B. Create a job with traffic data, start datafeed, then analyze anomaly results
C. Create a dashboard, upload traffic logs, then run anomaly detection manually
D. Delete old data, create job without datafeed, then check results
Solution
Step 1: Create ML job with traffic data
Define an anomaly detection job using the website traffic data to analyze patterns.
Step 2: Start the datafeed to feed data into the job
Start the datafeed so the job can process incoming traffic data continuously.
Step 3: Analyze the anomaly detection results
Review the results to identify unusual spikes or anomalies in traffic.
Final Answer:
Create a job with traffic data, start datafeed, then analyze anomaly results -> Option B