Last active
September 29, 2020 02:33
-
-
Save tedsuo/46300cffce5993899b518191cfae5235 to your computer and use it in GitHub Desktop.
OTel Launcher Go Example
This file contains hidden or 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
| import "github.com/lightstep/otel-launcher-go/launcher" | |
| func main() { | |
| otel := launcher.ConfigureOpentelemetry( | |
| launcher.WithServiceName("robochef9000"), | |
| launcher.WithServiceVersion("v1.2.3"), | |
| launcher.WithAccessToken("ls-access-token"), | |
| ) | |
| defer otel.Shutdown() | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment