1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00
Files
openshift-docs/modules/microshift-otel-config-large.adoc
2025-10-15 13:10:07 +00:00

135 lines
4.5 KiB
Plaintext

// Module included in the following assemblies:
//
// microshift_running_apps/microshift-observability-service.adoc
:_mod-docs-content-type: PROCEDURE
[id="microshift-otel-config-large_{context}"]
= Selecting a large configuration
[role="_abstract"]
You can configure {microshift-short} Observability to collect the maximum amount of performance and resource information, from the maximum number of sources, by updating the YAML file.
.Procedure
. Select a large configuration by adding the following information to the `/etc/microshift/observability/opentelemetry-collector.yaml` file. `Large` is the default configuration.
+
[source,yaml]
----
receivers:
kubeletstats:
auth_type: tls
ca_file: /var/lib/microshift/certs/ca-bundle/client-ca.crt
key_file: /var/lib/microshift/certs/admin-kubeconfig-signer/openshift-observability-client/client.key
cert_file: /var/lib/microshift/certs/admin-kubeconfig-signer/openshift-observability-client/client.crt
insecure_skip_verify: true
collection_interval: 10s
endpoint: "${env:K8S_NODE_NAME}:10250"
node: ${env:K8S_NODE_NAME}
k8s_api_config:
auth_type: kubeConfig
k8s_events:
auth_type: kubeConfig
hostmetrics:
root_path: /
collection_interval: 10s
scrapers:
cpu:
memory:
network:
disk:
filesystem:
journald:
units:
- microshift
- microshift-observability
- microshift-etcd
- crio
- openvswitch.service
- ovsdb-server.service
- ovs-vswitchd.service
priority: info
prometheus:
config:
scrape_configs:
- job_name: k8s
scrape_interval: 10s
kubernetes_sd_configs:
- kubeconfig_file: /var/lib/microshift/resources/observability-client/kubeconfig
role: pod
relabel_configs:
# Only scrape Pods with annotation "prometheus.io/scrape": "true"
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_scrape]
action: keep
regex: true
# Use value of "prometheus.io/path" annotation for scraping
- source_labels: [__meta_kubernetes_pod_annotation_prometheus_io_path]
action: replace
target_label: __metrics_path__
regex: (.+)
# Use value of "prometheus.io/port" annotation for scraping
- source_labels: [__address__, __meta_kubernetes_pod_annotation_prometheus_io_port]
action: replace
regex: ([^:]+)(?::\d+)?;(\d+)
replacement: $1:$2
target_label: __address__
processors:
batch:
resourcedetection/system:
detectors: [ "system" ]
system:
hostname_sources: [ "os" ]
exporters:
otlp:
sending_queue:
storage: file_storage
endpoint: ${env:OTEL_BACKEND}:4317 <1>
tls:
insecure: true
extensions:
file_storage:
directory: /var/lib/microshift-observability
service:
extensions: [ file_storage ]
pipelines:
metrics/kubeletstats:
receivers: [ kubeletstats ]
processors: [ batch ]
exporters: [ otlp ]
metrics/hostmetrics:
receivers: [ hostmetrics ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
logs/kube_events:
receivers: [ k8s_events ]
processors: [ resourcedetection/system, batch ]
exporters: [ otlp ]
logs/host:
receivers: [ hostmetrics ]
processors: [ resourcedetection/system ]
exporters: [ otlp ]
logs/journald:
receivers: [ journald ]
processors: [ resourcedetection/system ]
exporters: [ otlp ]
metrics/pods:
receivers: [ prometheus ]
processors: [ batch ]
exporters: [ otlp ]
telemetry:
metrics:
readers:
- periodic:
exporter:
otlp:
protocol: http/protobuf
endpoint: http://${env:OTEL_BACKEND}:4318 <2>
----
<1> Replace the variable `${env:OTEL_BACKEND}` with the IP address or hostname of the remote back end. This IP address resolves to the local node's hostname. Any unreachable endpoint is reported in the `microshift-observability` service logs.
<2> Replace the variable `${env:OTEL_BACKEND}` with the IP address or hostname of the remote back end. This IP address resolves to the local node's hostname. Any unreachable endpoint is reported in the `microshift-observability` service logs.
. Restart {microshift-short} Observability to complete the configuration selection by entering the following command:
+
[source,terminal]
----
$ sudo systemctl restart microshift-observability
----