diff options
author | Alex <alex@adnab.me> | 2024-03-20 13:54:18 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-03-20 13:54:18 +0000 |
commit | 30abf7e086359c914b1e083d3eec0f4e5fa37351 (patch) | |
tree | fed2a61dd3e89bbbd3a80cd9b97d14b66eba1efd /src/garage/Cargo.toml | |
parent | 26310f3242319c9ad093f5121cff0fe0c0108542 (diff) | |
parent | 84018be8622b582ad8853df042d10f0e122e6316 (diff) | |
download | garage-30abf7e086359c914b1e083d3eec0f4e5fa37351.tar.gz garage-30abf7e086359c914b1e083d3eec0f4e5fa37351.zip |
Merge pull request 'Add support to logging to syslog (based on patch by @jirutka)' (#784) from syslog into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/784
Diffstat (limited to 'src/garage/Cargo.toml')
-rw-r--r-- | src/garage/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/garage/Cargo.toml b/src/garage/Cargo.toml index b022049c..52861853 100644 --- a/src/garage/Cargo.toml +++ b/src/garage/Cargo.toml @@ -58,6 +58,7 @@ opentelemetry.workspace = true opentelemetry-prometheus = { workspace = true, optional = true } opentelemetry-otlp = { workspace = true, optional = true } prometheus = { workspace = true, optional = true } +syslog-tracing = { workspace = true, optional = true } [dev-dependencies] aws-config.workspace = true @@ -97,6 +98,8 @@ kubernetes-discovery = [ "garage_rpc/kubernetes-discovery" ] metrics = [ "garage_api/metrics", "opentelemetry-prometheus", "prometheus" ] # Exporter for the OpenTelemetry Collector. telemetry-otlp = [ "opentelemetry-otlp" ] +# Logging to syslog +syslog = [ "syslog-tracing" ] # NOTE: bundled-libs and system-libs should be treat as mutually exclusive; # exactly one of them should be enabled. |