Skip to content
Closed
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ jobs:
- xpack.ssl.certificate=certs/localhost.crt
- xpack.ssl.key=certs/localhost.key
- image: yandex/clickhouse-server:19
- image: rabbitmq:alpine
steps:
- checkout
- setup_remote_docker:
Expand Down Expand Up @@ -578,7 +579,6 @@ require-tests-checks-and-verifications: &require-tests-checks-and-verifications
- verify-rpm-artifact-on-centos-7
- verify-systemd-on-debian


#
# Workflows
#
Expand Down
205 changes: 205 additions & 0 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ base64 = "0.10.1"
shiplift = { git = "https://github.com/LucioFranco/shiplift", branch = "timber" }
owning_ref = "0.4.0"
listenfd = "0.3.3"
lapin-futures = "0.28.0"

[build-dependencies]
prost-build = "0.4.0"
Expand Down Expand Up @@ -157,7 +158,8 @@ docker = [
"kinesis-integration-tests",
"s3-integration-tests",
"splunk-integration-tests",
"docker-integration-tests"
"docker-integration-tests",
"rabbitmq-integration-tests"
]
cloudwatch-logs-integration-tests = []
cloudwatch-metrics-integration-tests = []
Expand All @@ -168,6 +170,7 @@ kinesis-integration-tests = []
s3-integration-tests = []
splunk-integration-tests = []
docker-integration-tests = []
rabbitmq-integration-tests = []

[[bench]]
name = "bench"
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,7 @@ services:
image: yandex/clickhouse-server:19
ports:
- "8123:8123"
rabbitmq:
image: rabbitmq:alpine
ports:
- "5672:5672"
1 change: 1 addition & 0 deletions src/sinks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pub mod http;
#[cfg(feature = "rdkafka")]
pub mod kafka;
pub mod prometheus;
pub mod rabbitmq;
pub mod splunk_hec;
pub mod statsd;
pub mod tcp;
Expand Down
Loading