CLI tool for Metrics
Project description
Shopcloud Metric CLI
install
$ pip install shopcloud_metric
Usage
Job:
Metrics wenn ein Job ausgeführt wird
from shopcloud_metric import JobMetric
job = JobMetric('sage-supplier-update',
instance='airflow-production',
env='testing',
)
with job as j:
j.gauge('job_last_success_unixtime', labels={'supplier': 'EP'})
raise Exception('AS a')
j.gauge('job_last_success_unixtime', labels={'supplier': 'SP'})
job.gauge('job_last_success_unixtime', labels={'supplier': 'SP'})
job.success()
RawMetrics:
from shopcloud_metric import MetricRegistry
registry = MetricRegistry()
registry.gauge('job_up', value=1, labels={'name': 'shopcloud-infrastructure-cli', 'instance': 'tests'})
registry.push()
registry.gauge('job_up', value=0, labels={'name': 'my-job', 'instance': 'airflow-production'})
registry.gauge('job_last_success_unixtime', labels=[{'name': 'test'}])
registry.gauge('api_http_requests_total', value=12, labels={'operation': 'create'})
registry.gauge('process_cpu_seconds_total', value=1)
registry.gauge('http_request_duration_seconds', value=1)
registry.push()
Deploy to PyPi
$ pip3 install wheel twine
$ python3 setup.py sdist bdist_wheel
$ twine upload dist/*
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
shopcloud_metric-0.2.1.tar.gz
(3.2 kB
view hashes)
Built Distribution
Close
Hashes for shopcloud_metric-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb6ba60abeba49206d53871ae158b6883b6711452aad2dac50c146d1896ac383 |
|
MD5 | 6c40f3593496c614449e48bd3f8de472 |
|
BLAKE2b-256 | 3f67246250134487575709a72a840c6d7a0e38578216867f18ffc1a37c05937c |