View source: R/cloudwatchlogs_operations.R
cloudwatchlogs_start_query | R Documentation |
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.
See https://www.paws-r-sdk.com/docs/cloudwatchlogs_start_query/ for full documentation.
cloudwatchlogs_start_query(
logGroupName = NULL,
logGroupNames = NULL,
logGroupIdentifiers = NULL,
startTime,
endTime,
queryString,
limit = NULL
)
logGroupName |
The log group on which to perform the query. A |
logGroupNames |
The list of log groups to be queried. You can include up to 50 log groups. A |
logGroupIdentifiers |
The list of log groups to query. You can include up to 50 log groups. You can specify them by the log group name or ARN. If a log group that you're querying is in a source account and you're using a monitoring account, you must specify the ARN of the log group here. The query definition must also be defined in the monitoring account. If you specify an ARN, the ARN can't end with an asterisk (*). A |
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 |
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 |
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 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.