busy-air-96466
03/30/2023, 3:07 PMSELECT
user_id,
user_pseudo_id as anonymous_id,
TIMESTAMP_MICROS(event_timestamp) as timestamp
FROM
``analytics_xxx.events_intraday_*``
WHERE
event_name = 'Main CTA'
AND _TABLE_SUFFIX BETWEEN '20230328' AND '20230401'
Logged-in users query
----------------
SELECT
user_id as user_id,
TIMESTAMP_MICROS(event_timestamp) as timestamp,
experiment_id_param.value.string_value AS experiment_id,
<http://variation_id_param.value.int|variation_id_param.value.int>_value AS variation_id,
geo.country as country,
traffic_source.source as source,
traffic_source.medium as medium,
device.category as device,
device.web_info.browser as browser,
device.operating_system as os
FROM
``analytics_xxx.events_intraday_*`,`
UNNEST(event_params) AS experiment_id_param,
UNNEST(event_params) AS variation_id_param
WHERE
_TABLE_SUFFIX BETWEEN '{{startYear}}{{startMonth}}{{startDay}}' AND '{{endYear}}{{endMonth}}{{endDay}}'
AND event_name = 'experiment_viewed'
AND experiment_id_param.key = 'experiment_id'
AND variation_id_param.key = 'variation_id'
AND user_id is not null
And here’s a screenshot of the preview of the BigQuery table events_intraday_20230330 where I can see plenty of “Main CTA” events.
However all my metric chart shows when I refresh the data, is two events from several days ago.
An experiment based on that metric is showing the sort of results I expect however, so maybe I just don’t understand the metric chart?worried-yacht-64692
03/30/2023, 3:36 PMbusy-air-96466
03/30/2023, 4:06 PMdocker-compose up -d
? Or do I need to pull an update from GitHub? I’m wondering how to see the new features 🙂busy-air-96466
03/30/2023, 6:22 PMfew-electrician-23747
03/31/2023, 7:03 AMfew-electrician-23747
03/31/2023, 7:34 AMmelodic-spring-2187
03/31/2023, 12:55 PMPROXY_HOST_PUBLIC=<proxy_url>
on the main growthbook instance.future-caravan-57043
04/02/2023, 5:26 PMapp.js
? And if so, is there any guide that I can follow?
• How can I use GrowthBook features inside a service? Consider that some services we use are used directly from other services and are not attached to any route. I want to access the GrowthBook instance on those services.
I tried exhausting all possible solutions before deferring to you folks. Any help would be much appreciated.
Thanks in advance!plain-tiger-75918
04/03/2023, 8:04 AMnew-preview-clip-test
. It is showing up on the Feature list but not in the Experiment list in the GrowthBook browser plugin. and also the useFeatureIsOn("new-preview-clip-test");
is always returning false, but in the browser plugin it is showing true.
Any help will be really helpful 🙌numerous-optician-45585
04/03/2023, 2:07 PMbusy-air-96466
04/04/2023, 9:42 AMpowerful-electrician-46685
04/04/2023, 3:06 PMwhite-state-74924
04/04/2023, 3:56 PMApp.js
file but I have a redux reducer where I'm attempting to setAttributes on a user any time an update happens to the user within our application. I have a few questions...
• Is this possible? The reason I'm doing this is we have some features which are enabled for certain groups of people. ie. internal features only enabled for users with certain emails/company information on their client data.
• When i set the attributes they dont get updated on the attributes screen here https://app.growthbook.io/attributes is there something I'm doing wrong?
• The Chrome plugin for Growthbook doesn't seem to be working, do I need any setup in order to get this going?
• Is there somewhere that I can have a development SDK key and a production SDK key, reason being for testing tickets in a development environment with flags and then passing them through or duplicating them into prod.
• I'd love to move to a paid plan but can I trial this first?
Appreciate the help in advance!
Here's the code I'm using in the reducer in order to try and set the client attributes.
reducers: {
setClientData: (state, action) => {
console.log("Updating growthbook data with", action.payload)
growthbook.setAttributes({
"id": fire.auth().currentUser.uid,
...action.payload,
});
state.data = action.payload;
},
} ...
few-electrician-23747
04/05/2023, 10:15 AMbusy-air-96466
04/05/2023, 12:29 PMsquare-fall-95777
04/06/2023, 5:16 PMhelpful-traffic-38691
04/10/2023, 12:21 PMkind-salesmen-90944
04/11/2023, 5:57 AMquiet-monkey-7986
04/11/2023, 8:38 PMAccess to fetch at '<https://cdn.growthbook.io/api/v1/visual-changesets/vcs_19g61mlgcpfhuq?includeExperiment=1>' from origin '<https://www.hurb.com>' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
Could you please assist me in resolving this issue? I've checked my configurations on the GrowthBook dashboard, but I'm still unable to get the visual editor to work properly due to this CORS issue.
Any guidance or support would be greatly appreciated.
Thanks in advance!famous-belgium-62991
04/12/2023, 10:44 AMfew-electrician-23747
04/12/2023, 10:54 AMeager-wall-93028
04/12/2023, 12:15 PMREGEXP_REPLACE(
MIN(
CONCAT(
cast(e.timestamp as varchar),
'____',
coalesce(cast(e.dimension as varchar), '__NULL_DIMENSION')
)
),
'.*____',
''
) as dimension,
helpful-traffic-38691
04/12/2023, 4:06 PMquiet-monkey-7986
04/12/2023, 5:55 PMcold-winter-14544
04/12/2023, 11:16 PM-- Last 90 days - Doctor List Metric
WITH
__metric as ( -- Metric (Doctor List)
SELECT
anonymous_id as anonymous_id,
1 as value,
m.timestamp as timestamp,
m.timestamp as conversion_start,
m.timestamp as conversion_end
FROM
(
SELECT
user_id,
$ amplitude_id as anonymous_id,
event_time as timestamp
FROM
$ events
WHERE
event_type = 'Doctor List'
) m
WHERE
m.timestamp >= from_iso8601_timestamp('2023-01-12T23:11:24.843Z')
AND m.timestamp <= from_iso8601_timestamp('2023-04-16T23:11:24.843Z')
),
.......
Line 14 (where the error is) is basically this: $ amplitude_id as anonymous_id,
melodic-spring-2187
04/13/2023, 7:49 AMhelpful-traffic-38691
04/13/2023, 7:52 AMfew-electrician-23747
04/13/2023, 10:48 AMFailed to send email to
I have infact generated the credentials from https://ethereal.email/create and used the same package you guys have used that is nodemailer and I am able to. But when I deploy with same credentials then no luck. I am stuck here for 2 weeks and its pretty urgent for mecuddly-journalist-11507
04/13/2023, 4:13 PMpurchase
with GA4 as the data source?
I added SQL below, and I got an error and I don't know how to fix.
What I'm doing wrong?
SELECT
user_id,
user_pseudo_id as anonymous_id,
TIMESTAMP_MICROS(event_timestamp) as timestamp,
event_value_in_usd as value
FROM
`azos-data`.`analytics_262365471`.`events_*`
WHERE
event_name = 'purchase'
AND value_param.key = 'value'
AND _TABLE_SUFFIX BETWEEN '{{startYear}}{{startMonth}}{{startDay}}' AND '{{endYear}}{{endMonth}}{{endDay}}'
few-electrician-23747
04/14/2023, 3:26 AM