Skip to content

Commit a449f51

Browse files
Azure Monitor Exporter - Remove unused public properties (Azure#16988)
* Remove unused public properties * Update API
1 parent d07cd4e commit a449f51

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

sdk/monitor/Microsoft.OpenTelemetry.Exporter.AzureMonitor/api/Microsoft.OpenTelemetry.Exporter.AzureMonitor.netstandard2.0.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ public partial class AzureMonitorExporterOptions : Azure.Core.ClientOptions
88
{
99
public AzureMonitorExporterOptions() { }
1010
public string ConnectionString { get { throw null; } set { } }
11-
public long MaxTransmissionStorageCapacity { get { throw null; } set { } }
12-
public string StorageFolder { get { throw null; } set { } }
1311
}
1412
public partial class AzureMonitorTraceExporter : OpenTelemetry.BaseExporter<System.Diagnostics.Activity>
1513
{

sdk/monitor/Microsoft.OpenTelemetry.Exporter.AzureMonitor/src/AzureMonitorExporterOptions.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,6 @@ namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
77
{
88
public class AzureMonitorExporterOptions : ClientOptions
99
{
10-
private const int DefaultCapacityKiloBytes = 50 * 1024;
11-
private const long StorageCapacity = DefaultCapacityKiloBytes * 1024;
12-
1310
public string ConnectionString { get; set; }
14-
15-
public long MaxTransmissionStorageCapacity { get; set; } = StorageCapacity;
16-
17-
public string StorageFolder { get; set; }
1811
}
1912
}

0 commit comments

Comments
 (0)