Monitor with Amazon CloudWatch
Amazon CloudWatch monitors your AWS resources and the applications that you run on AWS in near-real time. You can monitor Amazon Location resources using CloudWatch, which collects raw data and processes metrics into meaningful statistics in near-real time. You can view historical information for up to 15 months, or search metrics to view in the Amazon CloudWatch console for more perspective on how your application or service is performing. You can also set alarms by defining thresholds, and send notifications or take actions when those thresholds are met.
For more information, see the Amazon CloudWatch User Guide
Topics
Amazon Location Service metrics and dimensions
Metrics are time-ordered data points that are exported to CloudWatch. A dimension is a name/value pair that identifies the metric. For more information, see Using CloudWatch metrics and CloudWatch dimensions in the Amazon CloudWatch User Guide.
Note
The result is approximate because of the distributed architecture of Amazon Location Service. In most cases, the count should be close to the actual number of API operations being sent.
Amazon Location Service metrics
The following are metrics that Amazon Location Service exports to CloudWatch in the
AWS/Location
namespace.
Metric | Description | Dimensions |
---|---|---|
|
The number of calls made to a given API endpoint. Valid Statistic: Sum Units: Count |
OperationName OperationName, ResourceName ApiKeyName, OperationName ApiKeyName, OperationName, ResourceName OperationName, OperationVersion OperationName, OperationVersion, ResourceName ApiKeyName, OperationName, OperationVersion ApiKeyName, OperationName, OperationVersion, ResourceName |
|
The number of error responses from calls made to a given API endpoint. Valid Statistic: Sum Units: Count |
OperationName OperationName, ResourceName ApiKeyName, OperationName ApiKeyName, OperationName, ResourceName |
|
The number of successful calls made to a given API endpoint. Valid Statistic: Sum Units: Count |
OperationName OperationName, ResourceName ApiKeyName, OperationName ApiKeyName, OperationName, ResourceName |
|
The amount of time the operation takes to process and return a response when a call is made to a given API endpoint. Valid Statistic: Average Units: Milliseconds |
OperationName OperationName, ResourceName ApiKeyName, OperationName ApiKeyName, OperationName, ResourceName |
Amazon Location Service dimensions for metrics
You can use the dimensions in the following table to filter Amazon Location Service metrics.
Dimension | Description |
---|---|
OperationName |
Filters Amazon Location metrics for API operation with the specified operation name. |
OperationName, ResourceName |
Filter Amazon Location metrics for API operation with the specified operation name and resource name. |
ApiKeyName, OperationName |
Filter Amazon Location metrics for API operation with the specified operation name and using given API key name. |
ApiKeyName, OperationName, ResourceName |
Filter Amazon Location metrics for API operation with the specified operation name, resource name and using given API key name. |
OperationName, OperationVersion |
Filters Amazon Location metrics for API operation with the specified operation name. Amazon Location Service standalone Maps, Places, and Routes will be export metric to this dimension. |
OperationName, OperationVersion, ResourceName |
Filter Amazon Location metrics for API operation with the specified operation name, version, and Amazon Location resource name. Amazon Location standalone Maps, Places, and Routes will be export metric to this dimension. |
ApiKeyName, OperationName, OperationVersion |
Filter Amazon Location metrics for API operation with the specified operation name, version, and using given API key name. Amazon Location standalone Maps, Places, and Routes will be export metric to this dimension. |
ApiKeyName, OperationName, OperationVersion, ResourceName |
Filter Amazon Location metrics for API operation with the specified operation name, version, resource name and using given API key name. Amazon Location standalone Maps, Places, and Routes will be export metric to this dimension. |
View Amazon Location Service metrics
You can view metrics for Amazon Location Service on the Amazon CloudWatch console or by using the Amazon CloudWatch API.
To view metrics using the CloudWatch console
-
Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/
. -
In the navigation pane, choose Metrics.
-
On the All metrics tab, choose the Location namespace.
-
Select the type of metric to view.
-
Select the metric and add it to the chart.
For more information, see View Available Metrics in the Amazon CloudWatch User Guide.
Create CloudWatch alarms for Amazon Location Service metrics
You can use CloudWatch to set alarms on your Amazon Location Service metrics. For example, you can create an alarm in CloudWatch to send an email whenever an error count spike occurs.
The following topics give you a high-level overview of how to set alarms using CloudWatch. For detailed instructions, see Using Alarms in the Amazon CloudWatch User Guide.
To set alarms using the CloudWatch console
-
Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/
. -
In the navigation pane, choose Alarm.
-
Choose Create Alarm.
-
Choose Select metric.
-
On the All metrics tab, select the Location namespace.
-
Select a metric category.
-
Find the row with the metric you want to create an alarm for, then select the check box next to this row.
-
Choose Select metric.
-
Under Metric, fill in the values.
-
Specify the alarm Conditions.
-
Choose Next.
-
If you want to send a notification when the alarm conditions are met:
-
Under Alarm state trigger, select the alarm state to prompt a notification to be sent.
-
Under Select an SNS topic, choose Create new topic to create a new Amazon Simple Notification Service (Amazon SNS) topic. Enter the topic name and the email to send the notification to.
-
Under Send a notification to enter additional email addresses to send the notification to.
-
Choose Add notification. This list is saved and appears in the field for future alarms.
-
-
When done, choose Next.
-
Enter a name and description for the alarm, then choose Next.
-
Confirm the alarm details, then choose Next.
Note
When creating a new Amazon SNS topic, you must verify the email address before a notification can be sent. If the email is not verified, the notification will not be received when an alarm is initiated by a state change.
For more information about how to set alarms using the CloudWatch console, see Create an Alarm that Sends Email in the Amazon CloudWatch User Guide.
Use CloudWatch to monitor usage against quotas
You can create Amazon CloudWatch alarms to notify you when your utilization of a given quota exceeds a configurable threshold. This enables you to recognize when you are close to your quota limits, and either adapt your utilization to avoid cost overruns, or request a quota increase, if needed.
For information about how to use CloudWatch to monitor quotas, see Visualizing your service quotas and setting alarms in the Amazon CloudWatch User Guide.
CloudWatch metric examples for Amazon Location Service
You can use the GetMetricData API to retrieve metrics for Amazon Location.
-
For example, you can monitor
CallCount
and set an alarm for when a drop in number occurs.Monitoring the
CallCount
metrics forSendDeviceLocation
can help give you perspective on tracked assets. If theCallCount
drops, it means that tracked assets, such as a fleet of trucks, have stopped sending their current locations. Setting an alarm for this can help notify you an issue has occurred. -
For another example, you can monitor
ErrorCount
and set an alarm for when a spike in number occurs.Trackers must be associated with geofence collections in order for device locations to be evaluated against geofences. If you have a device fleet that requires continuous location updates, seeing the
CallCount
forBatchEvaluateGeofence
orBatchPutDevicePosition
drop to zero indicates that updates are no longer flowing.
The following is an example output for GetMetricData with the metrics for CallCount
and
ErrorCount
for creating map resources.
{ "StartTime": 1518867432, "EndTime": 1518868032, "MetricDataQueries": [ { "Id": "m1", "MetricStat": { "Metric": { "Namespace": "AWS/Location", "MetricName": "CallCount", "Dimensions": [ { "Name": "SendDeviceLocation", "Value": "100" } ] }, "Period": 300, "Stat": "SampleCount", "Unit": "Count" } }, { "Id": "m2", "MetricStat": { "Metric": { "Namespace": "AWS/Location", "MetricName": "ErrorCount", "Dimensions": [ { "Name": "AssociateTrackerConsumer", "Value": "0" } ] }, "Period": 1, "Stat": "SampleCount", "Unit": "Count" } } ] }