Skip to content

List Anomaly Group Time Series

lookoutmetrics_list_anomaly_group_time_series R Documentation

Gets a list of anomalous metrics for a measure in an anomaly group

Description

Gets a list of anomalous metrics for a measure in an anomaly group.

Usage

lookoutmetrics_list_anomaly_group_time_series(AnomalyDetectorArn,
  AnomalyGroupId, MetricName, MaxResults, NextToken)

Arguments

AnomalyDetectorArn

[required] The Amazon Resource Name (ARN) of the anomaly detector.

AnomalyGroupId

[required] The ID of the anomaly group.

MetricName

[required] The name of the measure field.

MaxResults

The maximum number of results to return.

NextToken

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

Value

A list with the following syntax:

list(
  AnomalyGroupId = "string",
  MetricName = "string",
  TimestampList = list(
    "string"
  ),
  NextToken = "string",
  TimeSeriesList = list(
    list(
      TimeSeriesId = "string",
      DimensionList = list(
        list(
          DimensionName = "string",
          DimensionValue = "string"
        )
      ),
      MetricValueList = list(
        123.0
      )
    )
  )
)

Request syntax

svc$list_anomaly_group_time_series(
  AnomalyDetectorArn = "string",
  AnomalyGroupId = "string",
  MetricName = "string",
  MaxResults = 123,
  NextToken = "string"
)