Metadata-Version: 2.1
Name: vedro-telemetry
Version: 0.2.1
Summary: Vedro plugin for self-hosted telemetry
Home-page: https://github.com/tsv1/vedro-telemetry
Author: Nikita Tsvetkov
Author-email: tsv1@fastmail.com
License: Apache-2.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Vedro Telemetry

[![Codecov](https://img.shields.io/codecov/c/github/tsv1/vedro-telemetry/main.svg?style=flat-square)](https://codecov.io/gh/tsv1/vedro-telemetry)
[![PyPI](https://img.shields.io/pypi/v/vedro-telemetry.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-telemetry/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/vedro-telemetry?style=flat-square)](https://pypi.python.org/pypi/vedro-telemetry/)
[![Python Version](https://img.shields.io/pypi/pyversions/vedro-telemetry.svg?style=flat-square)](https://pypi.python.org/pypi/vedro-telemetry/)

Vedro plugin for self-hosted telemetry

## Installation

### 1. Install package

```shell
$ pip3 install vedro-telemetry
```

### 2. Enable plugin

```python
# ./vedro.cfg.py
import vedro
import vedro_telemetry as t

class Config(vedro.Config):

    class Plugins(vedro.Config.Plugins):

        class VedroTelemetry(t.VedroTelemetry):
            enabled = True

            # Vedro Telemetry API URL
            api_url: str = "http://localhost:8080"

```
