(instance: T, options?: { ignore?: string[]; name?: string })
| 31 | |
| 32 | /** Adds instrumentation to all the members of an object when instrumentation is enabled */ |
| 33 | export function instrument<T extends Record<string, any>>(instance: T, options?: { ignore?: string[]; name?: string }): T { |
| 34 | return services.instrument(instance, options); |
| 35 | } |
| 36 | |
| 37 | /** sends a perf message to the monitor */ |
| 38 | export function sendInstrumentation(message: PerfMessage): void { |
no outgoing calls
no test coverage detected