Skip to main content

Tools to create, update, and monitor a system pulse and dashboard.

Project description

Introduction

The pulseox project provides python tools to create, update, and monitor a system pulse and dashboard using GitHub.

You can have your clients update a project page on GitHub with current status and have a unified dashboard which collects together the status of all projects (including projects which should have reported but have not).

PulseOx can use the notifier package to automatically notify you when project status changes.

Install

You can install as usual via something like

pip install pulseox

or

uv add pulseox

or if you want to develop in a fresh environment you can do something like

python3 -m venv .venv       # Create venv to get pip.
source .venv/bin/activate   # Activate venv.
pip install uv              # Install uv
uv venv --seed --clear      # Recreate venv since uv likes that
source .venv/bin/activate   # Source new venv
pip install uv              # Add uv to venv if you don't have global uv
uv sync                     # Sync dependencies.

Usage

Client

You can instantiate a pulseox client and use it to update a page in a GitHub project. The client will use the GitHub API and an access token to post content as shown below:

>>> from pulseox.client import PulseOxClient
>>> client = PulseOxClient(token=YOUR_GITHUB_PAT)
>>> content = ('Some content\n'
...            '- data I want to keep track of\n'
...            '- for dashboard monitoring\n')
>>> result = client.post(
...   owner, repo, 'example_project_page.md', content,  # required arguments
...   report='GOOD', note='')  #  these can be omitted and have defaults
>>> result.status_code in (200, 201)
True
>>> _ = client.post(owner, repo, 'alt_example.md', content, report='BAD',
...       note='We can report BAD runs as well')

The client will automatically include metadata at the bottom of the file indicating the following:

  • report: (as provided to the client)
  • updated: (timestamp for when the last update occurred)
  • note: (note provided to client)

Dashboard

You can then use a dashboard creation tool to collect together all the posted content to get a summary using something like:

>>> import datetime
>>> from pulseox.specs import PulseOxSpec
>>> from pulseox.dashboard import PulseOxDashboard
>>> spec_list = [  # Example of job specifications we are tracking
...     PulseOxSpec(owner=owner, repo=repo, path='example_project_page.md',
...	      schedule=datetime.timedelta(minutes=10)),
...     PulseOxSpec(owner=owner, repo=repo, path='alt_example.md',
...	      schedule=datetime.timedelta(hours=10)),
...     PulseOxSpec(owner=owner, repo=repo, path='missing.md',
...       schedule='* * * * *')]  # can use cron string for schedule
>>> dashboard = PulseOxDashboard(
...     token=YOUR_GITHUB_PAT, owner=owner, repo=repo, spec_list=spec_list
... ).write_summary(force_refresh=True)  # Write summary to github
>>> print(dashboard.summary.text)  # Get text summary for local view
# Changes
- [alt_example.md](alt_example.md) None --> ERROR ...
- [missing.md](missing.md) None --> MISSING None
- [example_project_page.md](example_project_page.md) None --> OK ...
# ERROR
- [alt_example.md](alt_example.md) We can report BAD runs as well ...
# MISSING
- [missing.md](missing.md) error: (status_code=404) NOT FOUND None
# OK
- [example_project_page.md](example_project_page.md) ...

The specification list is also saved on GitHub. So after you have written the summary at least once, you can read the summary remotely via something like:

>>> dashboard = PulseOxDashboard(
...     token=YOUR_GITHUB_PAT, owner=owner, repo=repo).get_remote_data(
... ).write_summary(force_refresh=True)
>>> print(dashboard.summary.text)  # Get text summary for local view
# ERROR
- [alt_example.md](alt_example.md) We can report BAD runs as well ...
# MISSING
- [missing.md](missing.md) error: (status_code=404) NOT FOUND None
# OK
- [example_project_page.md](example_project_page.md) ...

Notification

You can use the notifiers package to send you notifications on status changes by providing a dictionary of keyword arguments when creating your dashboard. For example you could do something like:

dashboard = PulseOxDashboard(... notify={'telegram': {
    'token': YOUR_TELEGRAM_TOKEN, 'chat_id': YOUR_CHAT_ID}})

when creating your dashboard. See docs for notifiers for details on available providers and keyword arguments accepted by each notifier.

Summary Details

The summary will have sections for the following:

  • ERROR: This comes first and consists of all client posts with status of BAD or posts which were reported but had problems..
  • MISSING: This comes second and consists of all PulseOxSpec instances where an update has not been provided within the given schedule.
  • OK: This comes last and consists of all PulseOxSpec instances which were posted with status OK within the required schedule.

The summary will be in markdown format if mode was set to 'md' and org-mode format if mode was set to 'org'. Empty sections will be omitted.

Within each section, there will be an entry like:

- <path_to_file> <note> <update_time>

with <path_to_file> being both the (relative) path to the posted file formatted as a link in either markdown or org format so if the user clicks on it, they will be taken to the give file.

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

pulseox-0.1.2.tar.gz (40.8 kB view details)

Uploaded Source

Built Distribution

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

pulseox-0.1.2-py3-none-any.whl (40.3 kB view details)

Uploaded Python 3

File details

Details for the file pulseox-0.1.2.tar.gz.

File metadata

  • Download URL: pulseox-0.1.2.tar.gz
  • Upload date:
  • Size: 40.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pulseox-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a1ce5cfc0b20f74ba4cdb2c44b6b7ff7c825b7b0d25bcd32d88127ea9868eddd
MD5 0004c678fd29d72f53c02c70c27ddbc9
BLAKE2b-256 3e803d23758df4a8a75936deb792ddf34ba8eabb4be0253c1cb4044ee6204a8e

See more details on using hashes here.

File details

Details for the file pulseox-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: pulseox-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for pulseox-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f7065cc96e9097c8c3e4447af5b50a739b95de75c15a1098ff71d985bb54d46b
MD5 05475c9fe52274be4261dea3f6fe364c
BLAKE2b-256 b3d82382618eeb4725dd324c5098964f4040f69fb1afb55803d29bcc916b6704

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