Skip to content

Commit

Permalink
docs: update content/ja/docs/concepts/signals/traces page
Browse files Browse the repository at this point in the history
  • Loading branch information
Msksgm committed Feb 11, 2025
1 parent c8c0a25 commit c1695e0
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions content/ja/docs/concepts/signals/traces.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
title: トレース
weight: 1
description: アプリケーションを通過するリクエストの経路
default_lang_commit: 9b5e318
cSpell:ignore: Guten
default_lang_commit: c8c0a255c51e0ba22f89601f81842944a4d673bf
---

**トレース** は、リクエストがアプリケーションに投げられたときに何が起こるかの全体像を教えてくれます。
Expand All @@ -23,8 +22,8 @@ cSpell:ignore: Guten
{
"name": "hello",
"context": {
"trace_id": "0x5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "0x051581bf3cb55c13"
"trace_id": "5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "051581bf3cb55c13"
},
"parent_id": null,
"start_time": "2022-04-29T18:52:58.114201Z",
Expand Down Expand Up @@ -54,10 +53,10 @@ cSpell:ignore: Guten
{
"name": "hello-greetings",
"context": {
"trace_id": "0x5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "0x5fb397be34d26b51"
"trace_id": "5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "5fb397be34d26b51"
},
"parent_id": "0x051581bf3cb55c13",
"parent_id": "051581bf3cb55c13",
"start_time": "2022-04-29T18:52:58.114304Z",
"end_time": "2022-04-29T22:52:58.114561Z",
"attributes": {
Expand Down Expand Up @@ -92,10 +91,10 @@ cSpell:ignore: Guten
{
"name": "hello-salutations",
"context": {
"trace_id": "0x5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "0x93564f51e1abe1c2"
"trace_id": "5b8aa5a2d2c872e8321cf37308d69df2",
"span_id": "93564f51e1abe1c2"
},
"parent_id": "0x051581bf3cb55c13",
"parent_id": "051581bf3cb55c13",
"start_time": "2022-04-29T18:52:58.114492Z",
"end_time": "2022-04-29T18:52:58.114631Z",
"attributes": {
Expand Down Expand Up @@ -148,7 +147,7 @@ OpenTelemetryでのトレースがどのように機能するかを理解する

コンテキスト伝搬(プロパゲーション)は、分散トレースを可能にする中心となる概念です。
コンテキスト伝搬を使用すると、スパンがどこで生成されたかに関係なく、スパンを相互に関連付け、トレースとして組み立てられます。
このトピックについては、[コンテキスト伝搬](/docs/concepts/context-propagation)の概要を参照してください。
このトピックについては、[コンテキスト伝搬](../../context-propagation)の概要を参照してください。

## スパン {#spans}

Expand Down Expand Up @@ -216,7 +215,7 @@ OpenTelemetryでは、以下の情報を含みます。
- トレースフラグ。これはトレースに関する情報を含むバイナリエンコーディングです。
- ベンダ固有のトレース情報を保持するキーと値のペアのリスト

スパンコンテキストは、[分散コンテキスト](#context-propagation)[バゲッジ](/docs/concepts/signals/baggage)と共にシリアライズされ、伝搬されるスパンの一部です。
スパンコンテキストは、[分散コンテキスト](#context-propagation)[バゲッジ](../baggage)と共にシリアライズされ、伝搬されるスパンの一部です。

スパンコンテキストにはトレースIDが含まれているため、[スパンリンク](#span-links)を作成する際に使用されます。

Expand Down Expand Up @@ -277,6 +276,8 @@ SDKでのサンプリングで属性を利用できるようにするには、

リンクは必須ではありませんが、トレーススパン同士を関連付ける良い方法として役立ちます。

スパンリンクの詳細は、[リンク](/docs/specs/otel/trace/api/#link) を参照してください。

### スパンステータス {#span-status}

各スパンにはステータスがあります。可能な値は以下の3つです。
Expand Down

0 comments on commit c1695e0

Please sign in to comment.