You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Add comment to PR if author is not a member
36
36
if: env.MEMBER_FOUND == 'false'
37
37
run: |
38
-
gh pr comment ${PR_NUM} --repo open-telemetry/opentelemetry.io --body "Thank you for your contribution! 🎉 We would like to hear from you about your experience contributing to OpenTelemetry by taking a few minutes to fill out this survey: ${SURVEY_URL}"
38
+
gh pr comment ${PR_NUM} --repo open-telemetry/opentelemetry.io --body "Thank you for your contribution! 🎉 We would like to hear from you about your experience contributing to OpenTelemetry by taking a few minutes to fill out this [survey](${SURVEY_URL})"
If you want to get logs from your Java application ingested into an
@@ -53,7 +53,7 @@ This blog post shows how to set up this solution step by step.
53
53
{{% alert title="Note" color="info" %}}
54
54
55
55
Blog post instructions can easily get outdated. In case of issues, check this
56
-
[sample application deployed on Kubernetes](https://github.com/grafana/docker-otel-lgtm/tree/main/examples/java/json-logging-otlp),
56
+
[sample application deployed on Kubernetes](https://github.com/open-telemetry/opentelemetry-java-examples/blob/main/logging-k8s-stdout-otlp-json/README.md),
57
57
which is continuously updated and tested against the latest versions.
58
58
59
59
{{% /alert %}}
@@ -371,7 +371,7 @@ balance by providing highly contextualized logs that can be correlated with
371
371
traces and metrics.
372
372
373
373
If any of the steps are unclear or you encounter issues, check this
374
-
[sample application deployed on Kubernetes](https://github.com/grafana/docker-otel-lgtm/tree/main/examples/java/json-logging-otlp),
374
+
[sample application deployed on Kubernetes](https://github.com/open-telemetry/opentelemetry-java-examples/blob/main/logging-k8s-stdout-otlp-json/README.md),
375
375
which is continuously updated and tested against the latest versions.
| module: | The module name for the new distribution, following Go mod conventions. Optional, but recommended. | Yes |`go.opentelemetry.io/collector/cmd/builder`|
104
-
| name: | The binary name for your distribution | Yes |`otelcol-custom`|
105
-
| description: | A long name for the application. | Yes |`Custom OpenTelemetry Collector distribution`|
106
-
| otelcol_version: | The OpenTelemetry Collector version to use as base for the distribution. | Yes |`{{% version-from-registry collector-builder noPrefix %}}`|
107
-
| output_path: | The path to write the output (sources and binary). | Yes |`/var/folders/86/s7l1czb16g124tng0d7wyrtw0000gn/T/otelcol-distribution3618633831`|
108
-
| version: | The version for your custom OpenTelemetry Collector. | Yes |`1.0.0`|
109
-
| go: | Which Go binary to use to compile the generated sources. | Yes | go from the PATH |
| module: | The module name for the new distribution, following Go mod conventions. Optional, but recommended. | Yes |`go.opentelemetry.io/collector/cmd/builder`|
104
+
| name: | The binary name for your distribution | Yes |`otelcol-custom`|
105
+
| description: | A long name for the application. | Yes |`Custom OpenTelemetry Collector distribution`|
106
+
| output_path: | The path to write the output (sources and binary). | Yes |`/var/folders/86/s7l1czb16g124tng0d7wyrtw0000gn/T/otelcol-distribution3618633831`|
107
+
| version: | The version for your custom OpenTelemetry Collector. | Yes |`1.0.0`|
108
+
| go: | Which Go binary to use to compile the generated sources. | Yes | go from the PATH |
110
109
111
110
As you can see on the table above, all the `dist` tags are optional, so you will
112
111
be adding custom values for them depending if your intentions to make your
@@ -125,7 +124,6 @@ dist:
125
124
name: otelcol-dev
126
125
description: Basic OTel Collector distribution for Developers
127
126
output_path: ./otelcol-dev
128
-
otelcol_version: 0.114.0
129
127
```
130
128
131
129
Now you need to add the modules representing the components you want to be
@@ -149,7 +147,6 @@ dist:
149
147
name: otelcol-dev
150
148
description: Basic OTel Collector distribution for Developers
0 commit comments