Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Latest commit

 

History

History
70 lines (47 loc) · 1.82 KB

analytics.md

File metadata and controls

70 lines (47 loc) · 1.82 KB

Collect Analytics

Collect Analytics data automatically with the AnalyticsRouteMixin

Emberfire provies a mixin at emberfire/mixins/analytics-route which will send data to Google Analytics on Route changes and track the currently active route.

If you want to track all routes just extend your application route (app/routes/application.js) like so:

import AnalyticsRouteMixin from 'emberfire/mixins/analytics-route';
import Route from '@ember/routing/route';

export default Route.extend(AnalyticsRouteMixin);

Log events with the FirebaseApp Service

import { inject as service } from '@ember/service';

...

firebaseApp: service('firebase-app'),

...

const analytics = await firebase.analytics();
analytics.logEvent("some_event", { ... });

Collect traces on route transistions automatically with PerformanceRouteMixin

import PerformanceRouteMixin from 'emberfire/mixins/performance-route';
import Route from '@ember/routing/route';

export default Route.extend(PerformanceRouteMixin);

Log traces with the FirebaseApp Service

import { inject as service } from '@ember/service';

...

firebaseApp: service('firebase-app'),

...

const perf = await firebase.performance();
const trace = perf.trace("some_event");
trace.start();
...
trace.stop()

Continue reading

  1. Installation
  2. User Authentication
  3. Collect Analytics
  4. Saving and Retrieving Data
  5. Querying Data
  6. Relationships
  7. Security Rules
  8. Deploying to Firebase Hosting
  9. Fastboot support
  10. Deploying to Cloud Functions for Firebase