-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
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
Move FPTI tenant_name
into event_params
#1104
Conversation
Do we also want to change the component name to match the Arachne event migration as well in this PR? Arachne is sending all platforms as |
While we should make this change/fix, it will stink that our previous SDK versions that don't have this update will have analytics in an entirely separate DB table. We should see if Ian can account for this in the current dashboard or if he'll need to make a new BT iOS specific one. |
@scannillo yeah it makes sense to me to make both of those changes in 1 PR vs having them split across releases. I can make that update here if we want. Though will this make it harder to track mobile specific events and should we make the same change on PPCP (from
Agree it would have been nice to have the arachne > FPTI migration done before so we had some of this in place. But hopefully will make future FPTI migrations easier. Hopefully Ian can help us sort the data out easily. |
:sigh: Yeh. I personally would rather have separate component names for: mobile, web, server. It makes the query more efficient vs having to always parse the |
Yeah I totally agree, I think the tenant name makes sense to change because that was a bug. The component I think makes sense to separate out per platform to make searching easier, like you said. That's also an easier change to make imo because the data exists in both FPTI and Arachne so it's less of a "breaking" change with the data existing in 2 places. |
So if we go this route, we'll want to update Arachne to send (Also hit the wrong key, didn't mean to close the PR) |
Yeah I think that makes the most sense unless there is a specific reason we wanted them all together. I would think if we wanted data for all platforms we could have both components set in the tables like we do for the BT + PPCP notebooks Ian made vs having to sort on additional details. |
Cool - let's loop in @debrado as well |
Adding here for posterity - we decided to move forward with using |
# Conflicts: # CHANGELOG.md
Summary of changes
tenant_name
intoevent_params
- this allows us to search internal tooling with the correcttenant
as Braintree (currently it's being overridden to PayPal)Checklist
Authors