@opentelemetry/otlp-transformer
Version:
Transform OpenTelemetry SDK data into OTLP
11 lines • 422 B
TypeScript
export interface IExportMetricsServiceResponse {
/** ExportMetricsServiceResponse partialSuccess */
partialSuccess?: IExportMetricsPartialSuccess;
}
export interface IExportMetricsPartialSuccess {
/** ExportMetricsPartialSuccess rejectedDataPoints */
rejectedDataPoints?: number;
/** ExportMetricsPartialSuccess errorMessage */
errorMessage?: string;
}
//# sourceMappingURL=export-response.d.ts.map