Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CrawlerMetrics

import type { CrawlerMetrics } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Metrics for a specified crawler.

interface CrawlerMetrics {
CrawlerName?: string | null;
LastRuntimeSeconds?: number | null;
MedianRuntimeSeconds?: number | null;
StillEstimating?: boolean | null;
TablesCreated?: number | null;
TablesDeleted?: number | null;
TablesUpdated?: number | null;
TimeLeftSeconds?: number | null;
}

§Properties

§
CrawlerName?: string | null
[src]

The name of the crawler.

§
LastRuntimeSeconds?: number | null
[src]

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

§
MedianRuntimeSeconds?: number | null
[src]

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

§
StillEstimating?: boolean | null
[src]

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

§
TablesCreated?: number | null
[src]

The number of tables created by this crawler.

§
TablesDeleted?: number | null
[src]

The number of tables deleted by this crawler.

§
TablesUpdated?: number | null
[src]

The number of tables updated by this crawler.

§
TimeLeftSeconds?: number | null
[src]

The estimated time left to complete a running crawl.