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
( |
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"
)
Request syntax¶
svc$list_anomaly_group_related_metrics(
AnomalyDetectorArn = "string",
AnomalyGroupId = "string",
RelationshipTypeFilter = "CAUSE_OF_INPUT_ANOMALY_GROUP"|"EFFECT_OF_INPUT_ANOMALY_GROUP",
MaxResults = 123,
NextToken = "string"
)