jolly-easter-69540
03/14/2022, 9:04 AMhelpful-carpenter-3208
03/14/2022, 11:15 AMdisabled
or add an option when added new override rule to control. So that we can enable the change after we adjusted the rule order and being confident before it take effect.adamant-mechanic-29511
03/15/2022, 6:15 PMif (admin) return true
and it does not work. So I ended up turning on the feature flag but having it return false
and then the override works. It would be more intuitive to me to have the override always work.
• Is there plans for allowing additional metadata alongside the feature flag boolean?
• I saw in some GH issues that multiple environments is coming; is there an ETA on this? It would be nice to have multiple environments beyond just dev and prod.
• Is there any plans for a feature flag streaming service such that feature flag states are updated to all connected clients without a refresh?narrow-psychiatrist-15437
03/18/2022, 11:32 AMlate-dentist-52023
03/21/2022, 11:46 PM...
FROM schema.table --this is our new experiment table
update data will fail because it becomes
...
FROM schema.table --this is our new experiment table,
and that comma is important…
easy to fix, but might want to join the strings differently to protect against thatbetter-parrot-43048
03/24/2022, 8:56 PMhelpful-carpenter-3208
03/25/2022, 3:05 AMblue-honey-14701
03/25/2022, 12:51 PMfull-island-88199
03/29/2022, 12:43 PMbetter-parrot-43048
03/30/2022, 4:31 PMlate-dentist-52023
03/30/2022, 11:04 PMbetter-parrot-43048
04/01/2022, 8:50 PMfull-island-88199
04/05/2022, 7:59 AM'{{ startDate }}' AND '{{ endDate }}'
parameters to Segments (and Dimensions..?) too?
Context: We have users going in and out of certain habit groups, and I’d like to make sure to use the group they are in at the point of the experiment, and not before. I get errors trying to use these parameters now.. 🤔fancy-zoo-90893
04/10/2022, 7:23 PMnumerous-hospital-35835
04/14/2022, 9:26 AMadamant-mechanic-29511
04/20/2022, 2:15 PMengineering
, product
, and then all-team
. all-team
could be an employee
attribute and a custom flag can be made for engineering
and product
but it would be nice to have an option of just creating custom groupings of attributes and setting a rule of If "id" is in "engineering"
.numerous-hospital-35835
04/25/2022, 12:28 PMminiature-jewelry-48222
05/02/2022, 6:45 PMtable( flatten( input => parse_json() ) )
sub-query as part of one of my metrics. The Metrics SQL editor is failing on the '=>' though. There's lots of additional context I can share, but wanted to keep this concise.
Can I jump on a huddle with someone to troubleshoot?
Thanks!salmon-afternoon-55787
05/06/2022, 7:51 AMWarning: Missing data from the following variation ids: 0
I'm using a MySQL data source and the final query is not returning a row for variation 0 as it has no recorded metrics. I believe changing the final query to
SELECT
u.variation,
u.dimension,
COALESCE (s.count, 0) as count,
COALESCE (s.mean, 0) as mean,
COALESCE (s.stddev, 0) as stddev,
u.users
FROM
__stats s
RIGHT JOIN __overallUsers u ON (
s.variation = u.variation
AND s.dimension = u.dimension
)
would produce the correct result, but understand that you'll want to test to see what else is affected 😁prehistoric-waitress-6977
05/08/2022, 3:14 PMthankful-scientist-83252
05/10/2022, 11:59 PMfresh-football-47124
gray-crayon-34592
05/20/2022, 9:06 AMbusy-horse-73824
05/20/2022, 12:47 PMbusy-horse-73824
05/24/2022, 7:41 PMBuildFeatureMap
, ParseFeature
, and BuildFeatureRule
- even if the input is totally invalid. Offering more of a typical Go interface would require breaking changes though. Would you be open to a PR around this?important-electrician-17322
05/24/2022, 8:11 PMuseEffect
anywhere)bumpy-ram-80870
05/26/2022, 3:08 PMbulky-oxygen-41438
05/30/2022, 1:36 PMFeatures
page that exports a json file with the features viewable on the dashboard?damp-continent-87510
05/30/2022, 1:57 PMfull-island-88199
06/02/2022, 12:52 PM