9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
export interface OTLPExporterConfigBase {
|
|
headers?: Record<string, string>;
|
|
url?: string;
|
|
concurrencyLimit?: number;
|
|
/** Maximum time the OTLP exporter will wait for each batch export.
|
|
* The default value is 10000ms. */
|
|
timeoutMillis?: number;
|
|
}
|
|
//# sourceMappingURL=legacy-base-configuration.d.ts.map
|