1

CloudWatch Dashboard

I'm trying to set up a custom dashboard in CloudWatch, and don't understand how "Period" is affecting how my data is being displayed.

Couldn't find any coverage of this variable in the AWS documentation, so any guidance would be appreciated!

Chuck Quinn IV
  • 186
  • 1
  • 11

1 Answers1

2

Period is the width of the time range of each datapoint on a graph and it's used to define the granularity at which you want to view your data.

For example, if you're graphing total number of visits to your site during a day you could set the period to 1h, which would plot 24 datapoints and you will see how many visitors you had in each hour of that day. If you set the period to 1min, graph will display 1440 datapoints and you will see how many visitors you had each in minute of that day.

See the CloudWatch docs for more details: http://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_concepts.html#CloudWatchPeriods

Here is a similar question that might be useful: API Gateway Cloudwatch advanced logging

Dejan Peretin
  • 10,891
  • 1
  • 45
  • 54