@opentelemetry/api-logs
Version:
Public logs API for OpenTelemetry
14 lines • 439 B
TypeScript
import type { LogAttributes } from './LogRecord';
export interface LoggerOptions {
/**
* The schemaUrl of the tracer or instrumentation library
* @default ''
*/
schemaUrl?: string;
/**
* The instrumentation scope attributes to associate with emitted telemetry.
* These attributes also participate in logger identity.
*/
attributes?: LogAttributes;
}
//# sourceMappingURL=LoggerOptions.d.ts.map