|
NAMEPaws::CloudWatch - Perl Interface to AWS Amazon CloudWatchSYNOPSISuse Paws; my $obj = Paws->service('CloudWatch')->new; my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); DESCRIPTIONThis is the Amazon CloudWatch API Reference. This guide provides detailed information about Amazon CloudWatch actions, data types, parameters, and errors. For detailed information about Amazon CloudWatch features and their associated API calls, go to the Amazon CloudWatch Developer Guide.Amazon CloudWatch is a web service that enables you to publish, monitor, and manage various metrics, as well as configure alarm actions based on data from metrics. For more information about this product go to http://aws.amazon.com/cloudwatch. For information about the namespace, metric names, and dimensions that other Amazon Web Services products use to send metrics to Cloudwatch, go to Amazon CloudWatch Metrics, Namespaces, and Dimensions Reference in the Amazon CloudWatch Developer Guide. Use the following links to get started using the Amazon CloudWatch API Reference:
In addition to using the Amazon CloudWatch API, you can also use the following SDKs and third-party libraries to access Amazon CloudWatch programmatically.
Developers in the AWS developer community also provide their own libraries, which you can find at the following AWS developer centers:
METHODSDeleteAlarms(AlarmNames => ArrayRef[Str])Each argument is described in detail in: Paws::CloudWatch::DeleteAlarmsReturns: nothing Deletes all specified alarms. In the event of an error, no alarms are deleted. DescribeAlarmHistory([AlarmName => Str, EndDate => Str, HistoryItemType => Str, MaxRecords => Int, NextToken => Str, StartDate => Str])Each argument is described in detail in: Paws::CloudWatch::DescribeAlarmHistoryReturns: a Paws::CloudWatch::DescribeAlarmHistoryOutput instance Retrieves history for the specified alarm. Filter alarms by date range or item type. If an alarm name is not specified, Amazon CloudWatch returns histories for all of the owner's alarms. DescribeAlarms([ActionPrefix => Str, AlarmNamePrefix => Str, AlarmNames => ArrayRef[Str], MaxRecords => Int, NextToken => Str, StateValue => Str])Each argument is described in detail in: Paws::CloudWatch::DescribeAlarmsReturns: a Paws::CloudWatch::DescribeAlarmsOutput instance Retrieves alarms with the specified names. If no name is specified, all alarms for the user are returned. Alarms can be retrieved by using only a prefix for the alarm name, the alarm state, or a prefix for any action. DescribeAlarmsForMetric(MetricName => Str, Namespace => Str, [Dimensions => ArrayRef[Paws::CloudWatch::Dimension], Period => Int, Statistic => Str, Unit => Str])Each argument is described in detail in: Paws::CloudWatch::DescribeAlarmsForMetricReturns: a Paws::CloudWatch::DescribeAlarmsForMetricOutput instance Retrieves all alarms for a single metric. Specify a statistic, period, or unit to filter the set of alarms further. DisableAlarmActions(AlarmNames => ArrayRef[Str])Each argument is described in detail in: Paws::CloudWatch::DisableAlarmActionsReturns: nothing Disables actions for the specified alarms. When an alarm's actions are disabled the alarm's state may change, but none of the alarm's actions will execute. EnableAlarmActions(AlarmNames => ArrayRef[Str])Each argument is described in detail in: Paws::CloudWatch::EnableAlarmActionsReturns: nothing Enables actions for the specified alarms. GetMetricStatistics(EndTime => Str, MetricName => Str, Namespace => Str, Period => Int, StartTime => Str, Statistics => ArrayRef[Str], [Dimensions => ArrayRef[Paws::CloudWatch::Dimension], Unit => Str])Each argument is described in detail in: Paws::CloudWatch::GetMetricStatisticsReturns: a Paws::CloudWatch::GetMetricStatisticsOutput instance Gets statistics for the specified metric. The maximum number of data points returned from a single "GetMetricStatistics" request is 1,440, wereas the maximum number of data points that can be queried is 50,850. If you make a request that generates more than 1,440 data points, Amazon CloudWatch returns an error. In such a case, you can alter the request by narrowing the specified time range or increasing the specified period. Alternatively, you can make multiple requests across adjacent time ranges. Amazon CloudWatch aggregates data points based on the length of the "period" that you specify. For example, if you request statistics with a one-minute granularity, Amazon CloudWatch aggregates data points with time stamps that fall within the same one-minute period. In such a case, the data points queried can greatly outnumber the data points returned. The following examples show various statistics allowed by the data point query maximum of 50,850 when you call "GetMetricStatistics" on Amazon EC2 instances with detailed (one-minute) monitoring enabled:
For information about the namespace, metric names, and dimensions that other Amazon Web Services products use to send metrics to Cloudwatch, go to Amazon CloudWatch Metrics, Namespaces, and Dimensions Reference in the Amazon CloudWatch Developer Guide. ListMetrics([Dimensions => ArrayRef[Paws::CloudWatch::DimensionFilter], MetricName => Str, Namespace => Str, NextToken => Str])Each argument is described in detail in: Paws::CloudWatch::ListMetricsReturns: a Paws::CloudWatch::ListMetricsOutput instance Returns a list of valid metrics stored for the AWS account owner. Returned metrics can be used with GetMetricStatistics to obtain statistical data for a given metric. PutMetricAlarm(AlarmName => Str, ComparisonOperator => Str, EvaluationPeriods => Int, MetricName => Str, Namespace => Str, Period => Int, Statistic => Str, Threshold => Num, [ActionsEnabled => Bool, AlarmActions => ArrayRef[Str], AlarmDescription => Str, Dimensions => ArrayRef[Paws::CloudWatch::Dimension], InsufficientDataActions => ArrayRef[Str], OKActions => ArrayRef[Str], Unit => Str])Each argument is described in detail in: Paws::CloudWatch::PutMetricAlarmReturns: nothing Creates or updates an alarm and associates it with the specified Amazon CloudWatch metric. Optionally, this operation can associate one or more Amazon Simple Notification Service resources with the alarm. When this operation creates an alarm, the alarm state is immediately set to "INSUFFICIENT_DATA". The alarm is evaluated and its "StateValue" is set appropriately. Any actions associated with the "StateValue" is then executed. PutMetricData(MetricData => ArrayRef[Paws::CloudWatch::MetricDatum], Namespace => Str)Each argument is described in detail in: Paws::CloudWatch::PutMetricDataReturns: nothing Publishes metric data points to Amazon CloudWatch. Amazon Cloudwatch associates the data points with the specified metric. If the specified metric does not exist, Amazon CloudWatch creates the metric. It can take up to fifteen minutes for a new metric to appear in calls to the ListMetrics action. The size of a PutMetricData request is limited to 8 KB for HTTP GET requests and 40 KB for HTTP POST requests. Although the "Value" parameter accepts numbers of type "Double", Amazon CloudWatch truncates values with very large exponents. Values with base-10 exponents greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10 exponents less than -130 (1 x 10^-130) are also truncated. Data that is timestamped 24 hours or more in the past may take in excess of 48 hours to become available from submission time using "GetMetricStatistics". SetAlarmState(AlarmName => Str, StateReason => Str, StateValue => Str, [StateReasonData => Str])Each argument is described in detail in: Paws::CloudWatch::SetAlarmStateReturns: nothing Temporarily sets the state of an alarm. When the updated "StateValue" differs from the previous value, the action configured for the appropriate state is invoked. This is not a permanent change. The next periodic alarm check (in about a minute) will set the alarm to its actual state. SEE ALSOThis service class forms part of PawsBUGS and CONTRIBUTIONSThe source code is located here: https://github.com/pplu/aws-sdk-perlPlease report bugs to: https://github.com/pplu/aws-sdk-perl/issues
Visit the GSP FreeBSD Man Page Interface. |