-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Google Analytics event for manually typed LDAP passwords and auto filled passwords #81
Comments
I am sure we can achieve this without involving Google Analytics. How about renaming this ticket to a problem, instead of a solution?
Is this the correct problem we are chasing?
Thoughts? |
My interest was less in changing user behavior and more about understanding the scale of the problem. To my knowledge we don't currently have any understanding of what proportion of mozillians use password managers. If we gathered this information we'd know
So ya, this is more about understanding our users and if there is a problem, not about trying to solve a problem we may or may not have. |
If you are okay with a very rough picture, we could set up a very short form and post it on some of the most active Telegram channels (Mozillians, Mozilla Reps). This could give you a rough idea? |
1 similar comment
If you are okay with a very rough picture, we could set up a very short form and post it on some of the most active Telegram channels (Mozillians, Mozilla Reps). This could give you a rough idea? |
My thought had been that the added Google analytics event would be a single line of JS to record an event when users type in the password field. Maybe I should just PR this to make sure. Are you concerned that adding this would be a large development effort? I'm getting the sense that you'd don't want to add this GA event but I'm not sure why yet. Is it a privacy concern? |
For the interested reader: Gene and I had a discussion around this article: https://webmasters.stackexchange.com/questions/92237/how-can-i-tell-if-my-website-visitors-are-using-lastpass-or-other-password-manag Not sure yet what we are going to do. :-) |
After chatting with @hmitsch the concerns he raised are
Suggested alternate ways to accomplish this would be to run a survey of users. |
Though I don't necessarily agree with these I get the vibe that there isn't an appetite for this feature so I'll close this. |
There is certainly appetite, was there a technical issue we didn't think we could overcome @gene1wood ? We'd like to use this to get stats on password manager use. |
@jeffbryner @hmitsch @tristanweir and I met up and chatted about this. We will move forward with this and the steps we came up with are
|
I've emailed legal
|
I've emailed the metrics team
|
See #232 where I share my proof of concept code and request implementation |
We could detect if a password is being filled into the password field by typing on the keyboard by watching for
onkeypress
andonkeydown
as mentioned in this blog.In our case we'd be looking for the opposite of what that blog is, in that we want users to be auto completing their passwords (not memorizing and typing them in).
When we detect these two states we should fire Google Analytics events about them.
We could also emit the fact that the given user typed or didn't type their password to something (SSO dashboard? mozdef?) and with a larger sample (10 user logins) we could potentially assert that the user
And create a SSO dashboard alert to tell them to use a password manager (and stop memorizing their LDAP password and typing it in by hand)
The text was updated successfully, but these errors were encountered: