-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AzureMonitorDistro] new project: Azure.Monitor.OpenTelemetry (#33762)
* new project for distro * update readme * add solution items * rename project. update CODEOWNERS. update ci.yml * add missing sections to readme * remove Core * fix directory * new Labels * changing to "beta" * Update sdk/monitor/Azure.Monitor.ApplicationInsights.OpenTelemetry/README.md Co-authored-by: Reiley Yang <[email protected]> * added Monitor - Distro to fabricbot * rename "Azure.Monitor.ApplicationInsights.OpenTelemetry" to "Azure.Monitor.OpenTelemetry" --------- Co-authored-by: Reiley Yang <[email protected]>
- Loading branch information
1 parent
8547823
commit f194a76
Showing
8 changed files
with
132 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
sdk/monitor/Azure.Monitor.OpenTelemetry/Azure.Monitor.OpenTelemetry.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.5.33318.248 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Monitor.OpenTelemetry", "src\Azure.Monitor.OpenTelemetry.csproj", "{4CFE3074-F921-403D-9ADE-D12B0C07F3DF}" | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5B9B1B20-4408-4BFC-9D9A-22C74ABD328F}" | ||
ProjectSection(SolutionItems) = preProject | ||
CHANGELOG.md = CHANGELOG.md | ||
Directory.Build.props = Directory.Build.props | ||
README.md = README.md | ||
EndProjectSection | ||
EndProject | ||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Dependent Projects", "Dependent Projects", "{E8C00D1E-9637-423D-AD28-D40CC01F19BE}" | ||
EndProject | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Monitor.OpenTelemetry.Exporter", "..\Azure.Monitor.OpenTelemetry.Exporter\src\Azure.Monitor.OpenTelemetry.Exporter.csproj", "{4158B8A7-971D-4A57-B4C8-5077BFD10AE6}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{4CFE3074-F921-403D-9ADE-D12B0C07F3DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{4CFE3074-F921-403D-9ADE-D12B0C07F3DF}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{4CFE3074-F921-403D-9ADE-D12B0C07F3DF}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{4CFE3074-F921-403D-9ADE-D12B0C07F3DF}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
{4158B8A7-971D-4A57-B4C8-5077BFD10AE6} = {E8C00D1E-9637-423D-AD28-D40CC01F19BE} | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {901A3302-C365-45ED-959D-662F975A7511} | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Release History | ||
|
||
## 1.0.0-beta.1 (Unreleased) | ||
|
||
### Features Added | ||
|
||
### Breaking Changes | ||
|
||
### Bugs Fixed | ||
|
||
### Other Changes |
13 changes: 13 additions & 0 deletions
13
sdk/monitor/Azure.Monitor.OpenTelemetry/Directory.Build.props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<PropertyGroup> | ||
<IsClientLibrary>true</IsClientLibrary> | ||
</PropertyGroup> | ||
|
||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., Directory.Build.props))\Directory.Build.props" /> | ||
|
||
<PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Azure Monitor Distro client library for .NET | ||
|
||
## Getting started | ||
|
||
### Prerequisites | ||
|
||
### Install the package | ||
|
||
### Authenticate the client | ||
|
||
## Key concepts | ||
|
||
## Examples | ||
|
||
## Troubleshooting | ||
|
||
## Next steps | ||
|
||
For more information on Azure SDK, please refer to [this website](https://azure.github.io/azure-sdk/) | ||
|
||
## Contributing | ||
|
||
See [CONTRIBUTING.md](https://github.com/Azure/azure-sdk-for-net/blob/main/CONTRIBUTING.md) for details on contribution process. | ||
|
||
## Release Schedule | ||
|
||
This distro is under active development. | ||
|
||
The library is not yet _generally available_, and is not officially supported. Future releases will not attempt to maintain backwards compatibility with previous releases. Each beta release includes significant changes to the distro package, making them incompatible with each other. |
14 changes: 14 additions & 0 deletions
14
sdk/monitor/Azure.Monitor.OpenTelemetry/src/Azure.Monitor.OpenTelemetry.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Description>An OpenTelemetry .NET distro that exports to Azure Monitor</Description> | ||
<AssemblyTitle>AzureMonitor OpenTelemetry Distro</AssemblyTitle> | ||
<Version>1.0.0-beta.1</Version> | ||
<PackageTags>Azure Monitor OpenTelemetry Exporter Distro ApplicationInsights</PackageTags> | ||
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks> | ||
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\Azure.Monitor.OpenTelemetry.Exporter\src\Azure.Monitor.OpenTelemetry.Exporter.csproj" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters