parent
46bb490a94
commit
310f315099
13
README.md
13
README.md
|
|
@ -12,13 +12,14 @@ The .NET [OpenTelemetry](https://opentelemetry.io/) client.
|
|||
|
||||
## Getting Started
|
||||
|
||||
If you are new here, please [get started in 5 minutes](./docs/trace/getting-started/README.md).
|
||||
This repository includes multiple installable components, available on
|
||||
[NuGet](https://www.nuget.org/profiles/OpenTelemetry).
|
||||
If you are new here, please see [get started in 5
|
||||
minutes](./docs/trace/getting-started/README.md).
|
||||
|
||||
Each package has its individual `README.md` file, which covers the instruction
|
||||
on how to install and how to get started. To find all the available components,
|
||||
please take a look at the `src` folder.
|
||||
This repository includes multiple installable components, available on
|
||||
[NuGet](https://www.nuget.org/profiles/OpenTelemetry). Each component has its
|
||||
individual `README.md` file, which covers the instruction on how to install and
|
||||
how to get started. To find all the available components, please take a look at
|
||||
the `src` folder.
|
||||
|
||||
Here are the most commonly used components:
|
||||
|
||||
|
|
|
|||
|
|
@ -47,13 +47,13 @@ Congratulations! You are now collecting traces using OpenTelemetry.
|
|||
|
||||
What does the above program do?
|
||||
|
||||
The program creates an `ActivitySource` which represents [OpenTelemetry
|
||||
The program creates an `ActivitySource` which represents an [OpenTelemetry
|
||||
Tracer](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#tracer).
|
||||
The activitysource instance is used to start an `Activity` which represent
|
||||
The `ActivitySource` instance is used to start an `Activity` which represents an
|
||||
[OpenTelemetry
|
||||
Span](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#span).
|
||||
An OpenTelemetry
|
||||
[TracerProvider](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#tracerprovider)
|
||||
configured to subscribe to the activities from the source
|
||||
is configured to subscribe to the activities from the source
|
||||
`MyCompany.MyProduct.MyLibrary`, and export it to `ConsoleExporter`.
|
||||
`ConsoleExporter` simply displays it on the console.
|
||||
|
|
|
|||
Loading…
Reference in New Issue