Retrieves metrics about specified crawlers.
glue_get_crawler_metrics(CrawlerNameList, MaxResults, NextToken)
A list with the following syntax:
list(
CrawlerMetricsList = list(
list(
CrawlerName = "string",
TimeLeftSeconds = 123.0,
StillEstimating = TRUE|FALSE,
LastRuntimeSeconds = 123.0,
MedianRuntimeSeconds = 123.0,
TablesCreated = 123,
TablesUpdated = 123,
TablesDeleted = 123
)
),
NextToken = "string"
)
A list of the names of crawlers about which to retrieve metrics.
The maximum size of a list to return.
A continuation token, if this is a continuation call.
svc$get_crawler_metrics(
CrawlerNameList = list(
"string"
),
MaxResults = 123,
NextToken = "string"
)