Skip to content

Commit

Permalink
Be explicit when we want an empty object in pipelineConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
janhoy committed Dec 4, 2024
1 parent 8d802b8 commit 475b675
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/data-prepper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ pipelineConfig:
workers: 2 # the number of workers
delay: 5000 # in milliseconds, how long workers wait between read attempts
source:
random:
random: {}
buffer:
bounded_blocking:
buffer_size: 1024 # max number of records the buffer accepts
Expand All @@ -118,7 +118,7 @@ pipelineConfig:
- string_converter:
upper_case: true
sink:
- stdout:
- stdout: {}

## More Complex example
# otel-logs-pipeline:
Expand All @@ -128,7 +128,7 @@ pipelineConfig:
# otel_logs_source:
# ssl: false
# buffer:
# bounded_blocking:
# bounded_blocking: {}
# sink:
# - opensearch:
# hosts: ["https://opensearch-cluster-master:9200"]
Expand Down Expand Up @@ -178,7 +178,7 @@ pipelineConfig:
# buffer_size: 25600 # max number of records the buffer accepts
# batch_size: 400 # max number of records the buffer drains after each read
# processor:
# - otel_traces:
# - otel_traces: {}
# - otel_trace_group:
# hosts: [ "https://opensearch-cluster-master:9200" ]
# insecure: true
Expand Down

0 comments on commit 475b675

Please sign in to comment.