:doc:`Glue <../../glue>` / Paginator / GetCrawlerMetrics

*****************
GetCrawlerMetrics
*****************



.. py:class:: Glue.Paginator.GetCrawlerMetrics

  ::

    
    paginator = client.get_paginator('get_crawler_metrics')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Glue.Client.get_crawler_metrics`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetCrawlerMetrics>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          CrawlerNameList=[
              'string',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type CrawlerNameList: list
    :param CrawlerNameList: 

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

      

    
      - *(string) --* 

      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'CrawlerMetricsList': [
                {
                    'CrawlerName': 'string',
                    'TimeLeftSeconds': 123.0,
                    'StillEstimating': True|False,
                    'LastRuntimeSeconds': 123.0,
                    'MedianRuntimeSeconds': 123.0,
                    'TablesCreated': 123,
                    'TablesUpdated': 123,
                    'TablesDeleted': 123
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **CrawlerMetricsList** *(list) --* 

          A list of metrics for the specified crawler.

          
          

          - *(dict) --* 

            Metrics for a specified crawler.

            
            

            - **CrawlerName** *(string) --* 

              The name of the crawler.

              
            

            - **TimeLeftSeconds** *(float) --* 

              The estimated time left to complete a running crawl.

              
            

            - **StillEstimating** *(boolean) --* 

              True if the crawler is still estimating how long it will take to complete this run.

              
            

            - **LastRuntimeSeconds** *(float) --* 

              The duration of the crawler's most recent run, in seconds.

              
            

            - **MedianRuntimeSeconds** *(float) --* 

              The median duration of this crawler's runs, in seconds.

              
            

            - **TablesCreated** *(integer) --* 

              The number of tables created by this crawler.

              
            

            - **TablesUpdated** *(integer) --* 

              The number of tables updated by this crawler.

              
            

            - **TablesDeleted** *(integer) --* 

              The number of tables deleted by this crawler.

              
        
      
    