Skip to content

Commit

Permalink
disable PH people props
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycarambat committed Feb 17, 2025
1 parent 4545ce2 commit 6fd34e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/models/telemetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ const Telemetry = {
const { client, distinctId: systemId } = await this.connect();
if (!client) return;
const distinctId = !!subUserId ? `${systemId}::${subUserId}` : systemId;
const properties = { ...eventProperties, runtime: this.runtime() };
const properties = {
...eventProperties,
runtime: this.runtime(),
$process_person_profile: false,
};

// Silence some events to keep logs from being too messy in production
// eg: Tool calls from agents spamming the logs.
Expand Down

0 comments on commit 6fd34e5

Please sign in to comment.