C# Class NCloudWatch.CloudWatchService

Inheritance: IDisposable
ファイルを表示 Open project: sklose/NCloudWatch Class Usage Examples

Private Properties

Property Type Description
Dispose void
LoadPerformanceCounter void
RegisterMetricForProcessing void
ReportMetric void

Public Methods

Method Description
AddMetric ( Metric metric ) : void

Adds the specified metric.

CloudWatchService ( ) : System

Initializes a new instance of the CloudWatchService class.

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

GetMetrics ( ) : Metric[]

Gets all metrics.

RemoveMetric ( string metricName ) : void

Removes the metric with the specified metricName.

SetAwsCredentials ( string accessKeyId, string secretAccessKey ) : void

Sets the Amazon Web Services credentials.

Start ( ) : void

Starts collecting and uploading metrics.

Stop ( ) : void

Stops collecting and uploading metrics.

Private Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources

LoadPerformanceCounter ( PerformanceCounterDescription performanceCounter ) : void
RegisterMetricForProcessing ( Metric metric ) : void
ReportMetric ( object state, bool timeout ) : void

Reports the metric that is defined by state to the Amazon CloudWatch service.

Method Details

AddMetric() public method

Adds the specified metric.
is null. A with the same name already exists.
public AddMetric ( Metric metric ) : void
metric Metric The metric.
return void

CloudWatchService() public method

Initializes a new instance of the CloudWatchService class.
public CloudWatchService ( ) : System
return System

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void

GetMetrics() public method

Gets all metrics.
public GetMetrics ( ) : Metric[]
return Metric[]

RemoveMetric() public method

Removes the metric with the specified metricName.
public RemoveMetric ( string metricName ) : void
metricName string Name of the metric.
return void

SetAwsCredentials() public method

Sets the Amazon Web Services credentials.
public SetAwsCredentials ( string accessKeyId, string secretAccessKey ) : void
accessKeyId string The access key id.
secretAccessKey string The secret access key.
return void

Start() public method

Starts collecting and uploading metrics.
public Start ( ) : void
return void

Stop() public method

Stops collecting and uploading metrics.
public Stop ( ) : void
return void