Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ja] add missing gauge asyn to ja #5700

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion content/ja/docs/concepts/signals/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: メトリクス
weight: 2
description: 実行時に取得された測定値
default_lang_commit: 9b5e318
default_lang_commit: eb19d1dd5ab2f66343ec76adbfb31f81024da3a1
---

**メトリクス**とは、実行時に取得されるサービスの**測定値**のことです。
Expand Down Expand Up @@ -53,6 +53,8 @@ OpenTelemetryでは、計測は **メトリクス計装** によって行われ
- **Asynchronous UpDownCounter(非同期アップダウンカウンター)**: **アップダウンカウンター**と同じですが、各エクスポートに対して一度だけ収集されます。
連続的な変更にアクセスできず、集約された値(たとえば、現在のキューのサイズ)のみにアクセスできる場合に使用できます。
- **Gauge(ゲージ)**: 読み取った時点での現在の値を測定します。たとえば、自動車の燃料計など。ゲージは非同期です。
- **Asynchronous Gauge(非同期ゲージ)**: **ゲージ**と同じですが、各エクスポートに対して一度だけ収集されます。
連続的な変更にアクセスできず、集約された値 のみにアクセスできる場合に使用できます。
- **Histogram(ヒストグラム)**: リクエストのレイテンシーなどの値をクライアント側で集約したもの。
値の統計に興味がある場合は、ヒストグラムが良いでしょう。
たとえば、どれくらいのリクエストが1秒未満か、といった疑問に答えてくれます。
Expand Down