#histogram #metrics #statistical-analysis

telemetry

Telemetry is a mechanism used to capture metrics in an application, to later store the data locally or upload it to a server for statistical analysis

4 releases

Uses old Rust 2015

0.1.3 Mar 29, 2021
0.1.2 Mar 29, 2021
0.1.1 Oct 14, 2015
0.1.0 Oct 14, 2015

⚠️ Issues reported

#13 in #statistical-analysis

Download history 2/week @ 2023-12-04 38/week @ 2024-02-26 10/week @ 2024-03-04 11/week @ 2024-03-11

59 downloads per month

MIT/Apache

51KB
972 lines

Telemetry.rs

Build Status

Telemetry is a mechanism used to capture metrics in an application, to later store the data locally or upload it to a server for statistical analysis.

Examples of usage:

  • capturing the speed of an operation;
  • finding out if users are actually using a feature;
  • finding out how the duration of a session;
  • determine the operating system on which the application is executed;
  • determining the configuration of the application;
  • capturing the operations that slow down the application;
  • determining the amount of I/O performed by the application;
  • ...

The main abstraction used by this library is the Histogram. Each Histogram serves to capture a specific measurement. Measurements can then be exported, so that applications can save them to disk or upload them to a server. Several types of Histograms are provided, suited to distinct kinds of measures.

API documentation may be found here.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~270KB