fixing names

This commit is contained in:
Jeff Morgan 2014-12-10 19:21:54 -08:00
parent aaa6d6d921
commit 641bc309ad
1 changed files with 3 additions and 2 deletions

View File

@ -38,9 +38,10 @@ Metrics.trackEvent = function (name) {
if (err) {
return;
}
mixpanel.track('docker_gui ' + name, {
mixpanel.track(name, {
distinct_id: uuid,
version: app.getVersion()
version: app.getVersion(),
product: 'Docker GUI'
});
});
});