0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DatadogAPMをOpencensusで活用しよう(ログとトレースの紐付け)

Last updated at Posted at 2020-01-31

はじめに

こんにちわ、すえけん(@sueken5)です。

この記事ではDatadogAPMのトレースにログ情報を付随させる方法を書きます。

スクリーンショット 2020-01-31 15.42.13.png

このようにログとトレースを紐付けると簡単にデバックできるのでとてもおすすめです。

紐づけるには

datadog APMとログを紐づけるにはログにtrace_idとspan_idをつける必要があります。実際のログは次のような感じです。

{"level":"DEBUG","ts":"2020-01-31T15:33:52.042+0900","msg":"hello world","dd.trace_id":10034860525566454582}

datadogの予約語?にdd.trace_idとdd.span_idがありますのでそれにidを入れます。

datadog用にTraceID/SpanIDを取得しよう

ここでハマったのですがTraceID/SpanIDは文字列の状態で送ってもうまくTraceIDが違い、トレースとログがくっつきません。なので次のようにします。

	spanCTX := trace.FromContext(ctx).SpanContext()
	fields = append(
		fields,
		zap.Uint64("dd.trace_id", binary.BigEndian.Uint64(spanCTX.TraceID[8:])),
		zap.Uint64("dd.span_id", binary.BigEndian.Uint64(spanCTX.SpanID[:])),
	)
	l.logger.Error(msg, fields...)

spanContextからTraceIDをとりbinaryパッケージを使って処理します。このやり方はdatadogのexporterのTraceIDの取得のやり方を参考にしています。

github.com/DataDog/opencensus-go-exporter-datadog/span.go
func (e *traceExporter) convertSpan(s *trace.SpanData) *ddSpan {
	startNano := s.StartTime.UnixNano()
	span := &ddSpan{
		TraceID:  binary.BigEndian.Uint64(s.SpanContext.TraceID[8:]),
		SpanID:   binary.BigEndian.Uint64(s.SpanContext.SpanID[:]),
		Name:     "opencensus",
		Resource: s.Name,
		Service:  e.opts.Service,
		Start:    startNano,
		Duration: s.EndTime.UnixNano() - startNano,
		Metrics:  map[string]float64{},
		Meta:     map[string]string{},
	}
        // 省略
}

この通りやるとトレースとログが紐づくようになります。

まとめ

トレースとログが紐づくっと一気にデバックがしやすくなります。おすすめです。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?