@azure/monitor-opentelemetry-exporter
Version:
Application Insights exporter for the OpenTelemetry JavaScript (Node.js) SDK
14 lines • 482 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=Constants.d.ts.map