cool-diamond-12331
07/23/2024, 9:56 AM// Metric - Metric_1
if(isMetric0(event) && event.time - state.start < 1209600000) {
state.m0.push(1);
}
// Metric - Metric_2
if(isMetric5(event) && event.time - state.start < 180000000) {
state.m5.push(1);
}
// Metric - Metric_3
if(isMetric6(event) && event.time - state.start < 1209600000) {
state.m6.push(1);
}
Translating this into the following
• Metric_1 => 1209600000 milliseconds => 336 hours ❌
• Metric_2 => 180000000 milliseconds => 50 hours instead ❌
• Metric_3 => 1209600000 milliseconds => 336 hours ✅rhythmic-agent-34208
07/23/2024, 3:25 PMcool-diamond-12331
07/23/2024, 3:33 PMrhythmic-agent-34208
07/23/2024, 3:36 PMcool-diamond-12331
07/23/2024, 3:38 PM