Skip to content

Commit

Permalink
don't count built-in users for telemetry
Browse files Browse the repository at this point in the history
Signed-off-by: Tarun Pothulapati <[email protected]>
  • Loading branch information
Pothulapati committed Feb 17, 2022
1 parent 56fc56b commit 7c89847
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class InstallationAdminController {
app.get('/data', async (req: express.Request, res: express.Response) => {
const data: Data = {
installationAdmin: await this.installationAdminDb.getData(),
totalUsers: await this.userDb.getUserCount(false),
totalUsers: await this.userDb.getUserCount(true),
totalWorkspaces: await this.workspaceDb.getWorkspaceCount(),
totalInstances: await this.workspaceDb.getInstanceCount(),
} as Data;
Expand Down

0 comments on commit 7c89847

Please sign in to comment.