func createCountSample()

in sandbox/CWMetricStreamExporter/lambda/main.go [220:226]


func createCountSample(value Value, timestamp int64) prompb.Sample {
	countSample := prompb.Sample{
		Value:     value.Count,
		Timestamp: timestamp,
	}
	return countSample
}