Apache Sling Commons Prometheus Metrics Exporter

Clone this repo:
  1. 6eed96a SLING-12094 - Use GitHub for the Maven scm.url value by Robert Munteanu · 7 months ago master
  2. 6262a88 [maven-release-plugin] prepare for next development iteration by Robert Munteanu · 8 months ago
  3. d9e9fb1 [maven-release-plugin] prepare release org.apache.sling.commons.metrics.prometheus-0.1.0 by Robert Munteanu · 8 months ago org.apache.sling.commons.metrics.prometheus-0.1.0
  4. c68b00e chore: add scm information by Robert Munteanu · 8 months ago
  5. 45bc79b Bump version to 0.1.0-SNAPSHOT, this is not ready for a 1.0 release by Robert Munteanu · 8 months ago

Apache Sling

Build Status Test Status Coverage Sonarcloud Status Maven Central License

Apache Sling Commons Prometheus Metrics Exporter

This module is part of the Apache Sling project.

This bundle exposes the collected metrics under the /metrics path and provides the following features:

  • exports JVM metrics by default
  • supports multiple MetricRegistry instances

Deployment

The bundle is compatible with prometheus/client-java versions up to 0.10.0. Version 0.11.0 introduced a mandatory dependency on opentelemetry-api, which is not a valid OSGi bundle. This was rectified in version 0.16.0, but unfortunately versions >= 0.15.0 depend on version 4.0 of Dropwizard metrics, which is not supported by the current org.apache.sling.commons.metrics.bundle .

A recommended feature model file for deploying this bundle and additional dependencies is

  "bundles": [
    {
        "id": "io.prometheus/simpleclient/0.10.0",
        "start-order": 20
    },
    {
        "id": "io.prometheus/simpleclient_common/0.10.0",
        "start-order": 20
    },
    {
        "id": "io.prometheus/simpleclient_servlet/0.10.0",
        "start-order": 20
    },
    {
        "id": "io.prometheus/simpleclient_dropwizard/0.10.0",
        "start-order": 20
    },
    {
        "id": "io.prometheus/simpleclient_hotspot/0.10.0",
        "start-order": 20
    },
    {
        "id": "org.apache.sling/org.apache.sling.commons.metrics.prometheus/1.0-SNAPSHOT",
        "start-order": 20
    }
  ]