@arcote.tech/arc-cli 0.7.19 → 0.7.20
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/dist/index.js +651 -105
- package/package.json +9 -9
- package/src/deploy/bootstrap.ts +8 -3
- package/src/deploy/caddyfile.ts +43 -8
- package/src/deploy/compose.ts +73 -0
- package/src/deploy/config.ts +15 -0
- package/src/deploy/observability-configs.ts +674 -48
- package/src/platform/server.ts +3 -0
package/src/platform/server.ts
CHANGED
|
@@ -524,6 +524,9 @@ export async function startPlatformServer(
|
|
|
524
524
|
mode: devMode ? "development" : "production",
|
|
525
525
|
sampleRate: devMode ? 1.0 : 1.0, // head-based 100%, collector tail-samples
|
|
526
526
|
debug: process.env.ARC_OTEL_DEBUG === "true",
|
|
527
|
+
// Production kill-switch for the console→OTLP bridge. Container
|
|
528
|
+
// stdout still reaches Loki via Alloy regardless.
|
|
529
|
+
patchConsole: process.env.ARC_OTEL_PATCH_CONSOLE !== "false",
|
|
527
530
|
});
|
|
528
531
|
telemetry = init.telemetry;
|
|
529
532
|
telemetryShutdown = init.shutdown;
|