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:
benhall_io 2021-07-20 15:44:47 +01:00 committed by GitHub
parent 4ff39e482a
commit 706320b85e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;