Skip to main content

Prometheus exporter for kobo hub

Project description

Prometheus exporter for kobo hub.

tests PyPI version

Overview

The kobo framework provides, among other things, a Django-based "hub" web service which is used to manage tasks and workers.

django-kobo-exporter is a Django app which may be installed to a kobo hub in order to add a prometheus-compatible metrics endpoint exposing kobo metrics.

Usage

  1. Ensure django-kobo-exporter is installed, e.g.
pip install django-kobo-exporter
  1. In your app's settings, add kobo_exporter to INSTALLED_APPS, e.g.
INSTALLED_APPS = [
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'kobo.django.auth',
    'django.contrib.messages',
    'django.contrib.admin',
    'django.contrib.staticfiles',
    'kobo.django.xmlrpc',
    'kobo.hub',
    # added here
    'kobo_exporter',
    # your app's own stuff below...
    ...,
]
  1. Mount kobo_exporter.urls somewhere in your project.

/kobo_exporter/ is recommended; for example, in your root urlpatterns:

from django.urls import include, path

urlpatterns = [
    # ... snip ...
    path('kobo_exporter/', include('kobo_exporter.urls')),
    # ... snip ...
]
  1. Access metrics at <your_service>/kobo_exporter/metrics.

The metrics endpoint will provide basic information on workers, as in example:

# HELP kobo_worker_enabled 1 if worker is enabled
# TYPE kobo_worker_enabled gauge
kobo_worker_enabled{worker="localhost"} 1.0
kobo_worker_enabled{worker="pub-dev-pubd7"} 1.0
# HELP kobo_worker_ready 1 if worker is ready
# TYPE kobo_worker_ready gauge
kobo_worker_ready{worker="localhost"} 1.0
kobo_worker_ready{worker="pub-dev-pubd7"} 1.0
# HELP kobo_worker_load Current load of worker (sum of task weights)
# TYPE kobo_worker_load gauge
kobo_worker_load{worker="localhost"} 0.0
kobo_worker_load{worker="pub-dev-pubd7"} 0.0
# HELP kobo_worker_max_load Maximum permitted load of worker
# TYPE kobo_worker_max_load gauge
kobo_worker_max_load{worker="localhost"} 60.0
kobo_worker_max_load{worker="pub-dev-pubd7"} 60.0
# HELP kobo_worker_open_tasks Current number of OPEN tasks for worker
# TYPE kobo_worker_open_tasks gauge
kobo_worker_open_tasks{worker="localhost"} 0.0
kobo_worker_open_tasks{worker="pub-dev-pubd7"} 0.0
# HELP kobo_worker_last_seen_seconds Time of worker's last communication with hub
# TYPE kobo_worker_last_seen_seconds gauge
kobo_worker_last_seen_seconds{worker="localhost"} 1.625644554e+09
kobo_worker_last_seen_seconds{worker="pub-dev-pubd7"} 0.0

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_kobo_exporter-1.1.1.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_kobo_exporter-1.1.1-py3-none-any.whl (17.5 kB view details)

Uploaded Python 3

File details

Details for the file django_kobo_exporter-1.1.1.tar.gz.

File metadata

  • Download URL: django_kobo_exporter-1.1.1.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.6

File hashes

Hashes for django_kobo_exporter-1.1.1.tar.gz
Algorithm Hash digest
SHA256 650804ea5e6976b08424920be95b94f0c14f58a9dd7fa872d9a2770de0b49b0c
MD5 a9de3ded83bb6a59b6023c857c80db49
BLAKE2b-256 3810f9429020c4eb5e0a6eb03ab7100ab27366dbd0f44528ad886a9c0e77b2d8

See more details on using hashes here.

File details

Details for the file django_kobo_exporter-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_kobo_exporter-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e0f7273813b520dc816293f2134ca4a391a8dce5c811d1b7da9d292db38670dc
MD5 8552f5eff3f151406585ee9151c47920
BLAKE2b-256 727582f4622ae7f91de49af6a77ec1f0ac623fdbf6054b3b1447d075fbc7541b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page