Skip to content

Commit

Permalink
adjust default batch size for feature-application-observability (#1205)
Browse files Browse the repository at this point in the history
* update default batch size in feature-application-observability

Signed-off-by: Robbie Lankford <[email protected]>

* update tests and generated files

---------

Signed-off-by: Robbie Lankford <[email protected]>
  • Loading branch information
rlankfo authored Feb 7, 2025
1 parent 82e2880 commit 5fe291a
Show file tree
Hide file tree
Showing 24 changed files with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ Be sure perform actual integration testing in a live environment in the main [k8

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| processors.batch.maxSize | int | `0` | The upper limit of the amount of data contained in a single batch, in bytes. When set to 0, batches can be any size. |
| processors.batch.size | int | `16384` | What batch size to use, in bytes |
| processors.batch.maxSize | int | `0` | The upper limit of the amount of data contained in a single batch. When set to 0, batches can be any size. |
| processors.batch.size | int | `8192` | What batch size to use |
| processors.batch.timeout | string | `"2s"` | How long before sending (Processors) |

### Processors: Interval
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ tests:
// Batch Processor
otelcol.processor.batch "default" {
send_batch_size = 16384
send_batch_size = 8192
send_batch_max_size = 0
timeout = "2s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ tests:
// Batch Processor
otelcol.processor.batch "default" {
send_batch_size = 16384
send_batch_size = 8192
send_batch_max_size = 0
timeout = "2s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ tests:
// Batch Processor
otelcol.processor.batch "default" {
send_batch_size = 16384
send_batch_size = 8192
send_batch_max_size = 0
timeout = "2s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ tests:
// Batch Processor
otelcol.processor.batch "default" {
send_batch_size = 16384
send_batch_size = 8192
send_batch_max_size = 0
timeout = "2s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ tests:
// Batch Processor
otelcol.processor.batch "default" {
send_batch_size = 16384
send_batch_size = 8192
send_batch_max_size = 0
timeout = "2s"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ receivers:
# Processors are components that modify the telemetry data, such as filtering, batching, and adding metadata.
processors:
batch:
# -- What batch size to use, in bytes
# -- What batch size to use
# @section -- Processors: Batch
size: 16384
# -- The upper limit of the amount of data contained in a single batch, in bytes. When set to 0, batches can be any size.
size: 8192
# -- The upper limit of the amount of data contained in a single batch. When set to 0, batches can be any size.
# @section -- Processors: Batch
maxSize: 0
# -- How long before sending (Processors)
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion charts/k8s-monitoring/docs/examples/proxies/output.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5fe291a

Please sign in to comment.