prometheus.cl

https://github.com/deadtrickster/prometheus.cl.git

git clone 'https://github.com/deadtrickster/prometheus.cl.git'

(ql:quickload :prometheus.cl)
28

Prometheus.io Common Lisp Client Build Status Coverage Status

Example Grafana dashboard for Hunchentoot on SBCL:

Prometheus + Grafan + SBCL + Hunchentoot

You can get this dashboard here.

NOTE: Quantile estimator system used by summary is yet to be included in Quicklisp. Please download manually: https://github.com/deadtrickster/quantile-estimator.cl

Example Quick Start

Currently example uses Linux and SBCL specific collectors.

(ql:quickload :prometheus.example)
(prometheus.example:run)

You can override app/exporter host/port in prometheus.example:run arguments. To stop example app call prometheus.example:stop

Metric Types

Custom collectors

SBCL runtime information

Process information

Linux? only

Performance / Optimization

Counter

On SBCL counter can use CAS. On SBCL int counter can use atomic-incf.

Benchmark (30 threads each doing 100000 counter.inc):

| Method | Avg inc n/s | | ————- |:———–:| | Mutex | 7885 | | CAS (SBCL) | 1902 | | ATOMIC (SBCL) | 141 |

Gauge

On SBCL gauge can use CAS.

Benchmark (30 threads each doing 100000 gauge.set):

| Method | Avg set n/s | | ————- |:———–:| | Mutex | 9618 | | CAS (SBCL) | 2204 |

Exposers

Hunchentoot

Example

Hunchentoot exposer plus SBCL metrics.

(prom.sbcl:make-memory-collector)
(prom.sbcl:make-threads-collector)
(defclass my-acceptor (prom.tbnl::hunchentoot-exposer tbnl:acceptor)
  ())
(tbnl:start (make-instance 'my-acceptor :address "172.17.0.1" :port 9101))

will produce something like this:

SBCL Dashboard

Effect of (sb-ext:gc) can be seen clearly.

License

MIT