forked from farhoodlabs/paperclip
Add plugin telemetry bridge capability
Expose telemetry.track through the plugin SDK and server host bridge, forward plugin-prefixed events into the shared telemetry client, and demonstrate the capability in the kitchen sink example.\n\nCo-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -793,6 +793,15 @@ export function startWorkerRpcHost(options: WorkerRpcHostOptions): WorkerRpcHost
|
||||
},
|
||||
},
|
||||
|
||||
telemetry: {
|
||||
async track(
|
||||
eventName: string,
|
||||
dimensions?: Record<string, string | number | boolean>,
|
||||
): Promise<void> {
|
||||
await callHost("telemetry.track", { eventName, dimensions });
|
||||
},
|
||||
},
|
||||
|
||||
logger: {
|
||||
info(message: string, meta?: Record<string, unknown>): void {
|
||||
notifyHost("log", { level: "info", message, meta });
|
||||
|
||||
Reference in New Issue
Block a user