freezing-finland-88631
06/11/2022, 7:19 PMuser_id
, the timestamp
of creation, and a value of 1
, since creating a workflow should increment the measure:
SELECT
user_id,
created_at AS timestamp,
1 AS value
FROM workflows
Is that correct?
Separately we’re tracking a binomial metric on the users that reach the state of “created at least one workflow”, but since the goal of some experiments is to move the total count of workflows, and the goal of others is to move the rate of users that reach the state of creating at least one workflow, we thought both metrics were appropriate.future-teacher-7046
freezing-finland-88631
06/11/2022, 7:22 PM