Skip to content

Commit

Permalink
Rename (#16672)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajkumar-rangaraj authored Nov 6, 2020
1 parent cb0eb55 commit ab642ba
Show file tree
Hide file tree
Showing 101 changed files with 130 additions and 129 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.0-beta.1 (2020-10-07)
## 1.0.0-beta.1 (2020-11-06)

* Initial release of Azure Monitor Exporter for [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ VisualStudioVersion = 16.0.30330.147
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{8052009B-2126-44A3-88CD-4F3B17894C64}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Monitor.OpenTelemetry.Exporter", "src\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.csproj", "{00677EDC-1C5C-4C62-BEFD-9CF1D87195EA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.OpenTelemetry.Exporter.AzureMonitor", "src\Microsoft.OpenTelemetry.Exporter.AzureMonitor.csproj", "{00677EDC-1C5C-4C62-BEFD-9CF1D87195EA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Demo.Tracing", "tests\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Demo.Tracing\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Demo.Tracing.csproj", "{966EFB72-64D7-46D8-B592-9C141C5703F9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.OpenTelemetry.Exporter.AzureMonitor.Demo.Tracing", "tests\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Demo.Tracing\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Demo.Tracing.csproj", "{966EFB72-64D7-46D8-B592-9C141C5703F9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Tests", "tests\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Tests\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Tests.csproj", "{14546496-6144-49A5-9431-09611F38D30E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.OpenTelemetry.Exporter.AzureMonitor.Tests", "tests\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Tests\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Tests.csproj", "{14546496-6144-49A5-9431-09611F38D30E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Integration.Tests.AspNetCoreWebApp", "tests\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Integration.Tests.AspNetCoreWebApp\Integration.Tests.AspNetCoreWebApp.csproj", "{E00C15D6-96E5-4A3B-8701-AC24292301CE}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Integration.Tests.AspNetCoreWebApp", "tests\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Integration.Tests.AspNetCoreWebApp\Integration.Tests.AspNetCoreWebApp.csproj", "{E00C15D6-96E5-4A3B-8701-AC24292301CE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Integration.Tests", "tests\Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Integration.Tests\Integration.Tests.csproj", "{3CB1B19D-1155-4E4E-9D97-3A7B2926DE2E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Integration.Tests", "tests\Microsoft.OpenTelemetry.Exporter.AzureMonitor.Integration.Tests\Integration.Tests.csproj", "{3CB1B19D-1155-4E4E-9D97-3A7B2926DE2E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The [OpenTelemetry .NET](https://github.com/open-telemetry/opentelemetry-dotnet)
Install the Azure Monitor Exporter for OpenTelemetry .NET with NuGet:

```shell
dotnet add package Microsoft.Azure.Monitor.OpenTelemetry.Exporter
dotnet add package Microsoft.OpenTelemetry.Exporter.AzureMonitor
```
### Authenticate the client

Expand All @@ -26,9 +26,10 @@ This exporter sends traces to the configured Azure Monitor Resource using HTTPS.

## Examples

Refer to [`DemoTrace.cs`](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/monitor/Microsoft.OpenTelemetry.Exporter.AzureMonitor/tests/Microsoft.OpenTelemetry.Exporter.AzureMonitor.Demo.Tracing/DemoTrace.cs) for a complete demo.

```csharp
using Microsoft.Azure.Monitor.OpenTelemetry.Exporter;
using Microsoft.OpenTelemetry.Exporter.AzureMonitor;
using OpenTelemetry.Trace;

OpenTelemetry.Sdk.CreateTracerProviderBuilder()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
public static partial class AzureMonitorExporterHelperExtensions
{
public static OpenTelemetry.Trace.TracerProviderBuilder AddAzureMonitorTraceExporter(this OpenTelemetry.Trace.TracerProviderBuilder builder, System.Action<Microsoft.Azure.Monitor.OpenTelemetry.Exporter.AzureMonitorExporterOptions> configure = null) { throw null; }
public static OpenTelemetry.Trace.TracerProviderBuilder AddAzureMonitorTraceExporter(this OpenTelemetry.Trace.TracerProviderBuilder builder, System.Action<Microsoft.OpenTelemetry.Exporter.AzureMonitor.AzureMonitorExporterOptions> configure = null) { throw null; }
}
public partial class AzureMonitorExporterOptions : Azure.Core.ClientOptions
{
Expand All @@ -13,7 +13,7 @@ public AzureMonitorExporterOptions() { }
}
public partial class AzureMonitorTraceExporter : OpenTelemetry.BaseExporter<System.Diagnostics.Activity>
{
public AzureMonitorTraceExporter(Microsoft.Azure.Monitor.OpenTelemetry.Exporter.AzureMonitorExporterOptions options) { }
public AzureMonitorTraceExporter(Microsoft.OpenTelemetry.Exporter.AzureMonitor.AzureMonitorExporterOptions options) { }
public override OpenTelemetry.ExportResult Export(in OpenTelemetry.Batch<System.Diagnostics.Activity> batch) { throw null; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System.Diagnostics;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
internal static class ActivityExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using System.Threading;
using System.Threading.Tasks;
using Azure.Core;
using Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Models;
using Microsoft.OpenTelemetry.Exporter.AzureMonitor.Models;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
internal partial class ApplicationInsightsRestClient
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
using System.Linq;
using System.Runtime.CompilerServices;

using Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Models;
using Microsoft.OpenTelemetry.Exporter.AzureMonitor.Models;

using OpenTelemetry;
using OpenTelemetry.Resources;
using OpenTelemetry.Trace;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
/// <summary>
/// This class is responsible for converting an OpenTelemetry <see cref="Batch{T}"/> of <see cref="Activity"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System;
using System.Diagnostics;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
/// <summary>
/// test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Azure.Core;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
public class AzureMonitorExporterOptions : ClientOptions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using OpenTelemetry;
using OpenTelemetry.Trace;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
public class AzureMonitorTraceExporter : BaseExporter<Activity>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Collections.Generic;
using System.Diagnostics.Tracing;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
[EventSource(Name = EventSourceName)]
internal sealed class AzureMonitorTraceExporterEventSource : EventSource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
using Azure.Core;
using Azure.Core.Pipeline;

using Microsoft.Azure.Monitor.OpenTelemetry.Exporter.ConnectionString;
using Microsoft.Azure.Monitor.OpenTelemetry.Exporter.Models;
using Microsoft.OpenTelemetry.Exporter.AzureMonitor.ConnectionString;
using Microsoft.OpenTelemetry.Exporter.AzureMonitor.Models;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
/// <summary>
/// This class encapsulates transmitting a collection of <see cref="TelemetryItem"/> to the configured Ingestion Endpoint.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// This alias is necessary because it will otherwise try to default to "Microsoft.Azure.Core" which doesn't exist.
using AzureCoreConnectionString = Azure.Core.ConnectionString;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter.ConnectionString
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor.ConnectionString
{
internal static class ConnectionStringParser
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter.ConnectionString
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor.ConnectionString
{
internal static class Constants
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
internal class EventLevelSuffix
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Globalization;
using System.Threading;

namespace Microsoft.Azure.Monitor.OpenTelemetry.Exporter
namespace Microsoft.OpenTelemetry.Exporter.AzureMonitor
{
internal static class ExceptionExtensions
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ab642ba

Please sign in to comment.