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

PerformanceCaptureConfig

import type { PerformanceCaptureConfig } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";

Performance Capture configuration.

interface PerformanceCaptureConfig {
enabled?: boolean;
probeThreshold?: number;
probingIntervalSeconds?: number;
runningThreadsThreshold?: number;
secondsBehindSourceThreshold?: number;
transactionDurationThreshold?: number;
}

§Properties

§
enabled?: boolean
[src]

Optional. Enable or disable the Performance Capture feature.

§
probeThreshold?: number
[src]

Optional. The minimum number of consecutive readings above threshold that triggers instance state capture.

§
probingIntervalSeconds?: number
[src]

Optional. The time interval in seconds between any two probes.

§
runningThreadsThreshold?: number
[src]

Optional. The minimum number of server threads running to trigger the capture on primary.

§
secondsBehindSourceThreshold?: number
[src]

Optional. The minimum number of seconds replica must be lagging behind primary to trigger capture on replica.

§
transactionDurationThreshold?: number
[src]

Optional. The amount of time in seconds that a transaction needs to have been open before the watcher starts recording it.