paws.management (version 0.1.0)

cloudwatchlogs_start_query: Schedules a query of a log group using CloudWatch Logs Insights

Description

Schedules a query of a log group using CloudWatch Logs Insights. You specify the log group and time range to query, and the query string to use.

Usage

cloudwatchlogs_start_query(logGroupName, startTime, endTime,
  queryString, limit)

Arguments

logGroupName

[required] The log group on which to perform the query.

startTime

[required] The beginning of the time range to query. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

endTime

[required] The end of the time range to query. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.

queryString

[required] The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.

limit

The maximum number of log events to return in the query. If the query string uses the fields command, only the specified fields and their values are returned.

Request syntax

svc$start_query(
  logGroupName = "string",
  startTime = 123,
  endTime = 123,
  queryString = "string",
  limit = 123
)

Details

For more information, see CloudWatch Logs Insights Query Syntax.