From 09f51b3f50de3d3aa28d42442c0dca625efa7d00 Mon Sep 17 00:00:00 2001 From: "Brian L. Troutwine" Date: Mon, 3 Oct 2016 18:10:41 -0700 Subject: [PATCH] Update to 0.4.0 This release incorporates work to move away from std's in-memory channel, freeing up cernan to emit toward slow sinks--firehose--and ingest more data for analysis that will fit into memory. Performance remains on par with the previous cernan series and has been improved in regards to statsd/graphite parse speed. cernan is now well arranged to allow in-flight analysis and manipulation of data, as well as forward off-system to itself for aggregation should the present system be particularly small but heavily telemetered. Signed-off-by: Brian L. Troutwine --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 52643693..978b5171 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [root] name = "cernan" -version = "0.3.4" +version = "0.4.0" dependencies = [ "bincode 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.2.25 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 11c72082..64030cb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cernan" -version = "0.3.4" +version = "0.4.0" authors = ["Brian L. Troutwine "] build = "build.rs"