#
# The rabbitmq server to which messages are published
#
rabbitmq-address:   amqp://guest:guest@localhost/

#
# The output queue to which the processed messages are published. The value can
# be the name of a queue, or an "exchange:routingkey" string.
#
rabbitmq-output:    outbox:outbox

#
# Whether the published messages should be gzip-compressed
#
rabbitmq-compress:  true

#
# The path to the directory from where messages will be picked up.
#
directory:          /usr/share/amqppickup/pickup

#
# Whether the file should be removed from the directory after processing.
#
remove:             true

#
# This option specifies the number of files that will be processed
# simultaneously.
#
open-files:         10

#
# This option is used to control the interval (in milliseconds) between scanning
# the pickup directory (if this is set to 0, no periodic scans are started, and
# file changes are only picked up via inotify (an event stream for file changes,
# which doesnt work on nfs)). You must set this to something when the pickup
# directory is on a filesystem that does not support inotify.
#
scan-interval:      200

#
# The application comes with a small webserver to expose metrics in Prometheus
# format. Use IP address 0.0.0.0 to listen to all IP addresses.
#
www-ip:             0.0.0.0
www-port:           8080
