mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-04 18:49:39 -06:00
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
/* We use this telemetry service to better understand how Formbricks is being used
|
|
and how we can improve it. All data including the IP address is collected anonymously
|
|
and we cannot trace anything back to you or your customers. If you still want to
|
|
disable telemetry, set the environment variable TELEMETRY_DISABLED=1 */
|
|
import { env } from "./env";
|
|
|
|
export const captureTelemetry = async (eventName: string, properties = {}) => {
|
|
if (env.TELEMETRY_DISABLED !== "1" && process.env.NODE_ENV === "production" && process.env.INSTANCE_ID) {
|
|
try {
|
|
await fetch("https://eu.posthog.com/capture/", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
api_key: "phc_6XBUthOJLVe0Ij9EYkwEKpV96fUbA1aXxnHDq5ryASk",
|
|
event: eventName,
|
|
properties: {
|
|
distinct_id: process.env.INSTANCE_ID,
|
|
...properties,
|
|
},
|
|
timestamp: new Date().toISOString(),
|
|
}),
|
|
});
|
|
} catch (error) {
|
|
console.error(`error sending telemetry: ${error}`);
|
|
}
|
|
}
|
|
};
|