gnort 0.2.0

Datadog statsd client library that provides efficient in-process metrics aggregation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
## build release
build-release:
	cargo build --release --example aggregation

## run aggregation example
run-aggregation:
	cargo run --release --example aggregation

## run raw client example
run-raw-client:
	cargo run --release --example raw_client

## single-threaded test execution to minimize perf noise
test:
	RUST_BACKTRACE=1 cargo test --release -- --nocapture --test-threads 1