Python SDK for Exemplar monitoring and heartbeat APIs
Project description
exemplar-python-sdk
Python SDK for Exemplar. This package is designed to support multiple Exemplar features over time; currently it includes heartbeat monitor support. The client is a singleton: initialize once with your API key, then send heartbeats from sync or async code.
Install
From PyPI (import name is still exemplar):
pip install exemplar-python-sdk
This SDK is distributed for installation via PyPI only.
Requires Python 3.9+.
Usage
Current supported capability:
- Heartbeat monitors (sync and async)
1. Initialize once (API key)
Call init at application startup (before any heartbeat). A second init raises RuntimeError.
import exemplar
exemplar.init(api_key="<personal_access_token>")
# optional: exemplar.init(api_key="...", base_url="https://production-api.exemplar.dev")
2a. Simple heartbeat (sync)
Use from a cron job, Celery task, Flask/Django view, or any synchronous code:
import exemplar
exemplar.init(api_key=os.environ["EXEMPLAR_API_KEY"])
exemplar.send_heartbeat(
"69c3a0754e257b7d18094f9a",
metadata={"hostname": "worker-01"},
)
This sends POST /api/monitoring/heartbeat with Content-Type: application/json and header X-API-Key: <token>, matching:
curl -sS -X POST 'https://production-api.exemplar.dev/api/monitoring/heartbeat' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: <personal_access_token>' \
-d '{"monitor_id":"69c3a0754e257b7d18094f9a","metadata":{"hostname":"worker-01"}}'
2b. Background loop (async)
For FastAPI, Starlette, asyncio services, or any framework that runs an async event loop: start a task that heartbeats on an interval (like a cron in the background):
import asyncio
import exemplar
async def main():
exemplar.init(api_key="...")
task = asyncio.create_task(
exemplar.heartbeat_background_loop(
"69c3a0754e257b7d18094f9a",
interval_seconds=60.0,
metadata={"hostname": "worker-01"},
)
)
try:
# keep your service alive while heartbeat runs
await asyncio.sleep(3600)
finally:
# graceful shutdown
task.cancel()
try:
await task
except asyncio.CancelledError:
pass
if __name__ == "__main__":
asyncio.run(main())
Cancel the task when shutting down. Pass a shared httpx.AsyncClient if you want connection reuse with other HTTP calls.
Development
poetry install
poetry run pytest
API summary
| Function | Role |
|---|---|
exemplar.init(api_key=..., base_url=...) |
Create singleton (call once) |
exemplar.get_client() |
Access the client after init |
exemplar.send_heartbeat(monitor_id, metadata=...) |
One synchronous POST |
exemplar.heartbeat_background_loop(...) |
Async infinite loop with interval_seconds |
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file exemplar_python_sdk-0.1.5.tar.gz.
File metadata
- Download URL: exemplar_python_sdk-0.1.5.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.4 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
124c276e1c32fa1906478e11f98c6cf2b38591dc25ecc1ae0180175474c670fa
|
|
| MD5 |
22430020ef02718da2344e263b52f38d
|
|
| BLAKE2b-256 |
858ee1ae01b2f969712ecb93371fdc8e853ae02fd9b09f3ba9223f0f34daa227
|
File details
Details for the file exemplar_python_sdk-0.1.5-py3-none-any.whl.
File metadata
- Download URL: exemplar_python_sdk-0.1.5-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.4 Darwin/24.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35675b025a5f18c29ce3421f84b0935a90c1ace9b8f2b1fb987b3bbbb719af1f
|
|
| MD5 |
12313cca2c4e9bcf93e2db1d952ee164
|
|
| BLAKE2b-256 |
6ac045803337740c493b9960804f1dd8c223e32e236a4a6f2f8191e943b16ad3
|