mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 04:30:43 +00:00
* fix(logging): share transports across module instances * fix(logging): share transports across module instances * fix(logging): share transports across module instances * fix(logging): remove global log transport hooks * test(agents): capture diagnostic logs after module reset
27 lines
958 B
TypeScript
27 lines
958 B
TypeScript
// Narrow plugin-sdk surface for the bundled diagnostics-otel plugin.
|
|
// Keep this list additive and scoped to the bundled diagnostics-otel surface.
|
|
|
|
export type { DiagnosticEventPayload } from "../infra/diagnostic-events.js";
|
|
export type { DiagnosticTraceContext } from "../infra/diagnostic-trace-context.js";
|
|
export {
|
|
emitDiagnosticEvent,
|
|
onDiagnosticEvent,
|
|
onInternalDiagnosticEvent,
|
|
} from "../infra/diagnostic-events.js";
|
|
export {
|
|
createChildDiagnosticTraceContext,
|
|
createDiagnosticTraceContext,
|
|
formatDiagnosticTraceparent,
|
|
isValidDiagnosticSpanId,
|
|
isValidDiagnosticTraceFlags,
|
|
isValidDiagnosticTraceId,
|
|
parseDiagnosticTraceparent,
|
|
} from "../infra/diagnostic-trace-context.js";
|
|
export { redactSensitiveText } from "../logging/redact.js";
|
|
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export type {
|
|
OpenClawPluginApi,
|
|
OpenClawPluginService,
|
|
OpenClawPluginServiceContext,
|
|
} from "../plugins/types.js";
|