You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/configuration/output.md
+39-2Lines changed: 39 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,13 +33,11 @@ spec:
33
33
secretKeyRef:
34
34
name: s3-secret
35
35
key: awsAccessKeyId
36
-
namespace: default
37
36
aws_sec_key:
38
37
valueFrom:
39
38
secretKeyRef:
40
39
name: s3-secret
41
40
key: awsSecretAccessKey
42
-
namespace: default
43
41
s3_bucket: example-logging-bucket
44
42
s3_region: eu-west-1
45
43
path: logs/${tag}/%Y/%m/%d/
@@ -97,3 +95,42 @@ spec:
97
95
- For the details of the supported output plugins, see {{% xref "/docs/configuration/plugins/syslog-ng-outputs/_index.md" %}}.
98
96
- For the details of `SyslogNGOutput` custom resource, see {{% xref "/docs/configuration/crds/v1beta1/syslogng_output_types.md" %}}.
99
97
- For the details of `SyslogNGClusterOutput` custom resource, see {{% xref "/docs/configuration/crds/v1beta1/syslogng_clusteroutput_types.md" %}}.
98
+
99
+
## protected flag cluster outputs
100
+
101
+
Since versions:
102
+
103
+
- 4.7 for Fluentd
104
+
- 5.0 for Syslog-ng
105
+
106
+
You can set the `protected` flag on a `ClusterOutput` and `SyslogNGClusterOutput`. This prevents namespaced `Flows` and `SyslogNGFlows` from sending logs to these outputs and only allows `ClusterFlows` and `SyslogNGClusterFlows` to reference it.
107
+
108
+
By default, `ClusterOutputs` can be referenced by any `Flow`. Setting the `protected` flag restricts this access to `ClusterFlows` only.
0 commit comments