Lists the specified metric filters
Source:R/cloudwatchlogs_operations.R
cloudwatchlogs_describe_metric_filters.RdLists the specified metric filters. You can list all of the metric filters or filter the results by log name, prefix, metric name, or metric namespace. The results are ASCII-sorted by filter name.
See https://www.paws-r-sdk.com/docs/cloudwatchlogs_describe_metric_filters/ for full documentation.
Usage
cloudwatchlogs_describe_metric_filters(
logGroupName = NULL,
filterNamePrefix = NULL,
nextToken = NULL,
limit = NULL,
metricName = NULL,
metricNamespace = NULL
)Arguments
- logGroupName
The name of the log group.
- filterNamePrefix
The prefix to match. CloudWatch Logs uses the value that you set here only if you also include the
logGroupNameparameter in your request.- nextToken
The token for the next set of items to return. (You received this token from a previous call.)
- limit
The maximum number of items returned. If you don't specify a value, the default is up to 50 items.
- metricName
Filters results to include only those with the specified metric name. If you include this parameter in your request, you must also include the
metricNamespaceparameter.- metricNamespace
Filters results to include only those in the specified namespace. If you include this parameter in your request, you must also include the
metricNameparameter.