0

Merge pull request #302 from mendableai/cjp/email-to-posthog-logging

Cjp/email to posthog logging
This commit is contained in:
Nicolas 2024-06-18 21:30:42 -04:00 committed by GitHub
commit c4252b6170
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 7 deletions

View File

@ -10,7 +10,9 @@ export async function validateIdempotencyKey(
// // not returning for missing idempotency key for now
return true;
}
if (!isUuid(idempotencyKey)) {
// Ensure idempotencyKey is treated as a string
const key = Array.isArray(idempotencyKey) ? idempotencyKey[0] : idempotencyKey;
if (!isUuid(key)) {
console.error("Invalid idempotency key provided in the request headers.");
return false;
}

View File

@ -32,8 +32,12 @@ export async function logJob(job: FirecrawlJob) {
]);
if (process.env.POSTHOG_API_KEY) {
posthog.capture({
distinctId: job.team_id === "preview" ? null : job.team_id,
let phLog = {
distinctId: "from-api", //* To identify this on the group level, setting distinctid to a static string per posthog docs: https://posthog.com/docs/product-analytics/group-analytics#advanced-server-side-only-capturing-group-events-without-a-user
...(job.team_id !== "preview" && {
groups: { team: job.team_id }
}), //* Identifying event on this team
event: "job-logged",
properties: {
success: job.success,
@ -49,7 +53,8 @@ export async function logJob(job: FirecrawlJob) {
extractor_options: job.extractor_options,
num_tokens: job.num_tokens
},
});
}
posthog.capture(phLog);
}
if (error) {
console.error("Error logging job:\n", error);