Felicien is you companion to retrieve timeseries from a TSDB, to transform it in various format and to push it to a TSDB.
Project description
Felicien
Felicien is you companion to retrieve timeseries from a TSDB, to transform it in various format and to push it to a TSDB. Supported TSDB are Prometheus compatible (Prometheus, VictoriaMetrics, ...).
Installation
Felicien is available on PyPI:
$ python -m pip install felicien
Felicien officially supports Python 3.11+.
Usage
Felicien helps you to connect to a TSDB, and to play with timeseries.
>>> from felicien import FeliConnector
>>> tsdb = FeliConnector(url="https://my.victoriametrics.instance", tsdb="victoriametrics")
>>> tsdb
FeliConnector([victoriametrics]{https://my.victoriametrics.instance})
>>> ts_scalar = tsdb.get_timeserie(metric='vm_cache_entries{job=~"victoriametrics", instance=~"victoriametrics:8428", type="storage/hour_metric_ids"}')
>>> ts_scalar
FeliTS(vm_cache_entries{instance:"victoriametrics:8428", job:"victoriametrics", type:"storage/hour_metric_ids"}, 1 datapoints)
>>> ts_scalar.as_prometheus()
{'metric': {'__name__': 'vm_cache_entries',
'instance': 'victoriametrics:8428',
'job': 'victoriametrics',
'type': 'storage/hour_metric_ids'},
'values': [17805.0],
'timestamps': [1713606731000]}
>>> ts_vector = tsdb.get_timeserie(metric='vm_cache_entries{job=~"victoriametrics", instance=~"victoriametrics:8428", type="storage/hour_metric_ids"}[1h]')
>>> ts_vector
FeliTS(vm_cache_entries{job:"victoriametrics", type:"storage/hour_metric_ids", instance:"victoriametrics:8428"}, 60 datapoints)
>>> ts_vector.frequency
Timedelta('0 days 00:01:00')
>>> ts_vector.data.describe()
count 60.000000
mean 17768.150000
std 5.580915
min 17766.000000
25% 17766.000000
50% 17766.000000
75% 17767.000000
max 17805.000000
dtype: float64
>>> ts_vector.trim_by_size(boundary=10, keep="left")
2024-04-20 09:03:40.177000046 17766.0
2024-04-20 09:04:40.177000046 17766.0
2024-04-20 09:05:40.177000046 17766.0
2024-04-20 09:06:40.177000046 17766.0
2024-04-20 09:07:40.177000046 17766.0
2024-04-20 09:08:40.177000046 17766.0
2024-04-20 09:09:40.177000046 17766.0
2024-04-20 09:10:40.177000046 17766.0
2024-04-20 09:11:40.177000046 17766.0
2024-04-20 09:12:40.177000046 17766.0
dtype: float64
Main features
- Connect to a TSDB, and check connectivity
- Get a timeserie and store it in a Pandas Series
- Estimate frequency of a timeserie
- Trim a timeserie by date or by size
License
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
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 felicien-0.1.1.tar.gz.
File metadata
- Download URL: felicien-0.1.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.9 Darwin/23.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da0676f89eaabf240b397c3dc1e60998a441ea0df000fd6871cb4940f75701cb
|
|
| MD5 |
9cbde5cc3939b63ccf5030a1261bb49e
|
|
| BLAKE2b-256 |
09c957dbad352c87ff30b372ce092b908e43eed1c9c4b0ad571e4322981b17f8
|
File details
Details for the file felicien-0.1.1-py3-none-any.whl.
File metadata
- Download URL: felicien-0.1.1-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.11.9 Darwin/23.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40ab4c8f0e398de6281df20908e77ad08cef6f1e3d64ff1b91ff85d98bb61ad6
|
|
| MD5 |
6d917dda444a8b7c84e006f632340443
|
|
| BLAKE2b-256 |
4807988fe868facc84e472e0f82f51980cf244177349fc6603b1abc327aff5e7
|