From d9549383ceea84586f12b8de8be7b20455240592 Mon Sep 17 00:00:00 2001 From: Prithviraj Patil <116709298+prithvipatil97@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:42:06 +0530 Subject: [PATCH] [OBSDOCS-2667] Update cluster-logging-collector-limits.adoc Wrong command in logging 6 documentation Here is the documentation link: https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/configuring_logging/cluster-logging-collector#cluster-logging-collector-limits_cluster-logging-collector Current Look: Edit the ClusterLogForwarder CR in the openshift-logging project: $ oc -n openshift-logging edit ClusterLogging instance This is a command referencing the `ClusterLogging` instance But here we are editing the ClusterLogForwarder CR in the openshift-logging project. Hence, it needs to be changed with ClusterLogForwarder or obsclf. Updated Look: Edit the ClusterLogForwarder CR in the openshift-logging project: $ oc -n openshift-logging edit clusterlogforwarder.observability.openshift.io This is the correct format. --- modules/cluster-logging-collector-limits.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cluster-logging-collector-limits.adoc b/modules/cluster-logging-collector-limits.adoc index ac8936df62ea..4f685e10576e 100644 --- a/modules/cluster-logging-collector-limits.adoc +++ b/modules/cluster-logging-collector-limits.adoc @@ -14,7 +14,7 @@ You can adjust both the CPU and memory limits for the log collector by editing t + [source,terminal] ---- -$ oc -n openshift-logging edit ClusterLogging instance +$ oc -n openshift-logging edit clusterlogforwarder.observability.openshift.io ---- + [source,yaml]