Skip to content

Update Monitor

cloudwatchinternetmonitor_update_monitor R Documentation

Updates a monitor

Description

Updates a monitor. You can update a monitor to change the percentage of traffic to monitor or the maximum number of city-networks (locations and ASNs), to add or remove resources, or to change the status of the monitor. Note that you can't change the name of a monitor.

The city-network maximum that you choose is the limit, but you only pay for the number of city-networks that are actually monitored. For more information, see Choosing a city-network maximum value in the Amazon CloudWatch User Guide.

Usage

cloudwatchinternetmonitor_update_monitor(MonitorName, ResourcesToAdd,
  ResourcesToRemove, Status, ClientToken, MaxCityNetworksToMonitor,
  InternetMeasurementsLogDelivery, TrafficPercentageToMonitor,
  HealthEventsConfig)

Arguments

MonitorName

[required] The name of the monitor.

ResourcesToAdd

The resources to include in a monitor, which you provide as a set of Amazon Resource Names (ARNs). Resources can be VPCs, NLBs, Amazon CloudFront distributions, or Amazon WorkSpaces directories.

You can add a combination of VPCs and CloudFront distributions, or you can add WorkSpaces directories, or you can add NLBs. You can't add NLBs or WorkSpaces directories together with any other resources.

If you add only Amazon Virtual Private Clouds resources, at least one VPC must have an Internet Gateway attached to it, to make sure that it has internet connectivity.

ResourcesToRemove

The resources to remove from a monitor, which you provide as a set of Amazon Resource Names (ARNs).

Status

The status for a monitor. The accepted values for Status with the update_monitor API call are the following: ACTIVE and INACTIVE. The following values are not accepted: PENDING, and ERROR.

ClientToken

A unique, case-sensitive string of up to 64 ASCII characters that you specify to make an idempotent API request. You should not reuse the same client token for other API requests.

MaxCityNetworksToMonitor

The maximum number of city-networks to monitor for your application. A city-network is the location (city) where clients access your application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources through. Setting this limit can help control billing costs.

InternetMeasurementsLogDelivery

Publish internet measurements for Internet Monitor to another location, such as an Amazon S3 bucket. The measurements are also published to Amazon CloudWatch Logs.

TrafficPercentageToMonitor

The percentage of the internet-facing traffic for your application that you want to monitor with this monitor. If you set a city-networks maximum, that limit overrides the traffic percentage that you set.

To learn more, see Choosing an application traffic percentage to monitor in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.

HealthEventsConfig

The list of health score thresholds. A threshold percentage for health scores, along with other configuration information, determines when Internet Monitor creates a health event when there's an internet issue that affects your application end users.

For more information, see Change health event thresholds in the Internet Monitor section of the CloudWatch User Guide.

Value

A list with the following syntax:

list(
  MonitorArn = "string",
  Status = "PENDING"|"ACTIVE"|"INACTIVE"|"ERROR"
)

Request syntax

svc$update_monitor(
  MonitorName = "string",
  ResourcesToAdd = list(
    "string"
  ),
  ResourcesToRemove = list(
    "string"
  ),
  Status = "PENDING"|"ACTIVE"|"INACTIVE"|"ERROR",
  ClientToken = "string",
  MaxCityNetworksToMonitor = 123,
  InternetMeasurementsLogDelivery = list(
    S3Config = list(
      BucketName = "string",
      BucketPrefix = "string",
      LogDeliveryStatus = "ENABLED"|"DISABLED"
    )
  ),
  TrafficPercentageToMonitor = 123,
  HealthEventsConfig = list(
    AvailabilityScoreThreshold = 123.0,
    PerformanceScoreThreshold = 123.0,
    AvailabilityLocalHealthEventsConfig = list(
      Status = "ENABLED"|"DISABLED",
      HealthScoreThreshold = 123.0,
      MinTrafficImpact = 123.0
    ),
    PerformanceLocalHealthEventsConfig = list(
      Status = "ENABLED"|"DISABLED",
      HealthScoreThreshold = 123.0,
      MinTrafficImpact = 123.0
    )
  )
)