-
Notifications
You must be signed in to change notification settings - Fork 1.3k
telemetry: add more fields to data #8067
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,13 @@ export interface InstallationAdmin { | |
settings: InstallationAdminSettings; | ||
} | ||
|
||
export interface Data { | ||
installationAdmin: InstallationAdmin | ||
totalUsers: number | ||
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. As we add more telemetry data, We could continue adding them here thereby separating it from the 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. Same goes with the new |
||
totalWorkspaces: number | ||
totalInstances: number | ||
} | ||
|
||
export namespace InstallationAdmin { | ||
export function createDefault(): InstallationAdmin { | ||
return { | ||
|
Uh oh!
There was an error while loading. Please reload this page.