Skip to content

Get Crawler Metrics

glue_get_crawler_metrics R Documentation

Retrieves metrics about specified crawlers

Description

Retrieves metrics about specified crawlers.

Usage

glue_get_crawler_metrics(CrawlerNameList, MaxResults, NextToken)

Arguments

CrawlerNameList

A list of the names of crawlers about which to retrieve metrics.

MaxResults

The maximum size of a list to return.

NextToken

A continuation token, if this is a continuation call.

Value

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"
)

Request syntax

svc$get_crawler_metrics(
  CrawlerNameList = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)