Skip to content
Open
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
16 changes: 8 additions & 8 deletions modules/microshift-otel-config-large.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ processors:
system:
hostname_sources: [ "os" ]
exporters:
otlp:
otlp_grpc:
sending_queue:
storage: file_storage
endpoint: ${env:OTEL_BACKEND}:4317
Expand All @@ -94,33 +94,33 @@ service:
metrics/kubeletstats:
receivers: [ kubeletstats ]
processors: [ batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
metrics/hostmetrics:
receivers: [ hostmetrics ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/kube_events:
receivers: [ k8s_events ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/host:
receivers: [ hostmetrics ]
processors: [ resourcedetection/system ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/journald:
receivers: [ journald ]
processors: [ resourcedetection/system ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
metrics/pods:
receivers: [ prometheus ]
processors: [ batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
telemetry:
metrics:
readers:
- periodic:
exporter:
otlp:
otlp_http:
protocol: http/protobuf
endpoint: http://${env:OTEL_BACKEND}:4318
----
Expand Down
10 changes: 5 additions & 5 deletions modules/microshift-otel-config-medium.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ processors:
system:
hostname_sources: [ "os" ]
exporters:
otlp:
otlp_grpc:
sending_queue:
storage: file_storage
endpoint: ${env:OTEL_BACKEND}:4317
Expand All @@ -55,21 +55,21 @@ service:
metrics/kubeletstats:
receivers: [ kubeletstats ]
processors: [ batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/kube_events:
receivers: [ k8s_events ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/journald:
receivers: [ journald ]
processors: [ resourcedetection/system ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
telemetry:
metrics:
readers:
- periodic:
exporter:
otlp:
otlp_http:
protocol: http/protobuf
endpoint: http://${env:OTEL_BACKEND}:4318
----
Expand Down
8 changes: 4 additions & 4 deletions modules/microshift-otel-config-small.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ processors:
system:
hostname_sources: [ "os" ]
exporters:
otlp:
otlp_grpc:
sending_queue:
storage: file_storage
endpoint: ${env:OTEL_BACKEND}:4317
Expand All @@ -51,17 +51,17 @@ service:
metrics/kubeletstats:
receivers: [ kubeletstats ]
processors: [ batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
logs/kube_events:
receivers: [ k8s_events ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
exporters: [ otlp_grpc ]
telemetry:
metrics:
readers:
- periodic:
exporter:
otlp:
otlp_http:
protocol: http/protobuf
endpoint: http://${env:OTEL_BACKEND}:4318
----
Expand Down
4 changes: 2 additions & 2 deletions modules/microshift-otel-config.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If an endpoint is not specified, {microshift-short} Observability does not start
----
# ...
exporters:
otlp:
otlp_grpc:
sending_queue:
storage: file_storage
endpoint: ${env:OTEL_BACKEND}:4317
Expand All @@ -37,7 +37,7 @@ service:
readers:
- periodic:
exporter:
otlp:
otlp_http:
protocol: http/protobuf
endpoint: http://${env:OTEL_BACKEND}:4318
# ...
Expand Down
4 changes: 2 additions & 2 deletions modules/ossm-configuring-distr-tracing-tempo.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ spec:
grpc:
endpoint: 0.0.0.0:4317
exporters:
otlp:
otlp_grpc:
endpoint: "tempo-sample-distributor.tracing-system.svc.cluster.local:4317" # <2>
tls:
insecure: true
Expand All @@ -51,7 +51,7 @@ spec:
traces:
receivers: [otlp]
processors: []
exporters: [otlp]
exporters: [otlp_grpc]
----
<1> Include the namespace in the `ServiceMeshMemberRoll` member list.
<2> In this example, a TempoStack instance is running in the `tracing-system` namespace. You do not have to include the TempoStack namespace, such as`tracing-system`, in the `ServiceMeshMemberRoll` member list.
Expand Down