@aztec/telemetry-client 3.0.0-nightly.20251110 → 3.0.0-nightly.20251111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/config.js +1 -1
- package/package.json +3 -3
- package/src/config.ts +1 -1
package/dest/config.js
CHANGED
|
@@ -53,7 +53,7 @@ export const telemetryClientConfigMappings = {
|
|
|
53
53
|
publicMetricsOptOut: {
|
|
54
54
|
env: 'PUBLIC_OTEL_OPT_OUT',
|
|
55
55
|
description: 'Whether to opt out of sharing optional telemetry',
|
|
56
|
-
...booleanConfigHelper(
|
|
56
|
+
...booleanConfigHelper(true)
|
|
57
57
|
}
|
|
58
58
|
};
|
|
59
59
|
export function getConfigEnvVars() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/telemetry-client",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251111",
|
|
4
4
|
"inherits": [
|
|
5
5
|
"../package.common.json"
|
|
6
6
|
],
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"!*.test.*"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
29
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
28
|
+
"@aztec/foundation": "3.0.0-nightly.20251111",
|
|
29
|
+
"@aztec/stdlib": "3.0.0-nightly.20251111",
|
|
30
30
|
"@opentelemetry/api": "^1.9.0",
|
|
31
31
|
"@opentelemetry/api-logs": "^0.55.0",
|
|
32
32
|
"@opentelemetry/core": "^1.28.0",
|
package/src/config.ts
CHANGED
|
@@ -86,7 +86,7 @@ export const telemetryClientConfigMappings: ConfigMappingsType<TelemetryClientCo
|
|
|
86
86
|
publicMetricsOptOut: {
|
|
87
87
|
env: 'PUBLIC_OTEL_OPT_OUT',
|
|
88
88
|
description: 'Whether to opt out of sharing optional telemetry',
|
|
89
|
-
...booleanConfigHelper(
|
|
89
|
+
...booleanConfigHelper(true),
|
|
90
90
|
},
|
|
91
91
|
};
|
|
92
92
|
|