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

InsightsConfig

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

Insights configuration. This specifies when Cloud SQL Insights feature is enabled and optional configuration.

interface InsightsConfig {
queryInsightsEnabled?: boolean;
queryPlansPerMinute?: number;
queryStringLength?: number;
recordApplicationTags?: boolean;
recordClientAddress?: boolean;
}

§Properties

§
queryInsightsEnabled?: boolean
[src]

Whether Query Insights feature is enabled.

§
queryPlansPerMinute?: number
[src]

Number of query execution plans captured by Insights per minute for all queries combined. Default is 5.

§
queryStringLength?: number
[src]

Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-4500 bytes. Query length more than this field value will be truncated to this value. When unset, query length will be the default value. Changing query length will restart the database.

§
recordApplicationTags?: boolean
[src]

Whether Query Insights will record application tags from query when enabled.

§
recordClientAddress?: boolean
[src]

Whether Query Insights will record client address when enabled.