You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to track the measurement_added event for different types of measurements to generate a long-term report (e.g., over a period of one year). Currently, I can only view data for a short period (30 minutes), but I am unable to access a full report over longer durations, such as one year.
Context
The measurement_add event has a parameter called measure_name, which can take several values such as:
weight (weight measurement)
step_count (daily step count)
glucose (blood glucose level)
Code Example: Here’s the current code used for tracking this event:
this.firebaseX.logEvent('measurement_added', {
measure_name: correspondingMeasure.name,
timestamp: new Date().toISOString()
});
Goal
Enable a detailed report based on measure_name, showing the frequency of different measurements over a one-year period. This report would help analyze trends across various measurement categories.
Requirements
Enable tracking of measurement_add for each measure_name.
Provide the ability to filter and export data for analysis over extended periods (e.g., 1 year).
Offer a step-by-step guide on generating and exporting a complete report with data filtering options for specific time frames.
Steps to Reproduce
Add a measurement using measurement_add and assign a measure_name (e.g., weight).
Repeat this operation over an extended period.
Expected Outcome
Being able to view a complete report with data on each measure_name for analyzing annual trends.
The text was updated successfully, but these errors were encountered:
I would like to track the measurement_added event for different types of measurements to generate a long-term report (e.g., over a period of one year). Currently, I can only view data for a short period (30 minutes), but I am unable to access a full report over longer durations, such as one year.
Context
Code Example: Here’s the current code used for tracking this event:
Goal
Requirements
Steps to Reproduce
Expected Outcome
Being able to view a complete report with data on each measure_name for analyzing annual trends.
The text was updated successfully, but these errors were encountered: