File tree Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Expand file tree Collapse file tree 2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ You can configure your log collector to listen for HTTP connections and receive
2626.Example `ClusterLogForwarder` CR if you are using a multi log forwarder deployment
2727[source,yaml]
2828----
29- apiVersion: logging .openshift.io/v1
29+ apiVersion: observability .openshift.io/v1
3030kind: ClusterLogForwarder
3131metadata:
3232# ...
5656.Example `ClusterLogForwarder` CR if you are using a legacy deployment
5757[source,yaml]
5858----
59- apiVersion: logging .openshift.io/v1
59+ apiVersion: observability .openshift.io/v1
6060kind: ClusterLogForwarder
6161metadata:
6262 name: instance
Original file line number Diff line number Diff line change @@ -20,17 +20,22 @@ The following example shows the `ClusterLogForwarder` CR options that you can mo
2020.Example `ClusterLogForwarder` CR tuning options
2121[source,yaml]
2222----
23- apiVersion: logging .openshift.io/v1
23+ apiVersion: observability .openshift.io/v1
2424kind: ClusterLogForwarder
2525metadata:
2626# ...
2727spec:
28- tuning:
29- delivery: AtLeastOnce # <1>
30- compression: none # <2>
31- maxWrite: <integer> # <3>
32- minRetryDuration: 1s # <4>
33- maxRetryDuration: 1s # <5>
28+ # ...
29+ outputs:
30+ - name: default-lokistack
31+ type: lokiStack
32+ lokiStack:
33+ tuning:
34+ deliveryMode: AtLeastOnce # <1>
35+ compression: none # <2>
36+ maxWrite: <integer> # <3>
37+ minRetryDuration: 1s # <4>
38+ maxRetryDuration: 1s # <5>
3439# ...
3540----
3641<1> Specify the delivery mode for log forwarding.
You can’t perform that action at this time.
0 commit comments