-
Notifications
You must be signed in to change notification settings - Fork 0
fix(obsidian): seed per-vault config and enable openclaw OTLP #1450
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -899,6 +899,18 @@ | |||||||||||||||||||||||||||||||||||||||||
| ], | ||||||||||||||||||||||||||||||||||||||||||
| "allowRealIpFallback": true | ||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| "diagnostics": { | ||||||||||||||||||||||||||||||||||||||||||
| "enabled": true, | ||||||||||||||||||||||||||||||||||||||||||
| "otel": { | ||||||||||||||||||||||||||||||||||||||||||
| "enabled": true, | ||||||||||||||||||||||||||||||||||||||||||
| "endpoint": "__OTEL_ENDPOINT__", | ||||||||||||||||||||||||||||||||||||||||||
| "protocol": "http/protobuf", | ||||||||||||||||||||||||||||||||||||||||||
| "serviceName": "openclaw", | ||||||||||||||||||||||||||||||||||||||||||
| "traces": true, | ||||||||||||||||||||||||||||||||||||||||||
| "metrics": true, | ||||||||||||||||||||||||||||||||||||||||||
| "logs": true | ||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+902
to
+912
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default OTLP log export is too permissive for a base template. Line 910 sets Proposed change "diagnostics": {
"enabled": true,
"otel": {
"enabled": true,
"protocol": "http/protobuf",
"serviceName": "openclaw",
"traces": true,
"metrics": true,
- "logs": true
+ "logs": false
}
},📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| "plugins": { | ||||||||||||||||||||||||||||||||||||||||||
| "load": { | ||||||||||||||||||||||||||||||||||||||||||
| "paths": [ | ||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -922,6 +934,9 @@ | |||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||
| } | ||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| "diagnostics-otel": { | ||||||||||||||||||||||||||||||||||||||||||
| "enabled": true | ||||||||||||||||||||||||||||||||||||||||||
| }, | ||||||||||||||||||||||||||||||||||||||||||
| "memory-wiki": { | ||||||||||||||||||||||||||||||||||||||||||
| "enabled": true, | ||||||||||||||||||||||||||||||||||||||||||
| "config": { | ||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep telemetry logs opt-in in the concrete template as well.
Line 910 sets
"logs": truehere too, so sensitive runtime logs may be exported by default. Align this with a safer default (false) unless explicitly required per environment.Proposed change
"diagnostics": { "enabled": true, "otel": { "enabled": true, "protocol": "http/protobuf", "serviceName": "openclaw", "traces": true, "metrics": true, - "logs": true + "logs": false } },🤖 Prompt for AI Agents