Interface ILoggingOptions
(deprecated) Configures log settings for the domain.
Namespace: Amazon.CDK.AWS.Elasticsearch
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILoggingOptions
Syntax (vb)
Public Interface ILoggingOptions
Remarks
Stability: Deprecated
ExampleMetadata: infused
Examples
var prodDomain = new Domain(this, "Domain", new DomainProps {
Version = ElasticsearchVersion.V7_1,
Capacity = new CapacityConfig {
MasterNodes = 5,
DataNodes = 20
},
Ebs = new EbsOptions {
VolumeSize = 20
},
ZoneAwareness = new ZoneAwarenessConfig {
AvailabilityZoneCount = 3
},
Logging = new LoggingOptions {
SlowSearchLogEnabled = true,
AppLogEnabled = true,
SlowIndexLogEnabled = true
}
});
Synopsis
Properties
App |
(deprecated) Specify if Elasticsearch application logging should be set up. |
App |
(deprecated) Log Elasticsearch application logs to this log group. |
Audit |
(deprecated) Specify if Elasticsearch audit logging should be set up. |
Audit |
(deprecated) Log Elasticsearch audit logs to this log group. |
Slow |
(deprecated) Specify if slow index logging should be set up. |
Slow |
(deprecated) Log slow indices to this log group. |
Slow |
(deprecated) Specify if slow search logging should be set up. |
Slow |
(deprecated) Log slow searches to this log group. |
Properties
AppLogEnabled
(deprecated) Specify if Elasticsearch application logging should be set up.
virtual Nullable<bool> AppLogEnabled { get; }
Property Value
System.
Remarks
Requires Elasticsearch version 5.1 or later.
Default: - false
Stability: Deprecated
AppLogGroup
(deprecated) Log Elasticsearch application logs to this log group.
virtual ILogGroup AppLogGroup { get; }
Property Value
Remarks
Default: - a new log group is created if app logging is enabled
Stability: Deprecated
AuditLogEnabled
(deprecated) Specify if Elasticsearch audit logging should be set up.
virtual Nullable<bool> AuditLogEnabled { get; }
Property Value
System.
Remarks
Requires Elasticsearch version 6.7 or later and fine grained access control to be enabled.
Default: - false
Stability: Deprecated
AuditLogGroup
(deprecated) Log Elasticsearch audit logs to this log group.
virtual ILogGroup AuditLogGroup { get; }
Property Value
Remarks
Default: - a new log group is created if audit logging is enabled
Stability: Deprecated
SlowIndexLogEnabled
(deprecated) Specify if slow index logging should be set up.
virtual Nullable<bool> SlowIndexLogEnabled { get; }
Property Value
System.
Remarks
Requires Elasticsearch version 5.1 or later.
Default: - false
Stability: Deprecated
SlowIndexLogGroup
(deprecated) Log slow indices to this log group.
virtual ILogGroup SlowIndexLogGroup { get; }
Property Value
Remarks
Default: - a new log group is created if slow index logging is enabled
Stability: Deprecated
SlowSearchLogEnabled
(deprecated) Specify if slow search logging should be set up.
virtual Nullable<bool> SlowSearchLogEnabled { get; }
Property Value
System.
Remarks
Requires Elasticsearch version 5.1 or later.
Default: - false
Stability: Deprecated
SlowSearchLogGroup
(deprecated) Log slow searches to this log group.
virtual ILogGroup SlowSearchLogGroup { get; }
Property Value
Remarks
Default: - a new log group is created if slow search logging is enabled
Stability: Deprecated