func createMaxSample()

in sandbox/CWMetricStreamExporter/lambda/main.go [228:234]


func createMaxSample(value Value, timestamp int64) prompb.Sample {
	maxSample := prompb.Sample{
		Value:     value.Max,
		Timestamp: timestamp,
	}
	return maxSample
}