forked from Albibek/bioyino-metric
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to new version of bytes and capnp
- Loading branch information
Sergey Noskov
committed
Jan 16, 2020
1 parent
18fb159
commit ba1b0c9
Showing
6 changed files
with
58 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bioyino-metric" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Sergey Noskov aka Albibek <[email protected]>"] | ||
description = "Library for handling metrics in bioyino and related projects" | ||
edition = "2018" | ||
|
@@ -10,15 +10,13 @@ keywords = ["statsd", "metrics", "graphite"] | |
categories = ["parser-implementations", "network-programming"] | ||
|
||
[dependencies] | ||
serde="^1.0" | ||
serde_derive="^1.0" | ||
failure="^0.1" | ||
failure_derive="^0.1" | ||
capnp = "^0.10" | ||
serde= { version = "^1.0", features = ["derive"] } | ||
thiserror="^1.0" | ||
capnp = "^0.11" | ||
combine="^3.6" | ||
bytes = { version = "^0.4", features = [ "serde" ] } | ||
bytes = { version = "^0.5", features = [ "serde" ] } | ||
num-traits="^0.2" | ||
lazysort="^0.2" | ||
|
||
[build-dependencies] | ||
capnpc = "^0.10" | ||
capnpc = "^0.11" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# bioyino-metrics | ||
Capnp schema and functions for metrics used in bioyino and related projects | ||
This library contains useful types and methods for working with metrics in bioyino statsd server and some other | ||
metric processing software. Features: | ||
|
||
* a type for representing typed and timestamped metrics, generic over floating point format | ||
* streaming parser of statsd format | ||
* metric aggregation routines | ||
* working with Graphite-compatible metric naming including basic tags support | ||
* schema and functions for sending/receiving metrics in binary Cap'n'Proto format | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters