Skip to content

Releases: fimad/prometheus-haskell

prometheus-metrics-ghc-1.0.1.1

27 Jul 01:58
Compare
Choose a tag to compare
  • Optimizations to measure GHC metrics with less polling.

prometheus-client-1.0.1

27 Jul 01:57
Compare
Choose a tag to compare
  • Expose the Bucket type.

prometheus-client-1.0.0.1

28 May 05:27
Compare
Choose a tag to compare
  • Optimizations to improve memory usage.

prometheus-proc 0.1.2.0

18 Sep 08:22
2e3282e
Compare
Choose a tag to compare
  • Support base-4.13 and GHC 8.8.

prometheus-client 1.0.0

10 Aug 19:38
Compare
Choose a tag to compare

Version 1.0.0 is a significant rewrite of some core parts of the API, as prometheus-effect has been deprecated in favour of this library.

Breaking Changes

New Metric API

The most substatial change regards the Metric interface. Unregistered counters are now wrapped in the Metric type (as before), but when registered, the Metric wrapper is removed. This change means that registered metrics are more lightweight (they are often just a newtype wrapper), but also helps users
distinguish between registered and unregistered metrics.

To adapt to this change, users should:

  • Store and pass registered metrics. Rather than passing Metric Counter, prefer registering to obtain a Counter and pass that around.

  • Top level registrations will no longer return Metric. If you have

    httpRequests :: Metric Counter
    httpRequests = unsafeRegisterIO $ counter (Info ...)

    This should change to

    httpRequests :: Counter
    httpRequests = unsafeRegister $ counter (Info ...)

Other Breaking Changes

  • Prometheus.exportMetricsAsText now returns a lazy ByteString rather than a strict ByteString. This provides better streaming performance, and the underlying ByteString is built using a Builder for improved performance. You can convert the lazy ByteString into a strict one using Data.ByteString.Lazy.toStrict, but you should consider taking advantage of the lazy interface if possible.

  • Prometheus.Info now uses Text instead of String. It is recommended that you use the OverloadedStrings extension.

  • The label interface has been changed to only support tuples of Text. The tuple instances prevent any other tuple instances from being defined. This interface is in flux and may change again in the future. For now, OverloadedStrings will give you compatibility with the old interface.

Backwards Compatible Changes

  • Many functions that were specialised to IO have been generalised to work in MonadIO.

Additions

  • Prometheus.countExceptions to count the amount of exceptions a given monadic action throws.

0.2.0

02 Jul 22:13
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

prometheus-client

  • Add the histogram metric type (#15).
  • A monitoric clock is used for duratoin measurments instead of UTCTime (#9, #16).

wai-middleware-prometheus

  • Time measurments are now exported as seconds instead of microseconds (#17).
  • Histograms are used instead of summaries for time measurments. This allows for
    aggregration across multiple processes (#18).

0.1.1

30 Apr 22:23
Compare
Choose a tag to compare
0.1.1 Pre-release
Pre-release

prometheus-client

  • Counters are now represented as floating point numbers instead of integers.
  • New counter methods addDurationToCounter and addCounter.

prometheus-metrics-ghc

  • Metrics that are always incrementing are now counters instead of gauges.
  • Metric names have changed to be more inline with prometheus guidelines.

0.1.0.1

28 Jun 19:09
Compare
Choose a tag to compare
0.1.0.1 Pre-release
Pre-release
  • Add support for GHC 7.10
  • Drop support for GHC 7.6

0.1.0

28 Jun 01:50
Compare
Choose a tag to compare
0.1.0 Pre-release
Pre-release

Initial release of prometheus-client