Closed
Bug 1194031
Opened 10 years ago
Closed 10 years ago
Add an account age field to Token server application logs.
Categories
(Cloud Services Graveyard :: Server: Token, defect, P1)
Cloud Services Graveyard
Server: Token
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: bobm, Assigned: rfkelly)
References
Details
(Whiteboard: [fxsync])
Attachments
(1 file)
|
6.95 KB,
patch
|
pb
:
review+
bobm
:
review+
|
Details | Diff | Splinter Review |
Add an account age field to Token server application logs along with the unique, and anonymous account identifier. The age should be measured in days since account creation. This will allow us to easily calculate the account retention curve for the Sync 1.5 Service needed for Bug 1173407.
| Assignee | ||
Comment 1•10 years ago
|
||
/cc :ckarlof. Chris, this is the bug I mentioned to you on IRC. The tokenserver already logs an "activity event" for MAU purposes, if we add "account age" then we get retention almost for free.
Updated•10 years ago
|
Flags: firefox-backlog+
Priority: -- → P1
Updated•10 years ago
|
Whiteboard: [fxsync]
| Assignee | ||
Comment 2•10 years ago
|
||
Here's a simple attempt at this. It uses the "created_at" data from the tokenserver node assignments table to emits a "uid.first_seen_at" field in the request metrics. This gives the millisecond timestamp at which we first saw the user, which some downstream filter can use to calculate the age of the account when this event occurred.
(I tried having the tokenserver emit "uid.days_since_first_seen" directly, but doing so assumes certain things about what counts as a day. Does a new day start at midnight UTC for all users? Emiting the timestamp directly will let us centralize that decision in one place, the downstream processing filter.)
Note the some events can cause the user to get a new node-assignment record with a new created_at timestamp, including:
* explicit node-reassignments on our side
* the user doing a password reset
These events would make them appear to start again at day zero. I think that's an OK approximation for our first attempt at this. If we like the result, we should revisit this and add an explicit "first_seen_at" field to the tokenserver db that properly persists this information.
The next step then, is that this value should be picked up by a HLLs-in-a-circular-buffer counting lua filter along the lines of [1], to calculate the D0/D1/D3/D7/D14/D30 active user counts.
Bob, do you have much experience with making such lua filters? It would be great if you, I and Phil could collaborate on the details of making that go, because we want to apply a similar technique for Firefox Accounts as a whole.
[1] https://github.com/mozilla-services/puppet-config/blob/master/shared/modules/shared/files/hekad/lua_filters/sync_active_daily_users.lua
Attachment #8649700 -
Flags: review?(pbooth)
Attachment #8649700 -
Flags: review?(bobm)
Attachment #8649700 -
Flags: feedback?
| Assignee | ||
Updated•10 years ago
|
Attachment #8649700 -
Flags: feedback?
| Assignee | ||
Updated•10 years ago
|
Assignee: nobody → rfkelly
Updated•10 years ago
|
Attachment #8649700 -
Flags: review?(pbooth) → review+
| Reporter | ||
Comment 3•10 years ago
|
||
Comment on attachment 8649700 [details] [diff] [review]
ts-days-since-first-seen.patch
This approach sounds good to me. I like the idea of using this to calculate account age (24hr periods starting at timestamp X) instead of number of calendar days (UTC or otherwise) since timestamp X. It seems closer to what we're trying to measure, since it's age from the point of view of the user.
Attachment #8649700 -
Flags: review?(bobm) → review+
| Reporter | ||
Comment 4•10 years ago
|
||
(In reply to Ryan Kelly [:rfkelly] from comment #2)
> Bob, do you have much experience with making such lua filters? It would be
> great if you, I and Phil could collaborate on the details of making that go,
> because we want to apply a similar technique for Firefox Accounts as a whole.
Just enough to be dangerous. We could pull in :whd or some other folks into the metrics team.
Comment 5•10 years ago
|
||
I like the direction.
I like the idea of adding this to all relying services (possibly including Pocket), so we can consolidate and break out activity/age information by relier in a central place.
| Assignee | ||
Comment 6•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Iteration: --- → 43.1 - Aug 24
Updated•2 years ago
|
Product: Cloud Services → Cloud Services Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•