Insight Editor: Unique Users Counting not working as expected
I'm having an issue while editing an insight.
Insight ID: 79B7963C-13CA-45FB-9BF9-89BBDFF6081C
I want to track how many users subscribe in my app.
On app launch, I check the current subscription status and send a signal: TelemetryManager.send("subscriptionStatus", with: ["subscriptionName": status])
The status can essentially be "none" or "subscribed". Now I want to display that data. If I launch the app the first time, the chart will show "none" = 100% which is correct. When I subscribe now with the same user, the chart will show "none" = 50% and "subscribed" = 50%. While this makes sense logically, I cannot use this to count the subscribed users correctly. I would expect it to show "none" = 0% and "subscribed" = 100% now. Is there a way to just use the latest data from a specific signal type for a user?
Is there a way to just use the latest data from a specific signal type for a user?
This is also related to: https://github.com/TelemetryDeck/Issues/issues/246