mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-28 21:09:17 +02:00
75562dd381
* add RegisterSimpleSpanProcessor() modeled on stackdriver code * update examples
91 lines
2.4 KiB
Go
91 lines
2.4 KiB
Go
// Copyright 2019, OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
|
|
"net/http"
|
|
"time"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"go.opentelemetry.io/api/distributedcontext"
|
|
"go.opentelemetry.io/api/key"
|
|
"go.opentelemetry.io/api/trace"
|
|
"go.opentelemetry.io/exporter/trace/stdout"
|
|
"go.opentelemetry.io/plugin/httptrace"
|
|
sdktrace "go.opentelemetry.io/sdk/trace"
|
|
)
|
|
|
|
func initTracer() {
|
|
// Register SDK as trace provider.
|
|
sdktrace.Register()
|
|
|
|
// Create stdout exporter to be able to retrieve
|
|
// the collected spans.
|
|
exporter, err := stdout.NewExporter(stdout.Options{PrettyPrint: true})
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
exporter.RegisterSimpleSpanProcessor()
|
|
|
|
// For the demonstration, use sdktrace.AlwaysSample sampler to sample all traces.
|
|
// In a production application, use sdktrace.ProbabilitySampler with a desired probability.
|
|
sdktrace.ApplyConfig(sdktrace.Config{DefaultSampler: sdktrace.AlwaysSample()})
|
|
}
|
|
|
|
func main() {
|
|
initTracer()
|
|
|
|
client := http.DefaultClient
|
|
ctx := distributedcontext.NewContext(context.Background(),
|
|
distributedcontext.Insert(key.New("username").String("donuts")),
|
|
)
|
|
|
|
var body []byte
|
|
|
|
err := trace.GlobalTracer().WithSpan(ctx, "say hello",
|
|
func(ctx context.Context) error {
|
|
req, _ := http.NewRequest("GET", "http://localhost:7777/hello", nil)
|
|
|
|
ctx, req = httptrace.W3C(ctx, req)
|
|
httptrace.Inject(ctx, req)
|
|
|
|
fmt.Printf("Sending request...\n")
|
|
res, err := client.Do(req)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
body, err = ioutil.ReadAll(res.Body)
|
|
res.Body.Close()
|
|
trace.CurrentSpan(ctx).SetStatus(codes.OK)
|
|
|
|
return err
|
|
})
|
|
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Printf("Response Received: %s\n\n\n", body)
|
|
fmt.Printf("Waiting for few seconds to export spans ...\n\n")
|
|
time.Sleep(10 * time.Second)
|
|
fmt.Printf("Inspect traces on stdout")
|
|
}
|