# Amazon Web Services - CloudWatch Logs Workflow Step
AWS CloudWatch can serve as a log-aggregator for the majority of logs generated within your cloud environment. This includes logs from the Cloud infrastructure, such as ELB logs and VPC Flow logs, as well as logs from the applications running on VM's and containers.
With CloudWatch Logs Insights, queries can be made to log groups within CloudWatch to retrieve statistics and visualizations from the logs. You can read more about CloudWatch Logs Insights here (opens new window)
The CloudWatch Logs workflow step plugin allows you to execute queries to your CloudWatch logs as a step within your Automation Job. This can be useful for generating reports as well as automated-debugging and troubleshooting during incidents.
# Getting Started
Authentication for the CloudWatch Logs plugin can be configured within the Job Step Plugin, at the Project level and at the Framework level. Alternatively, if you are self-hosting the Automation product in AWS, you can assign an IAM Role to the EC2 or container where the Automation server or cluster is running.
To configure credentials within the Job Step, place your AWS Access Key into the appropriate field, and choose your AWS Secret Key from Key Storage so that the field is populated with a Key Storage Path:
[Optionally] configure credentials at the Project level, navigate to Project Settings -> Edit Configuration -> Edit Configuration File and insert the following properties into the Config File:
project.aws.access_key
and project.aws.secret_key_path
and project.aws.region
:
[Optionally] configure credentials at the Framework level (spanning across multiple Projects), use Configuration Management
and fill in the AWS Access Key and AWS Secret Key Path and AWS Region fields:
# Permissions
For the plugin to be able to query CloudWatch using Logs Insights, the following permissions must be associated with the AWS Credentials or IAM Role used for authentication:
logs:StartQuery
and logs:GetQueryResults
.
# Making Queries to CloudWatch Logs Insights
- When configuring your Automation Job, add the Aws / CloudWatch / Logs Workflow Step.
- In the Query Settings section provide the CloudWatch log group that should be queries using Logs Insights.
- Select a Unit of Time and Past Time Range to filter the Logs Insights query time-range.
For example, if you want to query logs from the past day, you would select Days as the Unit of Time and 1 as the Past Time Range:
- Insert the Logs Insights query into the Query String text-box:
Tip
You can insert Job Options into the Query String using ${option.my_job_option}
notation. This allows users or events to provide variable parameters to the query at Job execution time.
# See it in Action
This plugin is used in one of the prebuilt Jobs in our Automated Diagnostics Solution. Try out the Solution to see how this plugin can be used as part of incident-response workflows.