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

Add tutorial for running Beyla in Alloy's Helm #776

Merged
merged 11 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions docs/sources/configure/export-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Download the [example River configuration file](/docs/beyla/latest/configure/res
Alloy needs to expose an **OpenTelemetry receiver** endpoint, such that the auto-instrumentation tool can forward both metrics and traces.
The Alloy configuration file needs to include the following entry:

```hcl
```alloy
otelcol.receiver.otlp "default" {
grpc {}
http {}
Expand All @@ -79,7 +79,7 @@ This enables reception of OpenTelemetry events via GRPC and HTTP, which will be
forwarded to the next stage in the pipeline, the **Batch processor**, which
will then accumulate the messages and forward them to the exporters:

```hcl
```alloy
otelcol.processor.batch "default" {
output {
metrics = [otelcol.exporter.prometheus.default.input]
Expand All @@ -97,7 +97,7 @@ The configuration entry will need to specify an endpoint with basic
authentication. In the provided example, the endpoint and the credentials are
provided via environment variables:

```hcl
```alloy
otelcol.exporter.prometheus "default" {
forward_to = [prometheus.remote_write.mimir.receiver]
}
Expand Down Expand Up @@ -125,7 +125,7 @@ Finally, to **export the traces**, you will need to set up a
[Grafana Tempo](/oss/tempo/) exporter
and an endpoint, also configured via environment variables:

```hcl
```alloy
otelcol.exporter.otlp "tempo" {
client {
endpoint = env("TEMPO_ENDPOINT")
Expand Down
Loading
Loading