> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CloudWatch Logs Get Log Events

Lists log events from the specified log stream. You can list all of the log events or filter using a time range.

By default, this operation returns as many log events as can fit in a response size of 1MB (up to 10,000 log events). You can get additional log events by specifying one of the tokens in a subsequent call. This operation can return empty results while there are more log events available through the token.

<Note>
  External Documentation

  To learn more, visit the [AWS documentation](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                                                                                               |
  | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | AWS Region(s)   | Enter the desired AWS Region(s).<br /><br />To execute the action in multiple regions, provide a comma-separated list.<br />For example: `us-east-1,eu-west-2`.<br /><br />If you wish to run the action in all available regions, use the asterisk symbol (`*`) instead. |
  | End Time        | The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.<br />Events with a timestamp equal to or later than this time are not included.                                                                                        |
  | Log Group Name  | The name of the log group.                                                                                                                                                                                                                                                |
  | Log Stream Name | The name of the log stream.                                                                                                                                                                                                                                               |
  | Start Time      | The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.<br />Events with a timestamp equal to this time or later than this time are included.<br />Events with a timestamp earlier than this time are not included.          |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                        | Description                                                                                                                                                                                                                                                     |
  | -------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Disable XML To JSON Auto Convert | When checked, XML responses are not automatically converted into JSON format.                                                                                                                                                                                   |
  | Limit                            | The maximum number of log events returned.<br />If you don't specify a value, the maximum is as many log events as can fit in a response size of 1 MB, up to 10,000 log events.                                                                                 |
  | Next Token                       | The token for the next set of items to return. (You received this token from a previous call.)<br />Using this token works only when you specify true for startFromHead.                                                                                        |
  | Start From Head                  | If the value is true, the earliest log events are returned first.<br />If the value is false, the latest log events are returned first. The default value is false.<br />If you are using nextToken in this operation, you must specify true for startFromHead. |
</div>

## Example Output

```json theme={"dark"}
{
	"events": [
		{
			"ingestionTime": 0,
			"message": "string",
			"timestamp": 0
		}
	],
	"nextBackwardToken": "The token for the next set of items to return. The token expires after 24 hours.",
	"nextForwardToken": "The token for the next set of items to return. The token expires after 24 hours."
}
```

## Workflow Library Example

[Cloudwatch Logs Get Log Events with Aws and Send Results Via Email](https://library.blinkops.com/workflows/cloudwatch-logs-get-log-events-with-aws-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/cloudwatch-logs-get-log-events-with-aws-and-send-results-via-email/canvas" />
</div>
