Show / Hide Table of Contents

Class InsightsConfig

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

Inheritance
System.Object
InsightsConfig
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class InsightsConfig : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

QueryInsightsEnabled

Whether Query Insights feature is enabled.

Declaration
[JsonProperty("queryInsightsEnabled")]
public virtual bool? QueryInsightsEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

QueryPlansPerMinute

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

Declaration
[JsonProperty("queryPlansPerMinute")]
public virtual int? QueryPlansPerMinute { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

QueryStringLength

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.

Declaration
[JsonProperty("queryStringLength")]
public virtual int? QueryStringLength { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

RecordApplicationTags

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

Declaration
[JsonProperty("recordApplicationTags")]
public virtual bool? RecordApplicationTags { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

RecordClientAddress

Whether Query Insights will record client address when enabled.

Declaration
[JsonProperty("recordClientAddress")]
public virtual bool? RecordClientAddress { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top