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.
-
connection
DISCONTINUED. simple client connection library in haskell with builtin features: SSL/TLS, SOCKS, session management. -
pcap
Haskell bindings for the pcap library, which provides a low level interface to packet capture systems.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of prometheus-client or a related project?
README
prometheus-haskell 
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 
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 
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 
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.