We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a482e8 commit b72e6d8Copy full SHA for b72e6d8
2 files changed
packages/web/src/ee/features/lighthouse/servicePing.ts
@@ -68,6 +68,7 @@ export const syncWithLighthouse = async (orgId: number) => {
68
const payload: ServicePingRequest = {
69
installId: env.SOURCEBOT_INSTALL_ID,
70
version: SOURCEBOT_VERSION,
71
+ hostname: env.AUTH_URL,
72
userCount,
73
repoCount,
74
dauCount,
packages/web/src/ee/features/lighthouse/types.ts
@@ -3,6 +3,7 @@ import { z } from "zod";
3
export const servicePingRequestSchema = z.object({
4
installId: z.string(),
5
version: z.string(),
6
+ hostname: z.string(),
7
userCount: z.number().int().nonnegative(),
8
repoCount: z.number().int().nonnegative(),
9
dauCount: z.number().int().nonnegative(),
0 commit comments