By default the plugin does NOT track any usage data. You have to enable performance monitoring by setting performanceCollectionEnabled to true:
firebase.Performance.performanceCollectionEnabled = true;The firebase performance API is represented as the global object firebase.Performance.
All Performance properties are write only.
- Enables performance data collection for this app. To make use of firebase performance data collection has to be enabled by the developer. The enablement persists across sessions.
- Creates a Trace object with given name and start the trace.
- Stops a Trace with given name.
- Atomically increments the metric with the given name in this trace by the incrementBy value.