A prometheus exporter for license manager.
Find a file
2025-02-13 15:55:00 +01:00
license_manager_exporter Etc: v1.4.2 2025-02-13 15:55:00 +01:00
test Feature: adds sentinel license manager 2025-01-30 16:36:42 +01:00
.gitignore Refactor: switches to hatch 2025-01-17 12:54:11 +01:00
COPYING Etc: initial commit 2025-01-17 11:07:45 +01:00
pyproject.toml Etc: creates package metadata 2025-01-22 15:23:28 +01:00
README.md Doc: adds new metric to the Readme 2025-02-03 15:26:27 +01:00

License Manager Exporter

A prometheus exporter for license manager.

This project aims to support a wide range of license manager. The following license manager are currently supported:

  • rlm
  • lmx
  • mathlm

The following metrics are exported:

  • licenses_feature_issued_total: How many licenses of a feature are available.
  • licenses_feature_reserved_total: How many licenses of a feature are reserved.
  • licenses_feature_used_total: How many licenses of a feature are used.
  • licenses_feature_expiration_seconds: Until when the licenses of a feature are valid.
  • licenses_manager_status_total: Value of 1 when the license manager is reachable otherwise 0.

Get started

Install the module:

pip install git+https://codeberg.org/Zauberbutter/license_manager_exporter.git

Create a config.yml:

collector:
  port: 9000
  server: license-server.example.com
  binaries:
    monitorlm_binary: './monitorlm'
    almutil_binary: './almutil'
    rlmutil_binary: './rlmutil'
products:
  - name: esacomp
    license_manager: rlm
    vendor: esacomp
    port: 1000
  - name: mathematica
    license_manager: mathlm
    vendor:
    port: 2000
  - name: altair
    license_manager: lmx
    include_feature: # ignore all except…
      - HyperWorks
    vendor:
    port: 3000
  - name: spss
    license_manager: sentinel
    vendor:
    port:

Run it:

python -m license_manager_exporter --config /path/to/config.yaml

Acknowledgements

This project was heavily inspired by the following prometheus exporters: