Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix example config for Pulsar exporter, units are nanoseconds #2185

Merged
Merged
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
6 changes: 4 additions & 2 deletions internal/exporter/pulsarexporter/testdata/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ exporters:
compression_level: default
batch_builder_type: 1
disable_batching: false
batching_max_publish_delay: 10
# unit is nanoseconds (10^-9), set to 10 milliseconds in nanoseconds
batching_max_publish_delay: 10000000
batching_max_messages: 1000
batching_max_size: 128000
partitions_auto_discovery_interval: 1
# unit is nanoseconds (10^-9), set to 1 minute in nanoseconds
partitions_auto_discovery_interval: 60000000000

service:
pipelines:
Expand Down