We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Firebase supports adding attributes to traces. https://firebase.google.com/docs/perf-mon/custom-code-traces?platform=ios#create-custom-attributes
It will be great if the start_trace API is extended to support an optional attributes parameter that is an array of attributes to attach to the trace.
Something like: await FirebasePerformance.startTrace({ traceName: 'test_trace', attributes: ['attrib1', 'attribe2'] });
await FirebasePerformance.startTrace({ traceName: 'test_trace', attributes: ['attrib1', 'attribe2'] });
The logEvent API already supports somethings similar:
await FirebaseAnalytics.logEvent({ name: 'sign_up', params: { method: 'password' }, });
The text was updated successfully, but these errors were encountered:
I close this issue as duplicate of #505
Sorry, something went wrong.
No branches or pull requests
Firebase supports adding attributes to traces.
https://firebase.google.com/docs/perf-mon/custom-code-traces?platform=ios#create-custom-attributes
It will be great if the start_trace API is extended to support an optional attributes parameter that is an array of attributes to attach to the trace.
Something like:
await FirebasePerformance.startTrace({ traceName: 'test_trace', attributes: ['attrib1', 'attribe2'] });
The logEvent API already supports somethings similar:
The text was updated successfully, but these errors were encountered: