We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See meta issue and spec for the description and details:
The text was updated successfully, but these errors were encountered:
I ran a simple app instrumented with the APM client and configured to send its data to a serverless project.
package main import ( "io" "log" "net/http" "go.elastic.co/apm/module/apmhttp/v2" _ "go.elastic.co/apm/v2" ) func main() { handler := http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { _, _ = io.WriteString(w, "Hello, world!\n") }) http.Handle("/hello", apmhttp.Wrap(handler)) err := http.ListenAndServe(":7777", nil) if err != nil { log.Fatal(err) } }
Sorry, something went wrong.
I ran the otel-collector example from otel-go, configured to send its data through OTLP HTTP to a serverless project.
No branches or pull requests
See meta issue and spec for the description and details:
The text was updated successfully, but these errors were encountered: