-
Notifications
You must be signed in to change notification settings - Fork 772
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into resource-dependencyinjection-support
- Loading branch information
Showing
18 changed files
with
4,243 additions
and
2 deletions.
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
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
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
Empty file.
526 changes: 526 additions & 0 deletions
526
src/OpenTelemetry.SemanticConventions/.publicApi/net462/PublicAPI.Unshipped.txt
Large diffs are not rendered by default.
Oops, something went wrong.
Empty file.
526 changes: 526 additions & 0 deletions
526
src/OpenTelemetry.SemanticConventions/.publicApi/netstandard2.0/PublicAPI.Unshipped.txt
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
src/OpenTelemetry.SemanticConventions/OpenTelemetry.SemanticConventions.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,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks> | ||
<Description>OpenTelemetry Semantic Conventions</Description> | ||
<PackageTags>$(PackageTags);semantic-conventions</PackageTags> | ||
</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,34 @@ | ||
# Semantic Conventions for OpenTelemetry .NET | ||
|
||
This project contains the generated code for the Semantic Conventions | ||
defined by the OpenTelemetry specification. | ||
|
||
## Installation | ||
|
||
```shell | ||
dotnet add package OpenTelemetry.SemanticConventions | ||
``` | ||
|
||
## Generating the files | ||
|
||
This project uses the | ||
[Semantic Convention Generator](https://github.com/open-telemetry/build-tools/blob/main/semantic-conventions/README.md). | ||
The folder `scripts` at the top level of the project contains | ||
the templates and the script file used in the process. | ||
|
||
To generate the code files, run: | ||
|
||
```shell | ||
./scripts/semantic-conventions/generate.sh | ||
``` | ||
|
||
Or, with PowerShell: | ||
|
||
```shell | ||
./scripts/semantic-conventions/generate.ps1 | ||
``` | ||
|
||
## References | ||
|
||
* [OpenTelemetry Project](https://opentelemetry.io/) | ||
* [Build tools](https://github.com/open-telemetry/build-tools) |
Oops, something went wrong.