Popularity
9.3
Stable
Activity
5.9
-
83
6
51

Monthly Downloads: 58
Programming language: Haskell
License: Apache License 2.0
Tags: Network     Prometheus    
Latest version: v1.0.1

prometheus-client alternatives and similar packages

Based on the "Network" category.
Alternatively, view prometheus-client alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of prometheus-client or a related project?

Add another 'Network' Package

README

prometheus-haskell Build Status

This repository contains a collection of libraries that can be used to instrument a Haskell application with metrics that can be consumed by the Prometheus monitoring system and time series database.

API documentation can be found on each libraries respective hackage page: prometheus-client, prometheus-metrics-ghc, wai-middleware-prometheus.

The purposes of the libraries are outline below, and an example application can be found under the example folder in the root directory of the git repository.

prometheus-client Hackage

This is the base library that defines the core data types and metrics. It has a few dependencies and is intended to provide the minimum functionality required to interact with Prometheus.

prometheus-metrics-ghc Hackage

This library provides custom metrics that an application can register that expose information from GHC's runtime system. It is provided as a separate package to keep the GHC specific dependencies out of the prometheus-client library.

wai-middleware-prometheus Hackage

This library provides WAI middleware that allows for easy integration of the Prometheus client library into existing WAI apps. The middleware will by default automatically instrument a WAI app with common HTTP metrics and respond to GET requests on the /metrics endpoint.