List Anomaly Group Related Metrics
lookoutmetrics_list_anomaly_group_related_metrics | R Documentation |
Returns a list of measures that are potential causes or effects of an anomaly group¶
Description¶
Returns a list of measures that are potential causes or effects of an anomaly group.
Usage¶
lookoutmetrics_list_anomaly_group_related_metrics(AnomalyDetectorArn,
AnomalyGroupId, RelationshipTypeFilter, MaxResults, NextToken)
Arguments¶
AnomalyDetectorArn
[required] The Amazon Resource Name (ARN) of the anomaly detector.
AnomalyGroupId
[required] The ID of the anomaly group.
RelationshipTypeFilter
Filter for potential causes (
CAUSE_OF_INPUT_ANOMALY_GROUP
) or downstream effects (EFFECT_OF_INPUT_ANOMALY_GROUP
) of the anomaly group.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(
InterMetricImpactList = list(
list(
MetricName = "string",
AnomalyGroupId = "string",
RelationshipType = "CAUSE_OF_INPUT_ANOMALY_GROUP"|"EFFECT_OF_INPUT_ANOMALY_GROUP",
ContributionPercentage = 123.0
)
),
NextToken = "string"
)