From 8cb8a8cf93e57b249e84501c35fe06dbed1b727e Mon Sep 17 00:00:00 2001 From: Toby Lawrence Date: Tue, 11 Jun 2019 18:06:42 -0400 Subject: [PATCH] metrics-facade: update COPYRIGHT and README --- COPYRIGHT | 28 ++++++++++++++++++++++++++++ metrics-facade/README.md | 22 ++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 metrics-facade/README.md diff --git a/COPYRIGHT b/COPYRIGHT index c1b9ce9..a938388 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -45,3 +45,31 @@ their own copyright notices and license terms: CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +* metrics-facade is a fork of rust-lang-nursery/log which carries the + following license: + + Copyright (c) 2014 The Rust Project Developers + + Permission is hereby granted, free of charge, to any + person obtaining a copy of this software and associated + documentation files (the "Software"), to deal in the + Software without restriction, including without + limitation the rights to use, copy, modify, merge, + publish, distribute, sublicense, and/or sell copies of + the Software, and to permit persons to whom the Software + is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice + shall be included in all copies or substantial portions + of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF + ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED + TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT + SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR + IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. diff --git a/metrics-facade/README.md b/metrics-facade/README.md new file mode 100644 index 0000000..455444f --- /dev/null +++ b/metrics-facade/README.md @@ -0,0 +1,22 @@ +# metrics-facade + +[![conduct-badge][]][conduct] [![downloads-badge][] ![release-badge][]][crate] [![docs-badge][]][docs] [![license-badge][]](#license) + +[conduct-badge]: https://img.shields.io/badge/%E2%9D%A4-code%20of%20conduct-blue.svg +[downloads-badge]: https://img.shields.io/crates/d/metrics-facade.svg +[release-badge]: https://img.shields.io/crates/v/metrics-facade.svg +[license-badge]: https://img.shields.io/crates/l/metrics-facade.svg +[docs-badge]: https://docs.rs/metrics-facade/badge.svg +[conduct]: https://github.com/metrics-rs/metrics/blob/master/CODE_OF_CONDUCT.md +[crate]: https://crates.io/crates/metrics-facade +[docs]: https://docs.rs/metrics-facade + +__metrics-facade__ is a lightweight metrics facade. + +## code of conduct + +**NOTE**: All conversations and contributions to this project shall adhere to the [Code of Conduct][conduct]. + +# what's it all about? + +__metrics-facade__ provides macros, similar to the [`log`](https://docs.rs/log) crate, that let library and executable authors instrument their code by collecting metrics -- incrementing counters, gauges, and histograms -- about their code, deferring the collecting and export of these metrics to whatever the installed metrics library is.