Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asynq-io/eventiq-exporter
Prometheus metrics exporter for eventiq
https://github.com/asynq-io/eventiq-exporter
asyncio eventiq exporter monitoring prometheus python
Last synced: 5 days ago
JSON representation
Prometheus metrics exporter for eventiq
- Host: GitHub
- URL: https://github.com/asynq-io/eventiq-exporter
- Owner: asynq-io
- License: apache-2.0
- Created: 2024-07-16T09:36:06.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-04T10:28:16.000Z (10 days ago)
- Last Synced: 2024-11-09T18:46:32.433Z (5 days ago)
- Topics: asyncio, eventiq, exporter, monitoring, prometheus, python
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Tests](https://github.com/asynq-io/eventiq-exporter/workflows/Tests/badge.svg)
![Build](https://github.com/asynq-io/eventiq-exporter/workflows/Publish/badge.svg)
![License](https://img.shields.io/github/license/asynq-io/eventiq-exporter)
![Mypy](https://img.shields.io/badge/mypy-checked-blue)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v1.json)](https://github.com/charliermarsh/ruff)
[![security: bandit](https://img.shields.io/badge/security-bandit-yellow.svg)](https://github.com/PyCQA/bandit)
![Python](https://img.shields.io/pypi/pyversions/eventiq-exporter)
![Format](https://img.shields.io/pypi/format/eventiq-exporter)
![PyPi](https://img.shields.io/pypi/v/eventiq-exporter)# eventiq-exporter
Prometheus metrics exporter for eventiq
## Installation
```shell
pip install eventiq-exporter
```## Usage
```python
from eventiq import Service
from eventiq_exporter import PrometheusExporterservice = Service(...)
service.add_middleware(PrometheusMiddleware, run_server=True)```