Chapter 1. Logging 6.5 release notes


This release of OpenShift Logging is supported on OpenShift Container Platform 4.19 and later.

1.1. Logging 6.5.1 Release Notes

This release includes RHSA-2026:16354.

1.1.1. Fixed issues

The following issues are fixed in this release of OpenShift Logging.

Vector cannot authenticate to Kafka 4.0.0 with SASL mechanism SCRAM-SHA-512

Previously, Vector could fail to authenticate to Kafka 4.0.0 when using the SCRAM-SHA-512 SASL mechanism, which could lead to connection issues and stalled producers. With this update, the rdkafka library has been upgraded to 0.38.0, resolving these authentication issues and ensuring stable connectivity to Kafka 4.0.0 clusters.

LOG-7506

Duplicate case-variant 'Accept' and 'accept' headers in CLF lead to media_type_header_exception in Elasticsearch output

Previously, duplicate case-variant headers (such as Accept and accept) in the ClusterLogForwarder could cause a media_type_header_exception when sending logs to the Elasticsearch output. With this update, header names are normalized using CanonicalHeaderKey, which prevents duplicate case-variant headers and resolves the exception.

LOG-8581

Eventrouter timestamp logic for updates causes Loki ingestion rejection

Previously, the Eventrouter used metadata.creationTimestamp as the log timestamp for Kubernetes Events, which could be weeks or months old for repeated events, causing Loki to reject the logs with a greater_than_max_sample_age error. With this update, Eventrouter now uses event.lastTimestamp as the primary log timestamp, falling back to firstTimestamp, eventTime, and then creationTimestamp only if necessary, ensuring that events are correctly accepted by Loki.

LOG-8697

S3 Log Forwarding: compression: none ignored; defaults to GZIP

Previously, setting compression: none for S3 log forwarding was ignored, and logs were always compressed using GZIP by default. With this update, specifying compression: none is correctly respected, allowing logs to be forwarded to S3 without compression as intended.

LOG-8769

Unsupported cipher suite error messages on LFME pods

Previously, Log File Metric Exporter (LFME) pods would log "unsupported cipher suite" error messages during startup when encountering certain TLS configurations. This update ensures that all required cipher suites are properly recognized and supported, eliminating these error messages and ensuring consistent TLS behavior.

LOG-8893

Collector memory and cpu usage always growing

Previously, collectors configured to use the detect_exceptions transform would create separate instances of the state machine for each log stream, leading to increased memory consumption. With this update, the behavior has been modified to share a single state machine instance across all log streams, significantly reducing the memory usage of the collector.

LOG-9314

1.1.2. CVEs

The following CVEs are included in this release of OpenShift Logging.

1.2. Logging 6.5.0 release notes

This release includes RHBA-2026:6393.

1.2.1. New features and enhancements

The following section lists the new features and enhancements introduced in this release of OpenShift Logging. It highlights key improvements, added capabilities, and updates that enhance functionality.

Automatic trace context enrichment for OTLP log forwarding

With this release, log entries forwarded to OpenTelemetry Protocol (OTLP) or LokiStack outputs with dataModel: Otel are automatically enriched with trace context attributes, including trace ID, span ID, and trace flags. This enables you to correlate logs with distributed traces in your observability platform, making it easier to troubleshoot issues across services. Trace context is automatically extracted from log messages without requiring any additional configuration.

LOG-5843

Dynamic Pod Disruption Budget for LokiStack ingesters

With this release, the Pod Disruption Budget for LokiStack ingester pods dynamically adjusts based on the configured replication factor and number of ingester replicas, rather than using a hard-coded value determined by the LokiStack size. This helps ensure high availability is maintained when you customize the replication factor beyond the default value for your selected LokiStack size.

LOG-6715

OpenTelemetry log forwarding is now generally available

With this release, OpenShift Logging support for OpenTelemetry (OTel) is promoted to General Availability (GA). You can now forward logs over OTLP outputs by using OTel semantic conventions as specified in the Red Hat Observability Model. This includes configuring log forwarding to a LokiStack deployment using the OTel data model for log storage and retrieving logs by using the log observability UI plugin distributed by the Cluster Observability Operator.

LOG-7623

Important

This release reduces the default set of stream labels for OTLP log forwarding to LokiStack to help improve LokiStack performance. The new default configuration uses only the following labels as stream labels:

  • k8s.namespace.name
  • kubernetes.namespace_name
  • log_source
  • log_type
  • openshift.cluster.uid
  • openshift.log.source
  • openshift.log.type

If you have existing queries that used other labels in label matchers (inside {}), you must rewrite them to use those labels as filters (after |) instead. You can also configure your LokiStack to use the earlier set of stream labels.

LOG-8319

NDJSON support for HTTP output

With this release, you can configure an HTTP output to forward logs as new line delimited JSON (NDJSON) instead of as a JSON array by setting the format field to ndjson. This format reduces memory footprint for some receivers.

# ...
spec:
  outputs:
  - http:
      format: ndjson
      method: POST
      url: http://echo-service.test.svc:8080
    name: http-echo
    type: http
# ...

LOG-7892

Port validation for Kafka and Syslog outputs

With this release, the ClusterLogForwarder API requires port numbers in destination URLs for Kafka and Syslog outputs. URLs without port numbers are rejected at admission time, which provides immediate feedback to administrators. This validation enhances security when evaluating NetworkPolicy configurations for socket-level transports.

LOG-8241

HTTP proxy configuration for Loki output

With this release, you can configure a proxy URL when forwarding logs to a Loki output in the ClusterLogForwarder custom resource by setting the proxyURL field. This follows the same syntax and semantics as the HTTP output proxy configuration.

# ...
spec:
  outputs:
  - loki:
      proxyURL: http://proxy.example.com:8080
      url: https://loki-endpoint.example.com:3100
    name: loki-output
    type: loki
# ...

LOG-8645

Ability to disable the LokiStack Gateway Route

With this release, you can disable the Gateway Route created automatically by the Loki Operator by setting the disableIngress field to true in the LokiStack custom resource. This provides more control over external access to your LokiStack deployment.

# ...
spec:
  tenants:
    disableIngress: true
    mode: openshift-logging
# ...

LOG-7810

Improved leader election resilience for Loki Operator

With this release, the Loki Operator uses recommended leader election parameters to better tolerate API server disruptions. The lease duration, renew deadline, and retry period values are configured according to OpenShift best practices, which helps improve Operator resilience during cluster maintenance or temporary API server unavailability.

LOG-8080

Fine-grained authorization for the openshift-network tenant

With this release, the LokiStack openshift-network tenant correctly enforces fine-grained authorization. The gateway selector extractor is configured to extract selectors from queries, which allows Open Policy Agent (OPA) to enforce fine-grained authorization. As a result, network observability data access is properly restricted based on authorization policies.

LOG-8131

1.2.2. Fixed issues

The following section lists the issues fixed in this release of OpenShift Logging. It describes the resolved problems and the resulting improvements in stability and functionality.

LokiStack components alert fires when pods are in Pending state

Before this update, the LokistackComponentsNotReadyWarning alert did not fire when LokiStack components were in Pending state during initial deployment, such as when provisioned with wrong storage class. As a consequence, administrators were not alerted to configuration issues that prevented components from becoming ready. With this update, the alert rule is triggered when a LokiStack is deployed with components that are not ready, even during first-time deployment. As a result, the alert now properly fires when components fail to reach a ready state.

LOG-7874

NetworkPolicy uses correct port for OpenShift Data Foundation (ODF) NooBaa S3 backend egress

Before this update, the NetworkPolicy generated by the Loki Operator used the Service port instead of the Pod port for the egress port configuration. As a consequence, when a Kubernetes service was configured for the object storage endpoint with OpenShift Data Foundation (ODF), ingestion and flush failures occurred with timeout errors. With this update, the Loki Operator fetches the Service and EndpointSlices and correctly uses the Pod port rather than the Service port in the NetworkPolicy. As a result, the LokiStack can successfully forward logs to the NooBaa S3 backend.

LOG-8075

NetworkPolicy uses correct ports for OpenStack Swift backend egress

Before this update, the NetworkPolicy generated by the Loki Operator exposed only the OpenStack authentication port for egress. As a consequence, when using OpenStack Swift as a storage backend, ingestion and flush failures occurred with timeout errors, and compactor and ingester pods entered a crash loop. With this update, the Loki Operator exposes either the default SSL port 443 for services or, for OpenShift installations, Red Hat’s OpenStack default SSL port 13808. As a result, the LokiStack can successfully forward logs to the OpenStack Swift storage backend.

LOG-8083

NetworkPolicy uses correct ports for cluster-wide proxy egress

Before this update, the NetworkPolicy generated by the Loki Operator exposed the wrong port when NetworkPolicies and cluster-wide proxy were enabled. As a consequence, egress to storage backends timed out with proxy connection errors. With this update, the Loki Operator exposes the proxy port to allow communication between the ingester and object storage through the proxy. As a result, the LokiStack can successfully forward logs through the cluster-wide proxy.

LOG-8084

Deprecated replicationFactor field is handled correctly

Before this update, the handling of the deprecated replicationFactor field was in the wrong part of the code. As a consequence, the field was ignored by the Loki Operator and not applied to replication.factor in the generated Loki configuration. With this update, the handling is moved to the correct location where it is visible by the Operator. As a result, the deprecated replicationFactor field is correctly processed and applied.

LOG-8795

Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat Documentation

Legal Notice

Theme

© 2026 Red Hat
Back to top