Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add a base page for go zero code instrumentation #4718

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ content/en/docs/languages/rust/ @open-telemetry/docs-approvers @open-te
content/en/docs/languages/swift/ @open-telemetry/docs-approvers @open-telemetry/swift-approvers
content/en/docs/security/ @open-telemetry/docs-approvers @open-telemetry/sig-security-maintainers
content/en/docs/specs/ @open-telemetry/docs-approvers @open-telemetry/specs-approvers
content/en/docs/zero-code/go @open-telemetry/docs-approvers @open-telemetry/go-approvers @open-telemetry/go-instrumentation-approvers
content/en/docs/zero-code/java/ @open-telemetry/docs-approvers @open-telemetry/java-approvers @open-telemetry/java-instrumentation-approvers
content/en/docs/zero-code/js/ @open-telemetry/docs-approvers @open-telemetry/javascript-approvers
content/en/docs/zero-code/net/ @open-telemetry/docs-approvers @open-telemetry/dotnet-approvers @open-telemetry/dotnet-instrumentation-approvers
Expand Down
1 change: 1 addition & 0 deletions .github/component-label-map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ sig:go:
- changed-files:
- any-glob-to-any-file:
- content/en/docs/languages/go/**
- content/en/docs/zero-code/go/**
sig:java:
- changed-files:
- any-glob-to-any-file:
Expand Down
1 change: 1 addition & 0 deletions content/en/docs/concepts/instrumentation/zero-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Other configuration options are available, including:
Automatic instrumentation is available for the following languages:

- [.NET](/docs/zero-code/net/)
- [Go](/docs/zero-code/go)
- [Java](/docs/zero-code/java/)
- [JavaScript](/docs/zero-code/js/)
- [PHP](/docs/languages/php/automatic/)
Expand Down
13 changes: 13 additions & 0 deletions content/en/docs/zero-code/go.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: Go zero-code instrumentation
linkTitle: Go
weight: 16
---

Zero-code instrumentation for Go provides a way to instrument any Go application
and capture telemetry data from many popular libraries and frameworks without
any code changes.

This project is currently work in progress and you can visit the
[opentelemetry-go-instrumentation repository](https://github.com/open-telemetry/opentelemetry-go-instrumentation/)
to learn more.
Loading