Class MonitorReportingOptions
Options related to Monitor Reporting. This feature is not supported with Apache Cassandra clusters for now, so in that case this feature will always be disabled even if it is set as enabled with SetMonitorReportingEnabled(bool).
Inheritance
object
MonitorReportingOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Cassandra
Assembly: Cassandra.dll
Syntax
public sealed class MonitorReportingOptions
Properties
MonitorReportingEnabled
This property is used to determine whether Monitor Reporting is enabled or not.
Declaration
public bool MonitorReportingEnabled { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
SetMonitorReportingEnabled(bool)
Determines whether or not events are sent to the connected cluster for monitor reporting.
Declaration
public MonitorReportingOptions SetMonitorReportingEnabled(bool monitorReportingEnabled)
Parameters
Type | Name | Description |
---|---|---|
bool | monitorReportingEnabled | Flag that controls whether monitor reporting is enabled or disabled. |
Returns
Type | Description |
---|---|
MonitorReportingOptions | This MonitorReportingOptions instance. |
Remarks
If not set through this method, the default value (
true
) will be used.