Question:
Reading this doc and its not clear to me what the impact of sampleCount is on my custom metrics I send as a statistical set.
For example this:
1 2 |
aws cloudwatch put-metric-data --metric-name PageViewCount --namespace MyService --statistic-values Sum=11,MinimSampleCountSampleCountum=2,Maximum=5,SampleCount=3 --timestamp 2016-10-14T12:00:00.000Z |
The SampleCount is 3, but cloudwatch doesn’t have the actual points it just has the min,max,sum.
So what if I put 10 for SampleCount or even 10000, what difference does that make?
Answer:
This CloudWatch metric has several values (minimum, maximum, sum, average, sampleCount, value) that you calculate and use in your own analysis of the published CloudWatch data.
You can set sampleCount to any value that you want but then your average and sum values will not make sense.
In summary, sampleCount is just one of several values that together define the statistics of your system.
This document might help clarify the meaning of each statistic: