From e73e64168f69e1373e4063147aae4b5ea0d24b70 Mon Sep 17 00:00:00 2001 From: Tom Santero Date: Tue, 23 Aug 2016 11:28:03 -0700 Subject: [PATCH] Bump cernan to 0.3.0 This release includes several enhancement which bring cernan's feature parity much closer to both statsd and graphite. Additionaly, the concept of quality of service per metric type has been added, allowing users to set the reporting interval for gauges, counters, histograms, timers, and raw points. Config files are now flat, and can be correctly parsed when running cernan with the `-C` flag. Support for the librato sink was removed, and aggregation was reintroduced to the Wavefront sink since WF simply averages all points reported within sub-second intervals. Signed-off-by: Tom Santero --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aa572024..e3f3205c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cernan" -version = "0.2.9" +version = "0.3.0" dependencies = [ "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.10.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 63c520ca..0928bf2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cernan" -version = "0.2.9" +version = "0.3.0" authors = ["Brian L. Troutwine "] build = "build.rs"