Skip to content

Commit

Permalink
Commit from GitHub Actions (WildFly Quickstarts Update 'README.adoc's)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmartins committed Jan 9, 2025
1 parent d5bdf67 commit 0bd1a4e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 15 deletions.
24 changes: 16 additions & 8 deletions micrometer/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ version: "3"
services:
otel-collector:
image: otel/opentelemetry-collector:0.89.0
image: otel/opentelemetry-collector:0.115.1
command: [--config=/etc/otel-collector-config.yaml]
volumes:
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml:Z
Expand Down Expand Up @@ -467,12 +467,16 @@ receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
batch:
exporters:
debug:
verbosity: detailed
prometheus:
endpoint: "0.0.0.0:1234"
Expand All @@ -481,7 +485,7 @@ service:
metrics:
receivers: [otlp]
processors: [batch]
exporters: [prometheus]
exporters: [debug,prometheus]
extensions: [health_check, pprof, zpages]
Expand Down Expand Up @@ -1395,10 +1399,12 @@ data:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
exporters:
logging:
debug:
verbosity: detailed
prometheus:
endpoint: "0.0.0.0:1234"
Expand All @@ -1407,7 +1413,7 @@ data:
metrics:
receivers: [otlp]
processors: []
exporters: [logging,prometheus]
exporters: [debug,prometheus]
---
apiVersion: apps/v1
kind: Deployment
Expand All @@ -1427,7 +1433,7 @@ spec:
- name: otelcol
args:
- --config=/conf/collector.yml
image: otel/opentelemetry-collector:0.89.0
image: otel/opentelemetry-collector:0.115.1
volumeMounts:
- mountPath: /conf
name: collector-config
Expand Down Expand Up @@ -1977,10 +1983,12 @@ data:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
exporters:
logging:
debug:
verbosity: detailed
prometheus:
endpoint: "0.0.0.0:1234"
Expand All @@ -1989,7 +1997,7 @@ data:
metrics:
receivers: [otlp]
processors: []
exporters: [logging,prometheus]
exporters: [debug,prometheus]
---
apiVersion: apps/v1
kind: Deployment
Expand All @@ -2009,7 +2017,7 @@ spec:
- name: otelcol
args:
- --config=/conf/collector.yml
image: otel/opentelemetry-collector:0.89.0
image: otel/opentelemetry-collector:0.115.1
volumeMounts:
- mountPath: /conf
name: collector-config
Expand Down
29 changes: 22 additions & 7 deletions opentelemetry-tracing/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -507,21 +507,32 @@ receivers:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
batch:
exporters:
logging:
debug:
verbosity: detailed
prometheus:
endpoint: "0.0.0.0:1234"
service:
pipelines:
traces:
receivers: [otlp]
processors: []
exporters: [logging]
exporters: [debug]
metrics:
receivers: [ otlp ]
processors: [ batch ]
exporters: [ debug, prometheus ]
logs:
receivers: [ otlp ]
processors: [ batch ]
exporters: [ debug ]
extensions: [health_check, pprof, zpages]
Expand Down Expand Up @@ -1413,17 +1424,19 @@ data:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
exporters:
logging:
debug:
verbosity: detailed
service:
pipelines:
traces:
receivers: [otlp]
processors: []
exporters: [logging]
exporters: [debug]
---
apiVersion: apps/v1
kind: Deployment
Expand Down Expand Up @@ -1973,17 +1986,19 @@ data:
otlp:
protocols:
grpc:
endpoint: "0.0.0.0:4317"
http:
endpoint: "0.0.0.0:4318"
processors:
exporters:
logging:
debug:
verbosity: detailed
service:
pipelines:
traces:
receivers: [otlp]
processors: []
exporters: [logging]
exporters: [debug]
---
apiVersion: apps/v1
kind: Deployment
Expand Down

0 comments on commit 0bd1a4e

Please sign in to comment.