Cloudwatch graphmetric math function for particular time range

0

I need to calculate the over-all uptime percentage of my server using route 53 Healthcheckpercentagehealthy metric. I can able to generate dashboard for entire month which means 30 days and 24/7. But I need to generate dashboard for entire month but only for 8Am to 8Pm.

Is that possible? If it's possible please let me know the math function which will help me.

1개 답변
1

The CloudWatch metric math enables you to query multiple CloudWatch metrics and use math expressions to create new time series based on these metrics. However, these expressions do not support a feature to limit the time range or set up a window within a day such as from 8am to 8pm.

If you need this level of granular filtering, you might have to export your metrics to another service that provides more advanced analysis capabilities or use an AWS SDK or CLI to programmatically retrieve the metric data and then filter and analyze it in your own application or script.

For example

import boto3

client = boto3.client('cloudwatch')

response = client.get_metric_data(
    MetricDataQueries=[
        {
            'Id': 'm1',
            'MetricStat': {
                'Metric': {
                    'Namespace': 'AWS/Route53',
                    'MetricName': 'HealthCheckPercentageHealthy',
                    'Dimensions': [
                        {
                            'Name': 'HealthCheckId',
                            'Value': 'your_healthcheck_id'
                        },
                    ]
                },
                'Period': 300,
                'Stat': 'Average',
            },
            'ReturnData': True,
        },
    ],
    StartTime='2023-04-01T00:00:00Z',
    EndTime='2023-05-01T00:00:00Z',
)
profile picture
전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠