Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ type OpenTelemetry struct {
*plugins.TLS `json:"tls,omitempty"`
// Include fluentbit networking options for this output-plugin
*plugins.Networking `json:"networking,omitempty"`
// Limit the maximum number of Chunks in the filesystem for the current output logical destination.
TotalLimitSize string `json:"totalLimitSize,omitempty"`
}

// Name implement Section() method
Expand Down Expand Up @@ -98,5 +100,7 @@ func (o *OpenTelemetry) Params(sl plugins.SecretLoader) (*params.KVs, error) {
kvs.Merge(net)
}

plugins.InsertKVString(kvs, "storage.total_limit_size", o.TotalLimitSize)

return kvs, nil
}
Original file line number Diff line number Diff line change
Expand Up @@ -3086,6 +3086,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3086,6 +3086,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
4 changes: 4 additions & 0 deletions config/crd/bases/fluentbit.fluent.io_clusteroutputs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3083,6 +3083,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
4 changes: 4 additions & 0 deletions config/crd/bases/fluentbit.fluent.io_outputs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3083,6 +3083,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
8 changes: 8 additions & 0 deletions manifests/setup/fluent-operator-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7209,6 +7209,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down Expand Up @@ -36922,6 +36926,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
8 changes: 8 additions & 0 deletions manifests/setup/setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7209,6 +7209,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down Expand Up @@ -36922,6 +36926,10 @@ spec:
description: Hostname to be used for TLS SNI extension
type: string
type: object
totalLimitSize:
description: Limit the maximum number of Chunks in the filesystem
for the current output logical destination.
type: string
tracesUri:
description: 'Specify an optional HTTP URI for the target web
server listening for traces, e.g: /v1/traces'
Expand Down
Loading