An instrumentation scope consists of the name and optional version used to obtain a tracer or meter from a provider. This metadata is made available on ReadableSpan and MetricRecord for use by the export pipeline.

interface InstrumentationScope {
    name: string;
    schemaUrl?: string;
    version?: string;
}

Properties

name: string
schemaUrl?: string
version?: string