Skip to content

Commit

Permalink
Fixing demo instructions (mdelapenya#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrolds authored Jan 2, 2025
1 parent 9f8b9ca commit a92b417
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,15 @@ It will use the Elastic Stack as back-end, sending the traces, spans and metrics
```shell
make demo-start-elastic
go build && chmod +x ./junit2otlp

export OTEL_EXPORTER_OTLP_INSECURE="true"
export OTEL_EXPORTER_OTLP_METRIC_INSECURE="true"
export OTEL_SERVICE_NAME="elastic-srv"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:8200"
export OTEL_EXPORTER_OTLP_SPAN_INSECURE="true"
export OTEL_EXPORTER_OTLP_HEADERS=""
export TARGET_BRANCH=main
export BRANCH=main
cat TEST-sample.xml | ./junit2otlp
cat TEST-sample2.xml | ./junit2otlp
cat TEST-sample3.xml | ./junit2otlp
Expand All @@ -265,6 +274,14 @@ It will use Jaeger as back-end, sending the traces, spans and metrics through th

```shell
make demo-start-jaeger
export OTEL_EXPORTER_OTLP_INSECURE="true"
export OTEL_EXPORTER_OTLP_METRIC_INSECURE="true"
export OTEL_SERVICE_NAME="jaeger-srv"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:14317"
export OTEL_EXPORTER_OTLP_SPAN_INSECURE="true"
export OTEL_EXPORTER_OTLP_HEADERS=""
export TARGET_BRANCH=main
export BRANCH=main
go build && chmod +x ./junit2otlp
cat TEST-sample.xml | ./junit2otlp
cat TEST-sample2.xml | ./junit2otlp
Expand All @@ -278,6 +295,15 @@ It will use Prometheus as back-end, sending the traces, spans and metrics throug
```shell
make demo-start-prometheus
go build && chmod +x ./junit2otlp

export OTEL_EXPORTER_OTLP_INSECURE="true"
export OTEL_EXPORTER_OTLP_METRIC_INSECURE="true"
export OTEL_SERVICE_NAME="prometheus-srv"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:14317"
export OTEL_EXPORTER_OTLP_SPAN_INSECURE="true"
export OTEL_EXPORTER_OTLP_HEADERS=""
export TARGET_BRANCH=main
export BRANCH=main
cat TEST-sample.xml | ./junit2otlp
cat TEST-sample2.xml | ./junit2otlp
cat TEST-sample3.xml | ./junit2otlp
Expand All @@ -290,6 +316,15 @@ It will use Prometheus as back-end, sending the traces, spans and metrics throug
```shell
make demo-start-zipkin
go build && chmod +x ./junit2otlp

export OTEL_EXPORTER_OTLP_INSECURE="true"
export OTEL_EXPORTER_OTLP_METRIC_INSECURE="true"
export OTEL_SERVICE_NAME="zipkin-srv"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:14317"
export OTEL_EXPORTER_OTLP_SPAN_INSECURE="true"
export OTEL_EXPORTER_OTLP_HEADERS=""
export TARGET_BRANCH=main
export BRANCH=main
cat TEST-sample.xml | ./junit2otlp
cat TEST-sample2.xml | ./junit2otlp
cat TEST-sample3.xml | ./junit2otlp
Expand Down
2 changes: 1 addition & 1 deletion demos/zipkin/demo.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
OTEL_EXPORTER_OTLP_HEADERS=""
OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:1437"
OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:14317"
OTEL_EXPORTER_OTLP_INSECURE="true"
OTEL_EXPORTER_OTLP_SPAN_INSECURE="true"
OTEL_EXPORTER_OTLP_METRIC_INSECURE="true"
Expand Down

0 comments on commit a92b417

Please sign in to comment.