Hey everyone, I think there is a bug with the Con...
# give-feedback
c
Hey everyone, I think there is a bug with the Conversion window functionality when creating a metric. • Checking the conversion window out ( = none ) is not working • Day and Weeks options are not working. They will be always considered as Hours. For Example • Metric_1 => none ( in definition ) • Metric_2 => 50 weeks ( in definition ) • Metric_3 => 336 hours ( in definition ) Generated JQL
Copy code
// 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
r
Hi! Thanks for this feedback. I've passed it on to the engineering team to investigate further.
c
Thank you Ryan 🙏
r
It looks like you're using Mixpanel. Please see this doc: https://docs.growthbook.io/guide/mixpanel Using JQL with Mixpanel has limited support because Mixpanel has deprecated JQL itself. We, following Mixpanel's instructions, recommend exporting data to a warehouse to avoid more issues like this down the road. Our engineers are investigating this issue, but you'll likely continue to face problems using Mixpanel directly.
👍 1
c
Thanks for sharing the info!
👍 1