We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fb8a5 commit dec8d51Copy full SHA for dec8d51
src/OpenTelemetry.Exporter.OpenTelemetryProtocol/OtlpExporterOptions.cs
@@ -48,9 +48,14 @@ public class OtlpExporterOptions : IOtlpExporterOptions
48
/// Initializes a new instance of the <see cref="OtlpExporterOptions"/> class.
49
/// </summary>
50
public OtlpExporterOptions()
51
+ : this(configurationType: OtlpExporterOptionsConfigurationType.Default)
52
+ {
53
+ }
54
+
55
+ internal OtlpExporterOptions(OtlpExporterOptionsConfigurationType configurationType)
56
: this(
57
configuration: null,
- configurationType: OtlpExporterOptionsConfigurationType.Default,
58
+ configurationType: configurationType,
59
defaultBatchOptions: new())
60
{
61
}
0 commit comments