@azure/monitor-opentelemetry
Version:
Azure Monitor OpenTelemetry (Node.js)
14 lines • 478 B
TypeScript
/**
* Subset of Connection String fields which this SDK can parse. Lower-typecased to
* allow for case-insensitivity across field names.
* @internal
*/
export type ConnectionString = {
[key in ConnectionStringKey]?: string;
};
/**
* ConnectionString keys.
* @internal
*/
export type ConnectionStringKey = "authorization" | "aadaudience" | "instrumentationkey" | "ingestionendpoint" | "liveendpoint" | "location" | "endpointsuffix";
//# sourceMappingURL=types.d.ts.map