Add default to ExportProcessorType docstrings (#2151)
* Add default to ExportProcessorType docstrings * Add Batch cref to ExportProcessorType docstrings Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
This commit is contained in:
parent
4ff39e482a
commit
706320b85e
|
|
@ -75,7 +75,7 @@ namespace OpenTelemetry.Exporter
|
|||
public int? MaxPayloadSizeInBytes { get; set; } = DefaultMaxPayloadSizeInBytes;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the export processor type to be used with Jaeger Exporter.
|
||||
/// Gets or sets the export processor type to be used with Jaeger Exporter. The default value is <see cref="ExportProcessorType.Batch"/>.
|
||||
/// </summary>
|
||||
public ExportProcessorType ExportProcessorType { get; set; } = ExportProcessorType.Batch;
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ namespace OpenTelemetry.Exporter
|
|||
public int TimeoutMilliseconds { get; set; } = 10000;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the export processor type to be used with the OpenTelemetry Protocol Exporter.
|
||||
/// Gets or sets the export processor type to be used with the OpenTelemetry Protocol Exporter. The default value is <see cref="ExportProcessorType.Batch"/>.
|
||||
/// </summary>
|
||||
public ExportProcessorType ExportProcessorType { get; set; } = ExportProcessorType.Batch;
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ namespace OpenTelemetry.Exporter
|
|||
public int? MaxPayloadSizeInBytes { get; set; } = DefaultMaxPayloadSizeInBytes;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the export processor type to be used with Zipkin Exporter.
|
||||
/// Gets or sets the export processor type to be used with Zipkin Exporter. The default value is <see cref="ExportProcessorType.Batch"/>.
|
||||
/// </summary>
|
||||
public ExportProcessorType ExportProcessorType { get; set; } = ExportProcessorType.Batch;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue