1

这是使用堆栈驱动程序跟踪 go 客户端包的缩小版。

看起来这个简单的例子应该可以工作,但它会产生错误。

package main

import (
    "context"
    "flag"
    "log"
    "net/http"

    "cloud.google.com/go/trace"
    "github.com/davecgh/go-spew/spew"
    "google.golang.org/api/option"
)

var (
    projectID         = flag.String("projectID", "", "projcect id")
    serviceAccountKey = flag.String("serviceAccountKey", "", "path to serviceacount json")
)

func main() {
    flag.Parse()
    mux := http.NewServeMux()
    log.Fatalln(http.ListenAndServe(":9000", Trace(*projectID, *serviceAccountKey, mux)))
}

func Trace(projectID string, keyPath string, h http.Handler) http.HandlerFunc {
    client, err := trace.NewClient(context.Background(), projectID, option.WithServiceAccountFile(keyPath))
    if err != nil {
        panic(err)
    }
    return func(w http.ResponseWriter, r *http.Request) {
        s := client.SpanFromRequest(r)
        defer func() { err := s.FinishWait(); spew.Dump(err) }()
        h.ServeHTTP(w, r)
    }
}

我将其运行为:

$ teststackdrivertrace -projectID ${GCLOUD_PROJECT_ID} -serviceAccountKey ${PATH_TO_SERVICEACCOUNT_JSON}

并卷曲它会产生:

$ curl -s --header "X-Cloud-Trace-Context: 205445aa7843bc8bf206b120001000/0;o=1" localhost:9000

$ (*googleapi.Error)(0xc4203a2c80)(googleapi: Error 400: Request contains an invalid argument., badRequest)

我错过了什么?

4

1 回答 1

0

我的 traceId 是 30 个字节长而不是 32 个。我从https://cloud.google.com/trace/docs/faq中获取了示例 curl,它也只有 30 个字节。

于 2016-11-12T01:17:25.023 回答