C# Class NCloudWatch.CloudWatchService

Inheritance: IDisposable
Afficher le fichier Open project: sklose/NCloudWatch Class Usage Examples

Private Properties

Свойство Type Description
Dispose void
LoadPerformanceCounter void
RegisterMetricForProcessing void
ReportMetric void

Méthodes publiques

Méthode 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

Méthode 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 méthode

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

CloudWatchService() public méthode

Initializes a new instance of the CloudWatchService class.
public CloudWatchService ( ) : System
Résultat System

Dispose() public méthode

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

GetMetrics() public méthode

Gets all metrics.
public GetMetrics ( ) : Metric[]
Résultat Metric[]

RemoveMetric() public méthode

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

SetAwsCredentials() public méthode

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.
Résultat void

Start() public méthode

Starts collecting and uploading metrics.
public Start ( ) : void
Résultat void

Stop() public méthode

Stops collecting and uploading metrics.
public Stop ( ) : void
Résultat void