This commit comes with both the consumer as well as an example configuration file Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
99 lines
2.7 KiB
TOML
99 lines
2.7 KiB
TOML
# A basic configuration for Fedora's message broker, using the example callback
|
|
# which simply prints messages to standard output.
|
|
#
|
|
# This file is in the TOML format.
|
|
amqp_url = "amqps://fedora:@rabbitmq.fedoraproject.org/%2Fpublic_pubsub"
|
|
callback = "mirror_from_pagure_bus:MirrorFromPagure"
|
|
|
|
[tls]
|
|
ca_cert = "/etc/fedora-messaging/cacert.pem"
|
|
keyfile = "/etc/fedora-messaging/fedora-key.pem"
|
|
certfile = "/etc/fedora-messaging/fedora-cert.pem"
|
|
|
|
[client_properties]
|
|
app = "mirror from pagure"
|
|
# Some suggested extra fields:
|
|
# URL of the project that provides this consumer
|
|
app_url = "https://pagure.io/Fedora-Infra/mirror_from_pagure"
|
|
# Contact emails for the maintainer(s) of the consumer - in case the
|
|
# broker admin needs to contact them, for e.g.
|
|
app_contacts_email = ["pingou@fedoraproject.org"]
|
|
|
|
[exchanges."amq.topic"]
|
|
type = "topic"
|
|
durable = true
|
|
auto_delete = false
|
|
arguments = {}
|
|
|
|
# Queue names *must* be in the normal UUID format: run "uuidgen" and use the
|
|
# output as your queue name. If your queue is not exclusive, anyone can connect
|
|
# and consume from it, causing you to miss messages, so do not share your queue
|
|
# name. Any queues that are not auto-deleted on disconnect are garbage-collected
|
|
# after approximately one hour.
|
|
#
|
|
# If you require a stronger guarantee about delivery, please talk to Fedora's
|
|
# Infrastructure team.
|
|
[queues.00000000-0000-0000-0000-000000000000]
|
|
durable = false
|
|
auto_delete = true
|
|
exclusive = true
|
|
arguments = {}
|
|
|
|
[[bindings]]
|
|
queue = "00000000-0000-0000-0000-000000000000"
|
|
exchange = "amq.topic"
|
|
# Set this to the specific topics you are interested in.
|
|
routing_keys = [
|
|
"org.fedoraproject.prod.infragit.receive",
|
|
"io.pagure.prod.pagure.git.receive",
|
|
]
|
|
|
|
[consumer_config]
|
|
mirror_folder = "mirrors"
|
|
trigger_names = ["Fedora-Infra/ansible"]
|
|
urls = [
|
|
"https://pagure.io/Fedora-Infra/ansible.git",
|
|
]
|
|
|
|
[qos]
|
|
prefetch_size = 0
|
|
prefetch_count = 25
|
|
|
|
[log_config]
|
|
version = 1
|
|
disable_existing_loggers = true
|
|
|
|
[log_config.formatters.simple]
|
|
format = "[%(levelname)s %(name)s] %(message)s"
|
|
|
|
[log_config.handlers.console]
|
|
class = "logging.StreamHandler"
|
|
formatter = "simple"
|
|
stream = "ext://sys.stdout"
|
|
|
|
[log_config.loggers.fedora_messaging]
|
|
level = "INFO"
|
|
propagate = false
|
|
handlers = ["console"]
|
|
|
|
[log_config.loggers.twisted]
|
|
level = "INFO"
|
|
propagate = false
|
|
handlers = ["console"]
|
|
|
|
[log_config.loggers.pika]
|
|
level = "WARNING"
|
|
propagate = false
|
|
handlers = ["console"]
|
|
|
|
# If your consumer sets up a logger, you must add a configuration for it
|
|
# here in order for the messages to show up. e.g. if it set up a logger
|
|
# called 'example_printer', you could do:
|
|
[log_config.loggers.mirror_from_pagure_bus]
|
|
level = "DEBUG"
|
|
propagate = false
|
|
handlers = ["console"]
|
|
|
|
[log_config.root]
|
|
level = "ERROR"
|
|
handlers = ["console"]
|