Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
687 B
Plaintext
17 lines
687 B
Plaintext
import { Meter, MeterOptions } from './Meter';
|
|
/**
|
|
* A registry for creating named {@link Meter}s.
|
|
*/
|
|
export interface MeterProvider {
|
|
/**
|
|
* Returns a Meter, creating one if one with the given name, version, and
|
|
* schemaUrl pair is not already created.
|
|
*
|
|
* @param name The name of the meter or instrumentation library.
|
|
* @param version The version of the meter or instrumentation library.
|
|
* @param options The options of the meter or instrumentation library.
|
|
* @returns Meter A Meter with the given name and version
|
|
*/
|
|
getMeter(name: string, version?: string, options?: MeterOptions): Meter;
|
|
}
|
|
//# sourceMappingURL=MeterProvider.d.ts.map |