A SysOps Administrator is configuring a monitoring solution for an application that writes JSON-formatted log events to an Amazon CloudWatch Logs log group. A sample log event is shown below:
{
"eventType": "database_query",
"latency_ms": 120,
"statusCode": 500,
"clientIp": "192.0.2.1"
}
The administrator wants to track query performance by extracting the `latency_ms` value as a custom metric. If the `latency_ms` field is missing from a database query log event, the metric must record a default value of ms. The administrator only wants to parse events where the `eventType` is equal to `"database_query"`.
Which combination of configurations must the administrator apply to meet these requirements? (Select TWO.)
- Create a metric filter with the filter pattern `{ $.eventType = "database_query" }`.Answer
- Configure the metric transformation with a metric value of ` 5000$.Answer
- CConfigure an Amazon EventBridge rule that detects log ingestion and triggers an AWS Systems Manager Automation runbook to parse the logs and publish custom metrics.
- DEnable detailed monitoring on the EC2 instances delivering the logs to allow the metric filter to process events at -minute intervals.
- EChange the log group retention settings to Never Expire so that historical logs can be evaluated for the default value calculation.
Answer
Create a metric filter with the filter pattern `{ .eventType = "database_query" }` and configure the metric transformation with a metric value of `.latency_ms` and a default value of .
To create a custom metric from JSON logs, you define a metric filter with a specific JSON property matching pattern. The pattern `{ .eventType = "database_query" }` correctly filters for the target events. The metric transformation configuration maps the metric value to the JSON property `.latency_ms`. Setting the default value to guarantees that if the `latency_ms` field is omitted from a matched log event, CloudWatch still publishes to the metric, satisfying the requirement for handling missing values.
Step-by-Step Solution
Key Concept
CloudWatch Logs metric filters extract custom metrics from JSON log patterns and utilize default values to handle missing fields gracefully.