in glean/src/core/metrics/database.ts [290:299]
private chooseStore(lifetime: Lifetime): Store {
switch (lifetime) {
case Lifetime.User:
return this.userStore;
case Lifetime.Ping:
return this.pingStore;
case Lifetime.Application:
return this.appStore;
}
}