-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Usage events send event_key for deduping event emission retries for the same event #69610
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
base: charles/client-kind-user-agent
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2203,6 +2203,12 @@ message SubmitEventRequest { | |
| // PostHog property: tp.teleport_version | ||
| string teleport_version = 95; | ||
|
|
||
| // event_key is a UUID distinguishing one underlying event occurrence, | ||
| // allowing consumers to deduplicate resubmissions. | ||
| // | ||
| // PostHog property: tp.event_key | ||
| string event_key = 128; | ||
|
Comment on lines
+2206
to
+2210
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this in sync with cloud's version? Can you link the PR here to ensure we keep both protos in sync?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not yet. To try to avoid iterations, my plan is to get teleport ready first, then PR cloud, then merge.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should have both changes approved before merging any. We would need to get back here and change things again.
|
||
|
|
||
| // the event being submitted | ||
| oneof event { | ||
| UserLoginEvent user_login = 3; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.