You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-07-13 01:00:22 +02:00
[website_docs] Fix link intra-site link refs (#2666)
* [website_docs] Fix link intra-site link refs * Markdown-link config: add replace pattern for /docs/ Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
This commit is contained in:
@ -8,6 +8,10 @@
|
|||||||
{
|
{
|
||||||
"pattern": "^/registry",
|
"pattern": "^/registry",
|
||||||
"replacement": "https://opentelemetry.io/registry"
|
"replacement": "https://opentelemetry.io/registry"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pattern": "^/docs/",
|
||||||
|
"replacement": "https://opentelemetry.io/docs/"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"retryOn429": true,
|
"retryOn429": true,
|
||||||
|
@ -5,7 +5,7 @@ linkTitle: Libraries
|
|||||||
aliases: [/docs/instrumentation/go/using_instrumentation_libraries, /docs/instrumentation/go/automatic_instrumentation]
|
aliases: [/docs/instrumentation/go/using_instrumentation_libraries, /docs/instrumentation/go/automatic_instrumentation]
|
||||||
---
|
---
|
||||||
|
|
||||||
Go does not support truly automatic instrumentation like other languages today. Instead, you'll need to depend on [instrumentation libraries](https://opentelemetry.io/docs/reference/specification/glossary/#instrumentation-library) that generate telemetry data for a particular instrumented library. For example, the instrumentation library for `net/http` will automatically create spans that track inbound and outbound requests once you configure it in your code.
|
Go does not support truly automatic instrumentation like other languages today. Instead, you'll need to depend on [instrumentation libraries](/docs/reference/specification/glossary/#instrumentation-library) that generate telemetry data for a particular instrumented library. For example, the instrumentation library for `net/http` will automatically create spans that track inbound and outbound requests once you configure it in your code.
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ Connecting manual instrumentation you write in your app with instrumentation gen
|
|||||||
|
|
||||||
## Available packages
|
## Available packages
|
||||||
|
|
||||||
A full list of instrumentation libraries available can be found in the [OpenTelemetry registry](https://opentelemetry.io/registry/?language=go&component=instrumentation).
|
A full list of instrumentation libraries available can be found in the [OpenTelemetry registry](/registry/?language=go&component=instrumentation).
|
||||||
|
|
||||||
## Next steps
|
## Next steps
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user