aws.glue.get_crawler_metrics
Example SQL Queries
SELECT * FROMaws.glue.get_crawler_metrics;Description
Retrieves metrics about specified crawlers.
Table Definition
| Column Name | Column Data Type |
|---|---|
| crawler_name_list Input Column A list of the names of crawlers about which to retrieve metrics. | VARCHAR[] |
Show child fields
| |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| crawler_name The name of the crawler. | VARCHAR |
| last_runtime_seconds The duration of the crawler's most recent run, in seconds. | DOUBLE |
| median_runtime_seconds The median duration of this crawler's runs, in seconds. | DOUBLE |
| still_estimating True if the crawler is still estimating how long it will take to complete this run. | BOOLEAN |
| tables_created The number of tables created by this crawler. | BIGINT |
| tables_deleted The number of tables deleted by this crawler. | BIGINT |
| tables_updated The number of tables updated by this crawler. | BIGINT |
| time_left_seconds The estimated time left to complete a running crawl. | DOUBLE |