Merge pull request #302 from mendableai/cjp/email-to-posthog-logging
Cjp/email to posthog logging
This commit is contained in:
commit
c4252b6170
@ -10,10 +10,12 @@ export async function validateIdempotencyKey(
|
||||
// // not returning for missing idempotency key for now
|
||||
return true;
|
||||
}
|
||||
if (!isUuid(idempotencyKey)) {
|
||||
console.error("Invalid idempotency key provided in the request headers.");
|
||||
return false;
|
||||
}
|
||||
// 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;
|
||||
}
|
||||
|
||||
const { data, error } = await supabase_service
|
||||
.from("idempotency_keys")
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user