prometheus_client 1.0.0+1 
prometheus_client: ^1.0.0+1 copied to clipboard
Dart implementation of the Prometheus client library providing metrics.
1.0.0+1 #
- Upgrade 
lintspackage to version2.0.0. 
1.0.0 #
- Stable release of prometheus_client 🎉, contains no changes since 
0.6.0. 
0.6.0 #
- Introduce a 
collectCallbackinto every metric type, which allows to update the metric before the sample values are collected. This is useful to perform more complex metric calculation only when the metrics are scraped. - Breaking Change: Make 
Collector.collect()method on metrics async. Related code likeCollectorRegistry.collectMetricFamilySamples(), is now async, too. - Polish documentation towards a 
1.0.0release. 
0.5.1 #
- Migrate from 
pedantictolints 
0.5.0 #
- Migrate to null-safety.
 - Change all metrics constructors to take 
nameandhelpas required named parameters. 
0.4.1 #
counter.inc()should only allow to increment by values greater than zero.
0.4.0+4 #
- Moved to new org tentaclelabs.
 
0.4.0+3 #
- Remove author from pubspec.
 
0.4.0+2 #
- Fix some analyzer issues, no functional changes.
 
0.4.0+1 #
- Align version constraint to 
prometheus_client_shelf. 
0.4.0 #
- Move shelf support into own package 
prometheus_client_shelf. 
0.3.0+1 #
- Increase version constraint range on package 
collectionto^1.14.11to be compatible with flutter. 
0.3.0 #
- Implement 
Summarymetric type. 
0.2.0 #
- Support timestamp for samples.
 
0.1.0 #
- Initial version.
 - Implements 
Counter,GaugeandHistogram. - Includes a shelf handler to export metrics and a shelf middleware to measure performance.