Skip to content

Commit 7ba99af

Browse files
Results from /fix:all
1 parent aa39bbe commit 7ba99af

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

content/en/docs/languages/rust/getting-started.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ For more elaborate examples, see [examples](/docs/languages/rust/examples/).
2828

2929
### Dependencies
3030

31-
To begin, create an executable using `cargo new dice_server` in a new directory and add the following
32-
content to the `Cargo.toml` file:
31+
To begin, create an executable using `cargo new dice_server` in a new directory
32+
and add the following content to the `Cargo.toml` file:
3333

3434
```toml
3535
[package]
@@ -102,7 +102,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
102102
});
103103
}
104104
}
105-
106105
```
107106

108107
Build and run the application with the following command, then open
@@ -128,8 +127,8 @@ opentelemetry_sdk = "{{% version-from-registry otel-rust-sdk %}}"
128127
opentelemetry-stdout = { version = "{{% version-from-registry exporter-rust-stdout %}}", features = ["trace"] }
129128
```
130129

131-
Update the `main.rs` file with code to initialize a tracer and to emit
132-
spans when the `handle` function is called:
130+
Update the `main.rs` file with code to initialize a tracer and to emit spans
131+
when the `handle` function is called:
133132

134133
```rust
135134
use std::convert::Infallible;

content/ja/docs/collector/deployment/agent.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: エージェント
33
description: コレクターにシグナルを送信し、そこからバックエンドに送信する理由と方法
44
weight: 2
55
default_lang_commit: b34ebe22b71962da96b898eb39a666ed57d447fe
6+
drifted_from_default: true
67
cSpell:ignore: prometheusremotewrite
78
---
89

content/ja/docs/collector/deployment/gateway/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: ゲートウェイ
33
description: シグナルを単一のOTLPエンドポイントに送信し、そこからバックエンドに送信する理由と方法
44
weight: 3
55
default_lang_commit: b34ebe22b71962da96b898eb39a666ed57d447fe
6+
drifted_from_default: true
67
# prettier-ignore
78
cSpell:ignore: filelogreceiver hostmetricsreceiver hostnames loadbalancer loadbalancing resourcedetectionprocessor
89
---

content/ja/docs/demo/feature-flags.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ aliases:
55
- services/feature-flag
66
- services/featureflagservice
77
default_lang_commit: 24146bd1368e4c6082c7d6077efd29dba0d51055
8+
drifted_from_default: true
89
cSpell:ignore: OLJCESPC7Z
910
---
1011

content/ja/docs/what-is-opentelemetry.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: OpenTelemetryとは
33
description: OpenTelemetryが何であり、何でないかについての簡単な説明。
44
weight: 150
55
default_lang_commit: 44059882
6+
drifted_from_default: true
67
---
78

89
- OpenTelemetryは、[オブザーバビリティ](/docs/concepts/observability-primer/#what-is-observability)フレームワークであり、[トレース](/docs/concepts/signals/traces/)[メトリクス](/docs/concepts/signals/metrics/)[ログ](/docs/concepts/signals/logs/)のようなテレメトリーデータを作成・管理するためにデザインされたツールキットです。

content/pt/docs/concepts/instrumentation/_index.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Instrumentação
33
description: Como o OpenTelemetry facilita a instrumentação
44
weight: 15
55
default_lang_commit: 82bd738d51426acb34e126b230a8a1281f193e3e
6+
drifted_from_default: true
67
---
78

89
Para que um sistema seja observável, ele deve ser **instrumentado**: ou seja, o

0 commit comments

Comments
 (0)