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 710b131 commit a15eeb6Copy full SHA for a15eeb6
src/telemetry/telemetry.ts
@@ -29,12 +29,11 @@ export class Telemetry {
29
private readonly commonProperties: CommonProperties;
30
31
constructor(private readonly session: Session) {
32
- // Create an immutable object with all telemetry properties
33
- this.commonProperties = Object.freeze({
+ this.commonProperties = {
34
...MACHINE_METADATA,
35
mcp_client_version: this.session.agentRunner?.version,
36
mcp_client_name: this.session.agentRunner?.name,
37
- });
+ };
38
}
39
40
/**
0 commit comments