Skip to content

Commit cbabc64

Browse files
committed
fix: remove hardcoded internal OTLP endpoint from default config
The Telemetry:Otlp:Endpoint was set to the internal collector URL, causing all user deployments to silently send telemetry to our server. Default is now empty string (no export). Users opt-in by setting Telemetry__Otlp__Endpoint via appsettings.json or environment variable.
1 parent 148f2f3 commit cbabc64

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ Do **not** add comments that paraphrase the code. Only add comments that explain
393393
"Enabled": true,
394394
"ServiceName": "blite-server",
395395
"Console": null,
396-
"Otlp": { "Endpoint": "https://..." }
396+
"Otlp": { "Endpoint": "" } // empty = disabled; set to your collector URL to enable
397397
},
398398
"License": {
399399
"SourceUrl": "https://github.com/EntglDb/BLite.Server"

src/BLite.Server/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"ServiceName": "blite-server",
5656
"Console": null,
5757
"Otlp": {
58-
"Endpoint": "https://otel.blitedb.com"
58+
"Endpoint": ""
5959
}
6060
},
6161
"Transactions": {

0 commit comments

Comments
 (0)