共用方式為


CassandraClusterPublicStatusDataCentersItemNodesItem Constructors

Definition

Overloads

CassandraClusterPublicStatusDataCentersItemNodesItem()

Initializes a new instance of the CassandraClusterPublicStatusDataCentersItemNodesItem class.

CassandraClusterPublicStatusDataCentersItemNodesItem(String, String, String, String, IList<String>, Nullable<Int32>, String, String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Double>)

Initializes a new instance of the CassandraClusterPublicStatusDataCentersItemNodesItem class.

CassandraClusterPublicStatusDataCentersItemNodesItem()

Initializes a new instance of the CassandraClusterPublicStatusDataCentersItemNodesItem class.

public CassandraClusterPublicStatusDataCentersItemNodesItem ();
Public Sub New ()

Applies to

CassandraClusterPublicStatusDataCentersItemNodesItem(String, String, String, String, IList<String>, Nullable<Int32>, String, String, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Double>)

Initializes a new instance of the CassandraClusterPublicStatusDataCentersItemNodesItem class.

public CassandraClusterPublicStatusDataCentersItemNodesItem (string address = default, string state = default, string status = default, string load = default, System.Collections.Generic.IList<string> tokens = default, int? size = default, string hostID = default, string rack = default, string timestamp = default, long? diskUsedKB = default, long? diskFreeKB = default, long? memoryUsedKB = default, long? memoryBuffersAndCachedKB = default, long? memoryFreeKB = default, long? memoryTotalKB = default, double? cpuUsage = default);
new Microsoft.Azure.Management.CosmosDB.Models.CassandraClusterPublicStatusDataCentersItemNodesItem : string * string * string * string * System.Collections.Generic.IList<string> * Nullable<int> * string * string * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<double> -> Microsoft.Azure.Management.CosmosDB.Models.CassandraClusterPublicStatusDataCentersItemNodesItem
Public Sub New (Optional address As String = Nothing, Optional state As String = Nothing, Optional status As String = Nothing, Optional load As String = Nothing, Optional tokens As IList(Of String) = Nothing, Optional size As Nullable(Of Integer) = Nothing, Optional hostID As String = Nothing, Optional rack As String = Nothing, Optional timestamp As String = Nothing, Optional diskUsedKB As Nullable(Of Long) = Nothing, Optional diskFreeKB As Nullable(Of Long) = Nothing, Optional memoryUsedKB As Nullable(Of Long) = Nothing, Optional memoryBuffersAndCachedKB As Nullable(Of Long) = Nothing, Optional memoryFreeKB As Nullable(Of Long) = Nothing, Optional memoryTotalKB As Nullable(Of Long) = Nothing, Optional cpuUsage As Nullable(Of Double) = Nothing)

Parameters

address
String

The node's IP address.

state
String

Possible values include: 'Normal', 'Leaving', 'Joining', 'Moving', 'Stopped'

status
String
load
String

The amount of file system data in the data directory (e.g., 47.66 kB), excluding all content in the snapshots subdirectories. Because all SSTable data files are included, any data that is not cleaned up (such as TTL-expired cells or tombstones) is counted.

tokens
IList<String>

List of tokens this node covers.

size
Nullable<Int32>
hostID
String

The network ID of the node.

rack
String

The rack this node is part of.

timestamp
String

The timestamp when these statistics were captured.

diskUsedKB
Nullable<Int64>

The amount of disk used, in kB, of the directory /var/lib/cassandra.

diskFreeKB
Nullable<Int64>

The amount of disk free, in kB, of the directory /var/lib/cassandra.

memoryUsedKB
Nullable<Int64>

Used memory (calculated as total - free - buffers - cache), in kB.

memoryBuffersAndCachedKB
Nullable<Int64>

Memory used by kernel buffers (Buffers in /proc/meminfo) and page cache and slabs (Cached and SReclaimable in /proc/meminfo), in kB.

memoryFreeKB
Nullable<Int64>

Unused memory (MemFree and SwapFree in /proc/meminfo), in kB.

memoryTotalKB
Nullable<Int64>

Total installed memory (MemTotal and SwapTotal in /proc/meminfo), in kB.

cpuUsage
Nullable<Double>

A float representing the current system-wide CPU utilization as a percentage.

Applies to