-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Albibek/metric-tags
Metric tags
- Loading branch information
Showing
8 changed files
with
1,534 additions
and
305 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 0.2.0 | ||
|
||
* aggregation API has changed, supporting custom percentiles, specifying a list of aggregates, etc | ||
* metric name is now a separate structure allowing to process tag information | ||
* metrics can now have tags in (yet only one) graphite format | ||
* tags are placed in sorted order during aggregation and parsing so they are always correct to be used without creating separate structure for them | ||
* aggregation modes are not supported to put aggregate names in tags or name postfixes | ||
* name prefixing is available per aggregate |
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,12 +1,12 @@ | ||
[package] | ||
name = "bioyino-metric" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Sergey Noskov aka Albibek <[email protected]>"] | ||
description = "Library for handling metrics in bioyino and related projects" | ||
edition = "2018" | ||
license = "MIT" | ||
repository = "https://github.com/Albibek/bioyino-metric" | ||
keywords = ["statsd", "bioyino", "metric", "metrics"] | ||
keywords = ["statsd", "bioyino", "metric", "metrics", "graphite", "tags"] | ||
categories = ["parser-implementations", "network-programming"] | ||
|
||
[dependencies] | ||
|
@@ -18,7 +18,7 @@ capnp = "^0.10" | |
combine="^3.6" | ||
bytes = { version = "^0.4", features = [ "serde" ] } | ||
num-traits="^0.2" | ||
lazysort="^0.2" | ||
|
||
[build-dependencies] | ||
capnpc = "^0.10" | ||
|
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
max_width=160 | ||
ideal_width=80 |
Oops, something went wrong.