Beispiel #1
0
 public override string ToString() =>
 $"InstanceId: {NodeInfo.InstanceId}\n" + $"InternalTcp: {NodeInfo.InternalTcp}\n" +
 $"InternalSecureTcp: {NodeInfo.InternalSecureTcp}\n" + $"ExternalTcp: {NodeInfo.ExternalTcp}\n" +
 $"ExternalSecureTcp: {NodeInfo.ExternalSecureTcp}\n" + $"InternalHttp: {NodeInfo.InternalHttp}\n" +
 $"ExternalHttp: {NodeInfo.ExternalHttp}\n" +
 $"EnableTrustedAuth: {EnableTrustedAuth}\n" +
 $"Certificate: {(Certificate == null ? "n/a" : Certificate.ToString(true))}\n" +
 $"LogHttpRequests: {LogHttpRequests}\n" + $"WorkerThreads: {WorkerThreads}\n" +
 $"DiscoverViaDns: {DiscoverViaDns}\n" + $"ClusterDns: {ClusterDns}\n" +
 $"GossipSeeds: {string.Join(",", GossipSeeds.Select(x => x.ToString()))}\n" +
 $"ClusterNodeCount: {ClusterNodeCount}\n" + $"MinFlushDelay: {MinFlushDelay}\n" +
 $"PrepareAckCount: {PrepareAckCount}\n" + $"CommitAckCount: {CommitAckCount}\n" +
 $"PrepareTimeout: {PrepareTimeout}\n" + $"CommitTimeout: {CommitTimeout}\n" +
 $"DisableInternalTls: {DisableInternalTls}\n" + $"DisableExternalTls: {DisableExternalTls}\n" +
 $"StatsPeriod: {StatsPeriod}\n" + $"StatsStorage: {StatsStorage}\n" +
 $"AuthenticationProviderFactory Type: {AuthenticationProviderFactory.GetType()}\n" +
 $"AuthorizationProviderFactory  Type: {AuthorizationProviderFactory.GetType()}\n" +
 $"NodePriority: {NodePriority}" + $"GossipInterval: {GossipInterval}\n" +
 $"GossipAllowedTimeDifference: {GossipAllowedTimeDifference}\n" +
 $"GossipTimeout: {GossipTimeout}\n" + $"HistogramEnabled: {EnableHistograms}\n" +
 $"HTTPCachingDisabled: {DisableHTTPCaching}\n" + $"IndexPath: {Index}\n" +
 $"ScavengeHistoryMaxAge: {ScavengeHistoryMaxAge}\n" +
 $"ConnectionPendingSendBytesThreshold: {ConnectionPendingSendBytesThreshold}\n" +
 $"ReduceFileCachePressure: {ReduceFileCachePressure}\n" +
 $"InitializationThreads: {InitializationThreads}\n" +
 $"DisableFirstLevelHttpAuthorization: {DisableFirstLevelHttpAuthorization}\n" +
 $"ReadOnlyReplica: {ReadOnlyReplica}\n" +
 $"UnsafeAllowSurplusNodes: {UnsafeAllowSurplusNodes}\n" +
 $"DeadMemberRemovalPeriod: {DeadMemberRemovalPeriod}\n";