-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-path-zero-code-instrumentation
- Loading branch information
Showing
10 changed files
with
433 additions
and
567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule opentelemetry-java-examples
updated
22 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
title: 開発環境 | ||
# prettier-ignore | ||
cSpell:ignore: grpcio intellij libcurl libprotobuf nlohmann openssl protoc rebar | ||
default_lang_commit: a6efef05af7f854d2fcc9ec4b7433cc4ae799a40 | ||
--- | ||
|
||
[OpenTelemetry デモ GitHub リポジトリ](https://github.com/open-telemetry/opentelemetry-demo) | ||
|
||
このデモの開発には、複数のプログラミング言語のツールが必要です。 | ||
最小要件バージョンについては可能な範囲で明示されていますが、最新版の利用を推奨しています。 | ||
OpenTelemetryデモチームは、可能な限り依存関係やツールを最新版に保つよう努めています。 | ||
|
||
## Protocol Buffers ファイルの生成 {#generate-protobuf-files} | ||
|
||
すべてのサービスに対応する protobuf ファイルを生成するための `make generate-protobuf` コマンドが提供されています。 | ||
このコマンドにより、(Dockerを使用せず)ローカルでのコードのコンパイルを行うことができ、IntelliJやVS CodeなどのIDEからのヒントを確認することができます。 | ||
ファイル生成前にフロントエンドのソースフォルダで `npm install` の実行が必要な場合があります。 | ||
|
||
## 必要な開発ツール {#development-tooling-requirements} | ||
|
||
### .NET | ||
|
||
- .NET 6.0+ | ||
|
||
### C++ | ||
|
||
- build-essential | ||
- cmake | ||
- libcurl4-openssl-dev | ||
- libprotobuf-dev | ||
- nlohmann-json3-dev | ||
- pkg-config | ||
- protobuf-compiler | ||
|
||
### Go | ||
|
||
- Go 1.19+ | ||
- protoc-gen-go | ||
- protoc-gen-go-grpc | ||
|
||
### Java | ||
|
||
- JDK 17+ | ||
- Gradle 7+ | ||
|
||
### JavaScript | ||
|
||
- Node.js 16+ | ||
|
||
### PHP | ||
|
||
- PHP 8.1+ | ||
- Composer 2.4+ | ||
|
||
### Python | ||
|
||
- Python 3.10 | ||
- grpcio-tools 1.48+ | ||
|
||
### Ruby | ||
|
||
- Ruby 3.1+ | ||
|
||
### Rust | ||
|
||
- Rust 1.61+ | ||
- protoc 3.21+ | ||
- protobuf-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{{/* Docsy override (temporary) */ -}} | ||
|
||
<div class="td-content"> | ||
<h1>{{ .Title }}</h1> | ||
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }} | ||
<div class="td-byline mb-4"> | ||
{{ with .Params.author }}{{ T "post_byline_by" }} <b>{{ . | markdownify }}</b> |{{ end}} | ||
<time datetime="{{ $.Date.Format "2006-01-02" }}" class="text-body-secondary">{{ $.Date.Format $.Site.Params.time_format_blog }}</time> | ||
</div> | ||
<header class="article-meta"> | ||
{{ partial "taxonomy_terms_article_wrapper.html" . -}} | ||
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}} | ||
{{ partial "reading-time.html" . -}} | ||
{{ end -}} | ||
</header> | ||
{{ if .Date.Before (now.AddDate -1 0 0) -}} | ||
<div class="pageinfo pageinfo-warning"> | ||
<p> | ||
<i class="fa-solid fa-triangle-exclamation"></i> | ||
Blog posts are not updated after publication. This post is more | ||
than a year old, so its content may be outdated, and some links may be | ||
invalid. Cross-verify any information before relying on it. | ||
</p> | ||
</div> | ||
{{ end -}} | ||
{{ .Content }} | ||
{{ if (.Site.Config.Services.Disqus.Shortname) -}} | ||
<br /> | ||
{{- partial "disqus-comment.html" . -}} | ||
<br /> | ||
{{ end -}} | ||
|
||
{{ partial "pager.html" . }} | ||
{{ partial "page-meta-lastmod.html" . -}} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.