(options: NodeOptions = {})
| 25 | * @see {@link Sentry.init} |
| 26 | */ |
| 27 | export function init(options: NodeOptions = {}): NodeClient | undefined { |
| 28 | const opts = { |
| 29 | defaultIntegrations: getDefaultIntegrations(options), |
| 30 | ...options, |
| 31 | }; |
| 32 | |
| 33 | applySdkMetadata(opts, 'google-cloud-serverless', ['google-cloud-serverless', 'node']); |
| 34 | |
| 35 | return initNode(opts); |
| 36 | } |
no test coverage detected