Skip to content

Instantly share code, notes, and snippets.

@tedsuo
Last active September 29, 2020 02:33
Show Gist options
  • Select an option

  • Save tedsuo/46300cffce5993899b518191cfae5235 to your computer and use it in GitHub Desktop.

Select an option

Save tedsuo/46300cffce5993899b518191cfae5235 to your computer and use it in GitHub Desktop.
OTel Launcher Go Example
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