parent
46bb490a94
commit
310f315099
13
README.md
13
README.md
|
|
@ -12,13 +12,14 @@ The .NET [OpenTelemetry](https://opentelemetry.io/) client.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
If you are new here, please [get started in 5 minutes](./docs/trace/getting-started/README.md).
|
If you are new here, please see [get started in 5
|
||||||
This repository includes multiple installable components, available on
|
minutes](./docs/trace/getting-started/README.md).
|
||||||
[NuGet](https://www.nuget.org/profiles/OpenTelemetry).
|
|
||||||
|
|
||||||
Each package has its individual `README.md` file, which covers the instruction
|
This repository includes multiple installable components, available on
|
||||||
on how to install and how to get started. To find all the available components,
|
[NuGet](https://www.nuget.org/profiles/OpenTelemetry). Each component has its
|
||||||
please take a look at the `src` folder.
|
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:
|
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?
|
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).
|
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
|
[OpenTelemetry
|
||||||
Span](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#span).
|
Span](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#span).
|
||||||
An OpenTelemetry
|
An OpenTelemetry
|
||||||
[TracerProvider](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/trace/api.md#tracerprovider)
|
[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`.
|
`MyCompany.MyProduct.MyLibrary`, and export it to `ConsoleExporter`.
|
||||||
`ConsoleExporter` simply displays it on the console.
|
`ConsoleExporter` simply displays it on the console.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue