query = {
try {
const binSeconds = d3.utcSecond.count(
new Date(),
interval.offset(new Date(), 1)
);
return cwl.send(
new AWS.StartQueryCommand({
queryString: `stats count(*) by ${field}, bin(${binSeconds}s)`,
startTime: +start / 1000,
endTime: +stop / 1000,
logGroupName
})
);
} catch {
return false;
}
}