Class: Aws::Glue::Types::CrawlerMetrics
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::CrawlerMetrics
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Metrics for a specified crawler.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #crawler_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the crawler. 
- 
  
    
      #last_runtime_seconds  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The duration of the crawler’s most recent run, in seconds. 
- 
  
    
      #median_runtime_seconds  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The median duration of this crawler’s runs, in seconds. 
- 
  
    
      #still_estimating  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    True if the crawler is still estimating how long it will take to complete this run. 
- 
  
    
      #tables_created  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of tables created by this crawler. 
- 
  
    
      #tables_deleted  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of tables deleted by this crawler. 
- 
  
    
      #tables_updated  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The number of tables updated by this crawler. 
- 
  
    
      #time_left_seconds  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The estimated time left to complete a running crawl. 
Instance Attribute Details
#crawler_name ⇒ String
The name of the crawler.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#last_runtime_seconds ⇒ Float
The duration of the crawler’s most recent run, in seconds.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#median_runtime_seconds ⇒ Float
The median duration of this crawler’s runs, in seconds.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#still_estimating ⇒ Boolean
True if the crawler is still estimating how long it will take to complete this run.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#tables_created ⇒ Integer
The number of tables created by this crawler.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#tables_deleted ⇒ Integer
The number of tables deleted by this crawler.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#tables_updated ⇒ Integer
The number of tables updated by this crawler.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end | 
#time_left_seconds ⇒ Float
The estimated time left to complete a running crawl.
| 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 | # File 'lib/aws-sdk-glue/types.rb', line 4620 class CrawlerMetrics < Struct.new( :crawler_name, :time_left_seconds, :still_estimating, :last_runtime_seconds, :median_runtime_seconds, :tables_created, :tables_updated, :tables_deleted) SENSITIVE = [] include Aws::Structure end |