12 questions
-2
votes
0
answers
39
views
Django gunicorn gevent with Statsig - run code in forked process
I am running Django app with gunicorn gevent workers. I'm using Statsig for Feature Flagging.
It appears to be struggling, I assume due to gevents monkey patching. I was hoping I could get around this ...
1
vote
0
answers
63
views
Where are your Feature Flags resolved in your Client Side Rendered Web Application or React Native App?
This is more like a design question. We have an in-house AB testing tool and we want to understand what is the best practice on where the feature flag resolution happens in the code.
By Resolve I mean ...
0
votes
1
answer
63
views
Is it possible to attach metadata or parameters to Branch Quick Links
We have a few branch quick links of the form: my.app.link/readable-quick-link that we use to attribute mobile app acquisition data from different sources. We are starting to run A/B tests with StatSig ...
0
votes
1
answer
98
views
(RBAC) Role Based Access Control on Individual Feature Gates Or Rules in Statsig
Is it Possible to have Role based Edit/Delete access on individual Feature Gates Or Rules in Statsig?
Example:-
Suppose I want to implement that "user-1" should not be able to Edit/Delete &...
1
vote
1
answer
305
views
Persist Stable ID across multiple subdomains
We faced a problem with losing StableID while redirecting between subDomains. If it saves only in localStorage so in this case it's not gonna work.
What can we do to maintain our StableID during the ...
3
votes
1
answer
637
views
Statsig: Change default value for a Feature Gate
How to give default values so that for whatever reason the the initialization fails,
We can fallback to the default.
I understand that it will default to false currently, right?
If i want a feature to ...
1
vote
1
answer
563
views
Statsig: Check if a user is in an experiment using the JS SDK
Is there a way to check if a user is in an experiment using JavaScrip SDK?
I have a landing page experiment running in a layer, it's targeting gate is page_url contains.
When a user lands on a page ...
1
vote
0
answers
717
views
java.lang.NoSuchFieldError :Companion
I am using Statsig Library for A/B testing in my JDK17 project.
<dependency>
<groupId>com.statsig</groupId>
<artifactId>serversdk</artifactId>
<version>1.2.3&...
2
votes
1
answer
717
views
UI not rendering when calling Statsig.updateUser
I am using the Statsig React sdk to check a gate an show some UI if the gate returns true. When I initialize with a user id that passes the gate, everything works as I would expect and the UI is ...
2
votes
1
answer
142
views
Statsig issue with Before Time and After TIme
I need to configure Statsig flag to return true for 30 days, by setting from and to dates
I am using "check time and date" and I am trying to set before and after time. But its giving ...
3
votes
1
answer
153
views
ReactJs - How to wrap the ApolloProvider inside the StatsigProvider?
In react(nextjs) application, I am using statsig-react to switch the mastergraphql endpoint(urls). Now I am facing an issue while connecting statsig with apollo.
My app.js is like,
const apollo = ...
1
vote
1
answer
1k
views
Statsig - How to get true value from feature gate?
I am trying to implement StatSig(Refer: https://docs.statsig.com/) feature into my react(Nextjs) application. I have created new feature gate changeComponentUI and Rule has been added as Environment ...