dongtu7567 2016-03-27 00:39
浏览 31
已采纳

追加新跟踪失败

I'm attempting to use the patchTraces method to submit tracing information to Google CloudTrace. The patch request I'm making returns a opaque error message. Any idea what I'm doing wrong?

Go code

package main

import (
    "io/ioutil"
    "log"
    "os"
    "time"

    "github.com/twinj/uuid"
    "golang.org/x/oauth2"
    goog "golang.org/x/oauth2/google"
    cloudtrace "google.golang.org/api/cloudtrace/v1"
)

func run() error {
    blob, err := ioutil.ReadFile("jwt.json")
    if err != nil {
        return err
    }
    conf, err := goog.JWTConfigFromJSON(blob, cloudtrace.CloudPlatformScope)
    if err != nil {
        return err
    }

    client := conf.Client(oauth2.NoContext)

    srv, err := cloudtrace.New(client)
    if err != nil {
        return err
    }

    tracer := cloudtrace.NewProjectsService(srv)
    now := time.Now()
    format := "2006-01-02T15:04:05.999999999Z"

    call := tracer.PatchTraces("foo-1262", &cloudtrace.Traces{
        Traces: []*cloudtrace.Trace{
            {
                TraceId:   uuid.NewV4().String(),
                ProjectId: "foo-1262",
                Spans: []*cloudtrace.TraceSpan{
                    {
                        StartTime: now.Format(format),
                        EndTime:   now.Add(5 * time.Second).Format(format),
                        Kind:      "RPC_SERVER",
                        Name:      "bar",
                        SpanId:    100,
                    },
                },
            },
        },
    })

    _, err = call.Do()
    return err
}

func main() {
    if err := run(); err != nil {
        log.Fatal(err)
    }
}

Here's the request that gets sent

https://cloudtrace.googleapis.com/v1/projects/foo-1262/traces?alt=json
{
    "traces": [{
        "projectId": "foo-1262",
        "spans": [{
            "endTime": "2016-03-26T17:23:19.705253417Z",
            "kind": "RPC_SERVER",
            "name": "foo",
            "spanId": "100",
            "startTime": "2016-03-26T17:23:14.705253417Z"
        }],
        "traceId": "4d86ec85-419d-40cf-ae95-d49c2d066cd6"
    }]
}

Response

{
    "error": {
        "code": 400,
        "message": "Request contains an invalid argument.",
        "errors": [{
            "message": "Request contains an invalid argument.",
            "domain": "global",
            "reason": "badRequest"
        }],
        "status": "INVALID_ARGUMENT"
    }
}

Everything looks correct, but I'm getting back a useless error message. Please help!

  • 写回答

1条回答 默认 最新

  • dongzhao1865 2016-03-27 02:20
    关注

    My trace ID generation was incorrect.

    package main
    
    import (
        "io/ioutil"
        "log"
        "os"
        "time"
        "encoding/hex"
        "rand"
    
        "golang.org/x/oauth2"
        goog "golang.org/x/oauth2/google"
        cloudtrace "google.golang.org/api/cloudtrace/v1"
    )
    
    func run() error {
        blob, err := ioutil.ReadFile("jwt.json")
        if err != nil {
            return err
        }
        conf, err := goog.JWTConfigFromJSON(blob, cloudtrace.CloudPlatformScope)
        if err != nil {
            return err
        }
    
        client := conf.Client(oauth2.NoContext)
    
        srv, err := cloudtrace.New(client)
        if err != nil {
            return err
        }
    
        tracer := cloudtrace.NewProjectsService(srv)
        now := time.Now()
        format := "2006-01-02T15:04:05.999999999Z"
    
        p := make([]byte, 16)
        rand.Read(p)
    
        call := tracer.PatchTraces("foo-1262", &cloudtrace.Traces{
            Traces: []*cloudtrace.Trace{
                {
                    TraceId:   hex.EncodeToString(p),
                    ProjectId: "foo-1262",
                    Spans: []*cloudtrace.TraceSpan{
                        {
                            StartTime: now.Format(format),
                            EndTime:   now.Add(5 * time.Second).Format(format),
                            Kind:      "RPC_SERVER",
                            Name:      "bar",
                            SpanId:    100,
                        },
                    },
                },
            },
        })
    
        _, err = call.Do()
        return err
    }
    
    func main() {
        if err := run(); err != nil {
            log.Fatal(err)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器